Author |
Message |
Topic: EEPROM/Flash-Reading PIC Offline |
bfmitch
Replies: 2
Views: 3347
|
Forum: General CCS C Discussion Posted: Fri May 11, 2007 3:50 pm Subject: EEPROM/Flash-Reading PIC Offline |
For a project with a similar requirement I use a Datakey. You can see them at www.datakeyelectronics.com It's basically an EEPROM in a plastic carrier.
You also might check out using an SD disk ... |
Topic: Getting started with PIC's...what would you do differently? |
bfmitch
Replies: 5
Views: 5145
|
Forum: General CCS C Discussion Posted: Mon Sep 12, 2005 8:57 am Subject: Getting started with PIC's...what would you do differently? |
On my first project I decided to use pins for serial comms other than the built in UART. I seem to remember that I had what seemed like a good reason for it at the time. Later on, after products wer ... |
Topic: Need a sanity check |
bfmitch
Replies: 2
Views: 5041
|
Forum: General CCS C Discussion Posted: Mon Jul 18, 2005 10:38 am Subject: It's the chip |
My sample PIC18F4525 just arrived. I already had the fuses, etc... worked out just waiting for it to show up. I programmed the new chip, plugged it in and the problem was gone.
Thanks! |
Topic: Need a sanity check |
bfmitch
Replies: 2
Views: 5041
|
Forum: General CCS C Discussion Posted: Mon Jul 18, 2005 9:52 am Subject: Need a sanity check |
Maybe I'm missing something. I'm using a PIC18F452. I'm trying to use bit E2 (which is also AN7 and CS for the PSP) as an input. The problem is, that it always drags down the 5 volt signal it's bei ... |
Topic: printf and last versions of pcw |
bfmitch
Replies: 12
Views: 26258
|
Forum: General CCS C Discussion Posted: Wed Jan 05, 2005 8:42 am Subject: Just Updated Apparently |
Two days ago the current version was 3.214. I haven't received an email telling me that 3.215 was available. Apparently it is now. |
Topic: printf and last versions of pcw |
bfmitch
Replies: 12
Views: 26258
|
Forum: General CCS C Discussion Posted: Mon Jan 03, 2005 9:11 am Subject: A workaround |
If you need to display int8 values, print them as int16 instead with the variable cast as an int16.
int8 var1;
int8 var2;
printf ( lcd_putc, "Variable1: %lu Lbs", (int16 ... |
Topic: Codeloader bootloader front end |
bfmitch
Replies: 6
Views: 59619
|
Forum: Code Library Posted: Sun Jan 02, 2005 1:03 am Subject: Codeloader bootloader front end |
Since the timeout doesn't start until the "Wait" and "Load" are received, it sounds like your baud rate is OK and you have a good connection.
With Codeloader programmed into the PIC, start Hyperter ... |
Topic: Codeloader bootloader front end |
bfmitch
Replies: 6
Views: 59619
|
Forum: Code Library Posted: Fri Dec 31, 2004 10:40 am Subject: Codeloader bootloader front end |
Back in May, Kasper published a VB program in the Code Library called Flasher. It was made to work with Loader.c that CCS supplies.
I wasn't real happy with Loader.c since you have to link it to yo ... |
Topic: ICD-U40 "Could not start target". My fix. |
bfmitch
Replies: 0
Views: 23647
|
Forum: CCS ICD / Mach X / Load-n-Go Posted: Wed Aug 25, 2004 9:03 am Subject: ICD-U40 "Could not start target". My fix. |
I've been gettng this error with one program. Others would work just fine. Finally I checked the fuses of the programs that would work against the program that wouldn't work. I'd forgotten that I s ... |
|