Author |
Message |
Topic: Function Symbols |
prondeau
Replies: 4
Views: 5761
|
Forum: General CCS C Discussion Posted: Sat Jan 19, 2013 2:43 pm Subject: Function Symbols |
Another new development.
When my project was quite small all the prototypes were at the top of my main C code file.
As the project has grown, I have moved all the prototypes off to a separate ... |
Topic: usb_cdc_putc - lesson learned |
prondeau
Replies: 3
Views: 6427
|
Forum: General CCS C Discussion Posted: Sat Jan 19, 2013 2:34 pm Subject: usb_cdc_putc - lesson learned |
Normally I'd have that same backup scheme going too but I just started this and I kinda dove in without a net.
As for the USB module, I'm not opposed to that and have done it in the past. This i ... |
Topic: usb_cdc_putc - lesson learned |
prondeau
Replies: 3
Views: 6427
|
Forum: General CCS C Discussion Posted: Sat Jan 19, 2013 12:53 pm Subject: usb_cdc_putc - lesson learned |
I'm just throwing this out here because it took me far longer than I care to admit to troubleshoot and maybe it will help somebody else out in the future.
I recently integrated the serial2 usb exam ... |
Topic: Function Symbols |
prondeau
Replies: 4
Views: 5761
|
Forum: General CCS C Discussion Posted: Thu Jan 10, 2013 2:56 pm Subject: Function Symbols |
I wouldn't think so but I guess anything is possible. If I right click on a function and choose "Go To..." All the functions are visible there in the "Select a Function Definition&quo ... |
Topic: Function Symbols |
prondeau
Replies: 4
Views: 5761
|
Forum: General CCS C Discussion Posted: Mon Jan 07, 2013 10:14 pm Subject: Function Symbols |
Perhaps there is an option I need to enable but when I compile my project, if I look under Symbols on the Project window I see Variables, Tyedefs, Enumerators and Defines. I don't see Functions or Pr ... |
Topic: Code optimization |
prondeau
Replies: 5
Views: 6065
|
Forum: General CCS C Discussion Posted: Wed Dec 12, 2012 4:23 pm Subject: Code optimization |
Oh! excellent!, much less cluttered too. Thanks for this, I had not seen it in the manual. |
Topic: Code optimization |
prondeau
Replies: 5
Views: 6065
|
Forum: General CCS C Discussion Posted: Wed Dec 12, 2012 3:34 pm Subject: Code optimization |
Just to be thorough:
#include <18f45j10.H>
#use delay(clock=40M, oscillator=10M)
void main(void){
long long TestVariable;
int A;
TestVariable = 01234567;
... |
Topic: Code optimization |
prondeau
Replies: 5
Views: 6065
|
Forum: General CCS C Discussion Posted: Wed Dec 12, 2012 3:26 pm Subject: Code optimization |
fwiw, i'm using 4.076
I sat down to write a small program as requested to demonstrate what I was talking about and discovered the answer on my own.
What I was doing was something like this:
sp ... |
Topic: Code optimization |
prondeau
Replies: 5
Views: 6065
|
Forum: General CCS C Discussion Posted: Wed Dec 12, 2012 2:41 pm Subject: Code optimization |
I'm revisiting an older project that made use of an 18f45j10. With the changes I'm implementing I'm rapidly approaching the point where I'm going to run out of memory. I've been looking for areas wh ... |
Topic: 18f45j10 usart RX corruption |
prondeau
Replies: 2
Views: 3637
|
Forum: General CCS C Discussion Posted: Wed Mar 26, 2008 9:54 am Subject: 18f45j10 usart RX corruption |
I was concerned that if I cleared the bit manually, when the code compiled that I wouldn't be able to guarantee that the clear bit code would end up after the initialization code.
I should probably ... |
Topic: 18f45j10 usart RX corruption |
prondeau
Replies: 2
Views: 3637
|
Forum: General CCS C Discussion Posted: Wed Mar 26, 2008 8:54 am Subject: 18f45j10 usart RX corruption |
Hello,
I've been using an 18f45j10 for a project. I noticed that occasionally some of the characters I send to it are corrupt when received. I checked my connections and everything looked good so ... |
|