Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

C/C++ concepts that a guy wishing to enter embedded systems development must know?

Status
Not open for further replies.

iOsBoy

Newbie level 2
Joined
May 23, 2013
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,303
What C/C++ concepts a programmer wishing to enter embedded systems programming(for RTOS using C/C++) and going for an interview must know ?
I have heard of the following
1).Function pointers
2).static keyword
3).memory management using malloc and free
4).bit manipulation

Can anybody else add more topics to the list?
 

what an odd question
 

1. Virtual Functions
2. Macros
3. Threading
4. Software Timers concept
5. Stack concept
 
Last edited:

What C/C++ concepts a programmer wishing to enter embedded systems programming(for RTOS using C/C++) and going for an interview must know ?
I have heard of the following
1).Function pointers
2).static keyword
3).memory management using malloc and free
4).bit manipulation

Can anybody else add more topics to the list?

a.) The volatile keyword is fundamental in embedded systems
b.) What are the stack and the heap and what are these used for
c.) Multitasking and task synchronization mechanisms
d.) Advantages of multitasking
e.) MACROS
 

Interrupts (Outside the scope of ANSI C but pretty fundamental to a lot of embedded code).....

Really, you need to know C plus a reasonable amount of computer architecture and the common ways the 'implementation defined' bits of the C standard map onto the hardware.
Some understanding of linkers is helpful, as you will surely end up needing to write custom linker scripts.

Have a look at the MISRA standards for automotive C, last time I looked at them they did not all make sense, but they did provide a rough guide as to what you should think twice about doing in an embedded context.

Regards, Dan.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top