What would you consider "worst practices" to follow when developing an embedded system?
Some of my ideas of what not to do are:
I'm sure there are plenty of good ideas out there on what not to do, let's hear them!
|
18
|
What would you consider "worst practices" to follow when developing an embedded system? Some of my ideas of what not to do are: I'm sure there are plenty of good ideas out there on what not to do, let's hear them!
|
|||
|
|
|
|
I've got a ton more but that should get us started.... |
||
|
|
Somebody stop me before I hurt myself. BTW, I realize not all of these are strictly specific to embedded development, but I believe each of them is at least as important in the embedded world as the real world.
|
||||
|
|
|
OK round 2.... just a few more:
|
||
|
|
|
|
Dynamic memory allocation after initialization. The memory pool should remain static after the system is up and running. |
||||||
|
|
|
|
||
|
|
|
|
Trying to develop without access to the actual hardware you're developing for. |
||||||
|
|
|
Without defining 'embedded programming' a bit more, then it's impossible to say what's good or bad practice. Many of the the techniques you might use to program an 8-bit micro in a dodgy non-standard dialect of 'C' would be completely inappropriate on a CE or XPe platform, for example. Abstraction is an (over-)expensive luxury in many cases, so 'avoiding it' might be good rather than bad. |
||
|
|
|
Assume endianess will be the same forever. (Extend it to the size of the registers and anything about hardware specifications) (Case explanation in the comments). |
|||
|
|
|
Here are a few:
|
||
|
|
|
|
Use multiple processors in your solution and make sure they have opposite endianness. Then make sure that the interface between them is one of them having direct access to the other's memory. Yes, I've programmed that architecture before. |
||
|
|
|
|
Don't:
|
||
|
|
|
|
An important thing in embedded systems is to evaluate the technology, both software (compiler, libraries, os) and hardware (chipsets) independently from your application. Avoiding using test beds for these is dangerous. One should either buy evaluation kits or build his/her own test beds. |
||
|
|
|
|
|
||
|
|
|
|
Printf. If your tracing facility requires a context switch and/or interrupts, you'll never be able to debug anything even vaguely timing related. Write to a memory buffer (bonus points for memcpy'ing enums instead of s(n)printf), and read it at another time. |
||
|
|
|
|
This is perhaps more of a hardware answer -- but for starting new projects from scratch, underestimating the resource requirement is a big problem, especially when working on small self-contained microcontrollers with no easy way to expand code/storage size. |
||
|
|
|
|
That's not just for embedded systems, but spending all this time finding bugs (debugging) instead of avoiding bugs with cool stuff like like e.g. code reviews is definitely one commonly applied worst practice. Another one is letting one huge processor do all the work instead of breaking the problem into small problems e.g. with more little processors. Remember COCOMO? |
||
|
|
|
|
It depends a lot on the type of controller you are programming for. Sometimes cost is the most important thing and you are trying to get by with as little as possible. That's the boat I'm usually in. Here are some worst practices I've used:
|
||
|
|