c++ Programming Glossary: microcontrollers
Test Automation with Embedded Hardware http://stackoverflow.com/questions/115115/test-automation-with-embedded-hardware worth the effort We typically target Processor 8 or 16 bit microcontrollers some DSP stuff Language C sometimes c . c c unit testing embedded..
(not) using std::string in exceptions http://stackoverflow.com/questions/15831029/not-using-stdstring-in-exceptions or something else i'm talking about programms on pc's not microcontrollers i have truly other problems. may i can figur out that an bad_alloc..
Any good C/C++ DSP library? http://stackoverflow.com/questions/1761212/any-good-c-c-dsp-library DSP platform. For example Microchip's dsPIC devices are microcontrollers with a DSP subsystem that gives good performance per MHz for..
C++ on Small-Footprint Microcontrollers http://stackoverflow.com/questions/5710942/c-on-small-footprint-microcontrollers shy away from or rather vehemently oppose the use of C on microcontrollers but I can't for the life of me figure out why. If you stay away..
dynamically allocated memory after program termination http://stackoverflow.com/questions/6727383/dynamically-allocated-memory-after-program-termination long as the program is running. If you're programming on microcontrollers on MacOS 9 or earler DOS or Windows 3.x then you might need..
C++ pointer assignment http://stackoverflow.com/questions/7062853/c-pointer-assignment on but it's a pretty good analogy for 99 of computers and microcontrollers. So in your case int x 35 int y 46 x y 35 46 ... 100 101 102..
Is inline assembly language slower than native C++ code? http://stackoverflow.com/questions/9601427/is-inline-assembly-language-slower-than-native-c-code CISC CPUs have very long pipelines too. For some complex microcontrollers even system libraries are written in C instead of assembly because..
What are the major advantages of const versus #define for global constants? http://stackoverflow.com/questions/9941107/what-are-the-major-advantages-of-const-versus-define-for-global-constants not need place in RAM which is usually very limited in microcontrollers and µC applications usually need a large number of global constants..
|