Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

The compatibility of PIC C Complier on Windows Vista

Status
Not open for further replies.

phamthaihoa

Newbie level 4
Joined
Jun 24, 2005
Messages
7
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,336
picc vista

I've tested several PIC C compliers on Vista Ultimate, MPLAB 7.52. Here is result:

* Microchip C30 V2.05 and below: I recieve error message
Code:
"pic30-coff-cc1: fatal error: installation problem, cannot exec `pic30-lm.exe'
compilation terminated"

C30 V3.0 I recieve warning message about psv mode. That code i've complied and work well on Windows XP without this message. I'm using dsPIC30F6014A.

Code:
Warning message:
main.c: In function '_T1Interrupt':
main.c:33: warning:  PSV model not specified for '_T1Interrupt';
   assuming 'auto_psv' this may affect latency

Here is my Timer 1 ISR:

Code:
void __attribute__((__interrupt__)) _T1Interrupt(void)
{
	if(++TimeCount==150) {KeyScanFlag=1; TimeCount=0;}
	_T1IF=0;
}

In version 2.05 on Windows XP, i don't recieve that messsage.

* All HTSOFT PIC complier can't complie on Vista (I've tested HTPICC 9.60, HTPIC18 9.50PL3, HTDSPIC 9.60 on MPLAB IDE and HTTIDE 3.12PL1).

* MikroC for PIC v6.2.1.0 and MikroC for dsPIC v3.0 work fine on Vista.

We picvietnam have solve the problems of compilers on Vista. You can find our solutions at: http://www.picvietnam.com/forum/showthread.php?t=1103
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top