Author |
Message |
Topic: Programming multiple timing sensitive routines |
DEsterline
Replies: 11
Views: 10253
|
Forum: General CCS C Discussion Posted: Sat Nov 14, 2009 4:46 am Subject: Programming multiple timing sensitive routines |
I know this is an old post, but this might help somebody...
There's another way to do this. Nothing in the hardware or software requires timer interrupts to be spaced evenly. In the interrupt routi ... |
Topic: Making buttons more responsive..... |
DEsterline
Replies: 9
Views: 10303
|
Forum: General CCS C Discussion Posted: Fri Nov 06, 2009 7:31 pm Subject: Making buttons more responsive..... |
There's a lot of valid reasons to have a bus based sensor on multiple busses. My current design has 5 separate DS1822 on separate IO lines. Busses are great, but the discovery process is quite complic ... |
Topic: Making buttons more responsive..... |
DEsterline
Replies: 9
Views: 10303
|
Forum: General CCS C Discussion Posted: Fri Nov 06, 2009 2:40 pm Subject: Making buttons more responsive..... |
There's one other change I would recommend.
your code has it in a loop, but effectively your code:
Start conversion on 1
wait
read 1
start conversion in 2
wait
read 2
Since your sensor ... |
Topic: Bootloader via I2C? |
DEsterline
Replies: 6
Views: 8618
|
Forum: General CCS C Discussion Posted: Fri Nov 06, 2009 11:26 am Subject: Bootloader via I2C? |
treitmey:
Yes, just loading the hex file into the FRAM is going to be a bit of a task in itself. That'll be a task for a different piece of hardware (also based on a 16F877A with an FTDI usb/serial a ... |
Topic: Bootloader via I2C? |
DEsterline
Replies: 6
Views: 8618
|
Forum: General CCS C Discussion Posted: Thu Nov 05, 2009 11:08 am Subject: Bootloader via I2C? |
I'm about to do a couple things that are new to me and I was hoping someone here could shorten my learning curve. Any pointers would be greatly appreciated.
The hardware has a PIC16F877A with a cou ... |
Topic: Hardware references in re-useable functions? |
DEsterline
Replies: 3
Views: 3818
|
Forum: General CCS C Discussion Posted: Tue Aug 25, 2009 1:19 pm Subject: Hardware references in re-useable functions? |
Thanks for the quick reply (and for tweeking the formatting of my post :-)
So if I understand this correctly (always in doubt), function Pointers would allow me to write a seperate set of function ... |
|