Author |
Message |
Topic: i2c_isr_state() |
Tony Helinski
Replies: 5
Views: 9969
|
Forum: General CCS C Discussion Posted: Tue Sep 20, 2005 6:56 am Subject: i2c_isr_state() |
Has anyone tried this function yet? It looks like it might simplify the i2c
interface. Looking at the example code provided (EX_SLAVEE.C),
#use i2c(SLAVE, SDA=PIN_C4, SCL=PIN_C3, address=0xa0) ... |
Topic: ICD-U40 "Verification Results" |
Tony Helinski
Replies: 5
Views: 43789
|
Forum: CCS ICD / Mach X / Load-n-Go Posted: Mon Jan 10, 2005 12:44 pm Subject: ICD-U40 "Verification Results" |
I've found that I sometimes get this message from the ICD-U40 when
there are other power sources connected to the hardware ie. serial port. |
Topic: ICDU-40 with large chunk of code |
Tony Helinski
Replies: 1
Views: 26926
|
Forum: CCS ICD / Mach X / Load-n-Go Posted: Mon Dec 13, 2004 1:53 pm Subject: ICDU-40 with large chunk of code |
Turns out it wasn't the large chunk of code that was causing the problem but the configuration option in the debugger called "Userstream enabled". The default is to be enabled. When enabled t ... |
Topic: ICDU-40 with large chunk of code |
Tony Helinski
Replies: 1
Views: 26926
|
Forum: CCS ICD / Mach X / Load-n-Go Posted: Tue Dec 07, 2004 9:46 am Subject: ICDU-40 with large chunk of code |
Does anyone have experience using the ICD-U with projects having large programs?
We currently are using a PIC18LF6620 with ver 3.212 of the compiler and have coded up more than 43K of program.
... |
Topic: #org has no effect |
Tony Helinski
Replies: 18
Views: 35791
|
Forum: General CCS C Discussion Posted: Thu Jul 01, 2004 8:54 am Subject: #org has no effect |
In the 18Fxx20 parts and I assume the other 18F parts the NVM starts at
#rom int8 0xF00000 = { <- notice the int8 is used to access the ROM in byte values
This allows you to store initialize ... |
Topic: write_eeprom don�t work. |
Tony Helinski
Replies: 4
Views: 13475
|
Forum: General CCS C Discussion Posted: Thu Feb 26, 2004 1:17 pm Subject: write_eeprom don�t work. |
I believe you need to do this:
#rom int8 0xF00000 =
{...}
If you don't use the int8 the compiler uses int16 |
|