0
votes

Can anyone suggest links/resources for sample project implementations of embedded projects using c++ or gcc.

3
I strongly suggest that you expand on this question as suggested in the answers thus far before it gets more votes to close. - Clifford
C++ is a language, gcc is a compiler (supporting C and C++). Is it the language or the compiler you are interested in? - Clifford

3 Answers

1
votes

There are many many many resources....the question is too broad. Do you have a particular embedded micro you are targetting?

different embedded apps have different concerns

  • real time concerns?
  • extremely limited memory / resources?
  • OS? no OS?
  • Security?
  • Failsafe?
  • Device Drivers?
1
votes

Many resources are target specific, so you will have to be more specific if you want a specific answer. However http://embedded.com/ is a good general resource, and depending on your geographical location, you may qualify for a free subscription to Embedded Systems Design or Embedded Systems Design Europe paper publications.

Apart from Atmel AVR, GCC is targetted for 16/32bit targets, and C++ is generally ambitious and unnecessary for 8 bit, so I am guessing we are considering 16/32bit targets?

You might also take a look at:

0
votes

Question is incomplete, you have to provide all information, like product summary, hardware you want to use. But I guess you are porting some linux kernel to some embedded device.

For application program, easiest is to cross compile your code from your local system for specific arch and then transfer the binary to your embedded product.