Author |
Message |
Topic: Measuring time |
RArtz
Replies: 3
Views: 4288
|
Forum: General CCS C Discussion Posted: Wed Jun 11, 2008 10:09 am Subject: Measuring time |
ya, you need to do:
rpm = count_rpm();
display(rpm); |
Topic: Software uart works, not hardware uart-Solved |
RArtz
Replies: 12
Views: 12933
|
Forum: General CCS C Discussion Posted: Tue Jun 10, 2008 10:13 am Subject: Software uart works, not hardware uart-Solved |
I had the same issue with my hardware uart.
I think it has something to do with the initialization of the PIC, but not for certain. I did not look too much into it, because I didn't have a whole lot ... |
Topic: Rounding numbers down |
RArtz
Replies: 3
Views: 3492
|
Forum: General CCS C Discussion Posted: Thu May 29, 2008 1:56 pm Subject: Rounding numbers down |
thats how ive done it in the past. |
Topic: Other pins for RS232 possible? |
RArtz
Replies: 2
Views: 3053
|
Forum: General CCS C Discussion Posted: Thu May 29, 2008 8:03 am Subject: Other pins for RS232 possible? |
look up #use RS232 in the help file |
Topic: write_eeprom and PIC18F4525 |
RArtz
Replies: 6
Views: 5763
|
Forum: General CCS C Discussion Posted: Thu May 29, 2008 7:54 am Subject: write_eeprom and PIC18F4525 |
Address must be a 16 bit variable. I guess you are using an 8 bit.
Syntax:
write_eeprom (address, value)
Parameters:
address is a (8 bit or 16 bit depending on the part) int, the range is d ... |
Topic: Need help with LCD driver |
RArtz
Replies: 4
Views: 5452
|
Forum: General CCS C Discussion Posted: Wed May 28, 2008 2:18 pm Subject: Need help with LCD driver |
what type of LCD?
16x2? 16x1?
Also, what happens when you apply power?
Does one line of the LCD turn on while the other off?
Be more specific if you can.
I am using a similar PIC, and am not ... |
Topic: LCD display |
RArtz
Replies: 2
Views: 3418
|
Forum: General CCS C Discussion Posted: Wed May 28, 2008 2:09 pm Subject: LCD display |
http://www.ccsinfo.com/forum/viewtopic.php?t=24661
use the one listed in the initial post.
I had similar issues until I used this one |
|