1
vote
What are some Real-Time Operating Systems for 32-bit processors?
This question is awfully vague, considering the range of 32-bit processors available nowadays. I've liked QNX in the past on a 933MHz Pentium-3 with 512MB of RAM, and I'm using FreeRTOS now on a 7 …
0
votes
Simple Debounce Routine
There's no single simple solution that works for all types of buttons. No matter what someone here tells you to use, you'll have to try it with your hardware, and see how well it works. And look …
1
vote
Does it make sense to mix an RTOS and cyclic executive?
Yes, having a cyclic executive in one OS thread running multiple 'tasks' can make sense. In fact unless two tasks conflict with scheduling needs (one needs to block, one is higher priority than th …
2
votes
What 8-bit embedded platform have you used for a design?
The only 8-bit processors I've used in embedded systems have been 8051s, which I'm not a huge fan of. 32 bit microcontrollers have come down in price and power consumption to the point where I'd n …
0
votes
How you disable the processor cache on a PowerPC processor?
Perhaps you don't want to globally disable cache, you only want to disable it for a particular address range?
On some processors you can configure TLB (translation lookaside buffer) entries …
1
vote
C (or any) compilers deterministic performance
How do you know that the compiler you are using generates machine code that matches the c code's functionality exactly and that the compiler is fully deterministic?
…
0
votes
USB for embedded devices - designing a device driver/protocol stack
I'm curious, why did you pick the 9S12? I used it at a previous job, and was not pleased.
It had lousy gcc support so we used Metrowerks
which may have been okay for C, but …
0
votes
A good serial communications protocol/stack for embedded devices?
Take a look at Profibus.
If you don't want master/slave, I think you ought to do the arbitration with hardware ( …
