Author |
Message |
Topic: CCS C 5.046 PIC24FJ128GB106 RDA problem |
blups
Replies: 3
Views: 6697
|
Forum: General CCS C Discussion Posted: Wed Jun 03, 2015 12:24 am Subject: CCS C 5.046 PIC24FJ128GB106 RDA problem |
Hi Ttelmah,
I tried a simple project created with the wizard, following your advise(using all the fXXXXX functions(fputc, fgetc, fprintf with calling the actual stream)) and it still doesn't work! Us ... |
Topic: CCS C 5.046 PIC24FJ128GB106 RDA problem |
blups
Replies: 3
Views: 6697
|
Forum: General CCS C Discussion Posted: Wed May 27, 2015 3:14 am Subject: CCS C 5.046 PIC24FJ128GB106 RDA problem |
Hi peeps,
I have some difficulties using the the last(5.046) CCS C compiler with handling the rda interrupt. The IDE is also ver. 5.046.
The chip is 24FJ128GB106 and stacks by the receiving of ... |
Topic: CCS C compiler ver4.to ver.5 |
blups
Replies: 3
Views: 7767
|
Forum: General CCS C Discussion Posted: Tue Oct 08, 2013 5:43 am Subject: ... |
Hi Ttelmah,
mutch 10x for the response. In a fact I use interrupts for the Hardware UART1 and UART2.
#device ccs4 doesn't afect the situation.
I did simple things in the comm's interrupts like ... |
Topic: CCS C compiler ver4.to ver.5 |
blups
Replies: 3
Views: 7767
|
Forum: General CCS C Discussion Posted: Thu Sep 19, 2013 4:49 am Subject: CCS C compiler ver4.to ver.5 |
Hi guys,
I have some difficults by switching from C compiler ver4 to ver5.
Starting ver4 project with the new platform "CCS C Compiler" splits out the following message:
http://posti ... |
Topic: Jump to defined place in the code |
blups
Replies: 5
Views: 8398
|
Forum: General CCS C Discussion Posted: Thu Jul 18, 2013 7:13 am Subject: Jump to defined place in the code |
Hi peeps,
I need to do some kind of system reset in some special case. The system reset is but not the MCU one. So i have to jump in a defined place in the code. Something like goto statement. My p ... |
Topic: revisioning and controlling of the software |
blups
Replies: 3
Views: 4896
|
Forum: General CCS C Discussion Posted: Thu Sep 08, 2011 12:43 am Subject: revisioning and controlling of the software |
Hi peeps,
I have to ask about the revision(versions) control of your software. Would you recommend me a proper tool (software) for this purpose pls.
We are an young team developers – 4 guys wi ... |
Topic: Interrupt priority in the PIC24 family? |
blups
Replies: 1
Views: 5319
|
Forum: General CCS C Discussion Posted: Mon Aug 15, 2011 12:49 am Subject: Interrupt priority in the PIC24 family? |
Hi peeps,
I need to understand the interrupts priority in th pic24 families. I am giving the following scenario:
The RDA Interrupt is set with priority level 1 and the Timer0 overflow with priorit ... |
Topic: how to allow the global interrupts in the 24FJ family pics? |
blups
Replies: 2
Views: 5329
|
Forum: General CCS C Discussion Posted: Thu Aug 11, 2011 11:21 pm Subject: how to allow the global interrupts in the 24FJ family pics? |
The 'reason', is that the PIC24, has interrupt levels.
You can enable/disable the individual 'levels', with (for example)
disable_interrupts(INTR_LEVEL4);
The equivalent to the old 'global', is:
... |
Topic: how to allow the global interrupts in the 24FJ family pics? |
blups
Replies: 2
Views: 5329
|
Forum: General CCS C Discussion Posted: Thu Aug 11, 2011 7:14 am Subject: how to allow the global interrupts in the 24FJ family pics? |
Hi guys,
Would anybody tell me how to enable the global interrupts in the pic24fj256GB106?
The compiler doesn't like:
enable_interrupts(GLOBAL);
Undefined Identifier GLOBAL he says ... |
Topic: How to enter the 2bytes register in the SFR? |
blups
Replies: 2
Views: 5716
|
Forum: General CCS C Discussion Posted: Tue Aug 09, 2011 12:17 am Subject: How to enter the 2bytes register in the SFR? |
Hi guys,
I have to enter the RPINRx and RPORx registers in the SFR of 24FJ family pics.
Till now I used the getenv() function in the way for example:
#byte INTCON = getenv(SFR:INTCON ... |
|