vote up 7 vote down star
5

What do you think are the difference in mindset between a programmer doing work for a desktop environment (windows, linux, whatever...) and someone doing work on an embedded system?

A simple example I can think of is that in an embedded environment, I always check that a malloc is not NULL. Most code I have seen that target desktops is certainly not diligent in checking malloc return value.

Any other examples of mindset differences?

flag

78% accept rate

5 Answers

vote up 8 vote down check

Funny that you mention malloc() specifically in your example.

In every hard-real-time, deeply embedded system that I've worked on, memory allocation is managed specially (usually not the heap, but fixed memory pools or something similar)... and also, whenever possible, all memory allocation is done up-front during initialization. This is surprisingly easier than most people would believe.

malloc() is vulnerable to fragmentation, is non-deterministic, and doesn't discrminate between memory types. With memory pools, you can have pools that are located/pulling from super fast SRAM, fast DRAM, battery-backed RAM (I've seen it), etc...

There are a hundred other issues (in answer to your original question), but memory allocation is a big one.

Also:

  • Respect for / knowledge of the hardware platform
  • Not automatically asssuming the hardware is perfect or even functional
  • Awareness of certain language apects & features (e.g., exceptions in C++) that can cause things to go sideways quickly
  • Awareness of CPU loading and memory utilization
  • Awareness of interrupts, pre-emption, and the implications on shared data (where absolutely necessary -- the less shared data, the better)
  • Most embedded systems are data/event driven, as opposed to polled; there are exceptions of course
  • Most embedded developers are pretty comfortable with the concept of state machines and stateful behavior/modeling
link|flag
1  
malloc() considered harmful? – Crashworks Feb 12 at 6:28
vote up 4 vote down

I desktop environment there's the idea that "hey I can always release an update or patch to fix this later." In embedded design, you get more "this has to work cause we don't want to recall the device or release an even longer patching program."

link|flag
Although the ability to issue firmware updates is moving the embedded world into a mindset closer to the desktop one more and more over time... – Michael Burr Feb 12 at 4:44
Agreed, we can see this with new EEPROMs and the ability to release flash updates. As seen on motherboards for years and we'll probably be seeing on graphics cards soon. You can now program your own shaders which get applied to the gfx card now. – Suroot Feb 12 at 4:50
vote up 6 vote down

size matters

link|flag
vote up 1 vote down

2 things - as Suroot already mentioned, once you release a desktop app, it doesn't have to be "forever", especially nowadays.

But in embedded, once you "ship it", it's on its way to Mars so you're not going to be able to pull it back.

Also one of the major differences are that embedded programmers are generally a LOT more conscious about efficient code and memory management - desktops run horrible code really fast, embedded doesn't.

link|flag
I think they actually did a firmware update on the Mars rovers. – Jeff V Feb 13 at 14:17
I bet that's what you would call an "intense" moment while it restarts... ;) – routeNpingme Feb 13 at 17:26
vote up 5 vote down

Desktop programmers view resources as practically unlimited. Memory, computing power, drive space. Those never run out. Embedded programmers focus intently on all of those.

Oh, and embedded programmers also often have to worry about memory alignment issues. Desktop coders don't. The Arm chips care. x86 chips don't.

link|flag
Can you elaborate on the : "The Arm chips care. x86 chips don't." – Jeff V Feb 13 at 14:13
Sure. Most non-x86 CPUs like the ARM that is so popular in embedded systems will only read an integer if it is on a DWORD (32-bit) boundary. They will fault if asked to read a non-aligned int. The x86 will happily read such an int, it will just be a little slow. – Steve Rowe Feb 14 at 5:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.