I have a pic 18F project which has incoming data every 10ms in a word.
The top nibble of the word high byte is flags, either %1111 or 0000 (we can ignore/mask them out)
The lower 12 bits is a...
Totally agree, but Roger is still using On Interrupts...!
Ioannis
Even more great news from the PICKitPlus team. Sharing as soon as I could across the various forums.
We now have improved the performance of the PICKitPlus Software. We have upgraded the...
its like trying to remove the head off a motor with a shifting spanner.9027
anyone who is serious about these things has a socket wrench in their toolkit
9028
with proper tools things are easy, if...
Richard,
I think what you propose is the best solution and ultimately, Roger may follow it.
But it may be too complicated at the moment to have such an advanced data handling. Or not?
...
the problem as i see it is that you are mixing up receiving a SMS message notification with receiving serial data without losing characters.
the question really is
how can i receive serial...
I think there is no point in hunting down the incoming SMS as they are available in the GSM module.
You can once your MCU wants or is available to ask for the new messages, and select the most...
Hello there,
I've been spending some hours on searching information about using HSERIN with its interrupt, RCIF (PIR1.5), and found an interresting info in one of Bruce's posts. It wasn't about...
I'm having a go at programming a PIC24EP512GP806 bootloader with XC16. I need to define a few constants that the bootloader and application can both read.
Here's what I've got so far
const word...
Re: Bumpless Transfer PIC18F
looks like a pretty classic state machine solution would be in order
richard Today, 23:11enum state [idle, beginning, held , releasing]; button states
process each incoming val according to present state...