Author |
Message |
Topic: [SOLVED]Problem with 18F97J60 |
KU5D
Replies: 13
Views: 11287
|
Forum: General CCS C Discussion Posted: Fri Oct 22, 2010 9:09 am Subject: [SOLVED]Problem with 18F97J60 |
My issue is just the opposite. I've used internal osc on other chips (18F4525 and 8527) with no problem, but cannot get the 97J60 to run on anything but an external crystal. #FUSES INTRC seems like ... |
Topic: Temperature issue 18F97J60 |
KU5D
Replies: 1
Views: 2928
|
Forum: General CCS C Discussion Posted: Mon Oct 18, 2010 9:31 am Subject: Temperature issue 18F97J60 |
All,
I've got a rather busy 18F97J60 that stops running above 65C. Spec is supposed to be 75C but we can't get it there. We initially had a crystal problem, so that has been replaced with a cryst ... |
Topic: Simple SMTP question: multiple e.mail addresses |
KU5D
Replies: 4
Views: 6634
|
Forum: General CCS C Discussion Posted: Fri Dec 11, 2009 4:16 pm Subject: Simple SMTP question: multiple e.mail addresses |
Excellent. The quick (and correct) answer is much appreciated.
Regards |
Topic: Simple SMTP question: multiple e.mail addresses |
KU5D
Replies: 4
Views: 6634
|
Forum: General CCS C Discussion Posted: Thu Dec 10, 2009 2:17 pm Subject: Simple SMTP question: multiple e.mail addresses |
Greetings all,
I've just got a webserver up and running on the CCS 3.3v Ethernet Development board and have added e.mail (send only) functionality to it based on the SMTP examples included with th ... |
Topic: multi files |
KU5D
Replies: 13
Views: 11294
|
Forum: General CCS C Discussion Posted: Wed Jun 11, 2008 12:51 pm Subject: multi files |
Most likely I misinterpreted the original question. I thought we were simply trying to use multiple source files (which does appear to the compiler as one big 'main'). |
Topic: multi files |
KU5D
Replies: 13
Views: 11294
|
Forum: General CCS C Discussion Posted: Wed Jun 11, 2008 10:13 am Subject: multi files |
I also ran into this when I first started using this compiler. Most of my projects have multiple files, which makes modules easier to use in multiple projects. Some projects have ten files or more. ... |
Topic: Talking to a clock? |
KU5D
Replies: 4
Views: 4012
|
Forum: General CCS C Discussion Posted: Thu May 22, 2008 5:12 pm Subject: Talking to a clock? |
What's the application? Are you trying to clock the PIC externally or are you just needing an occasional reminder of the real time? How accurate does it have to be and is that accuracy needed in a U ... |
Topic: print array |
KU5D
Replies: 6
Views: 11580
|
Forum: General CCS C Discussion Posted: Thu May 22, 2008 10:51 am Subject: print array |
Uhmmm...
I'm sorry, but I don't understand the question? Can you clarify for me a bit? |
Topic: print array |
KU5D
Replies: 6
Views: 11580
|
Forum: General CCS C Discussion Posted: Thu May 22, 2008 10:19 am Subject: print array |
I assume you have already captured the GPS string into an array or buffer, let's assume that buffer is defined as"gpsString
int8 secTens;
int8 secOnes;
int8 utcSeconds;
secTens = ( ... |
Topic: multiple dallas readers |
KU5D
Replies: 5
Views: 4747
|
Forum: General CCS C Discussion Posted: Tue May 13, 2008 8:14 am Subject: multiple dallas readers |
Might try labeling the pins and passing that label to the function as an argument... |
Topic: kbhit() and interrupts |
KU5D
Replies: 14
Views: 24751
|
Forum: General CCS C Discussion Posted: Mon May 12, 2008 8:07 pm Subject: kbhit() and interrupts |
The biggest subtle difference between a soft uart and a hardware uart: you're not 'polling' for a start bit with the soft uart, it looks for a complete character. The hardware uart can actually tri ... |
Topic: kbhit() and interrupts |
KU5D
Replies: 14
Views: 24751
|
Forum: General CCS C Discussion Posted: Mon May 12, 2008 6:31 pm Subject: kbhit() and interrupts |
Exactly. You have a soft uart looking for a kbhit() at 57.6. Unless your main() has nothing else to do, you're likely going to miss it and it will never fire. Kbhit() fires when it has a character, ... |
Topic: kbhit() and interrupts |
KU5D
Replies: 14
Views: 24751
|
Forum: General CCS C Discussion Posted: Mon May 12, 2008 5:42 pm Subject: kbhit() and interrupts |
What else do you have going on in your main()? I'm assuming this is test code, so we don't see everything happening in your main(). You could choose a pin, set it at the beginning of your main() loop ... |
Topic: Port E problem? 18F4525 |
KU5D
Replies: 8
Views: 8112
|
Forum: General CCS C Discussion Posted: Mon May 12, 2008 12:23 pm Subject: Port E problem? 18F4525 |
PCM,
Try this on for infuriating:
2 identical iButton sockets; 1 wired for the old board using C4 and the other wired for the new board using E2. All made up nice and neat with heatshrink, and ... |
Topic: Port E problem? 18F4525 |
KU5D
Replies: 8
Views: 8112
|
Forum: General CCS C Discussion Posted: Mon May 12, 2008 11:24 am Subject: Port E problem? 18F4525 |
OK, here's my onewire code. There's a function at the bottom that is called from main() when a timer runs out and sets the getOneWire flag. It's called "DoOnewire". As I said earlier, thi ... |
|