Embedded Systems
embedcpp.txt
Associated article: Embedded Development Compilers
Tags: Embedded Systems
Published source code accompanying the article by Don Hair and Cesar Quiroz in which they examine the differences between native and embedded development systems, and discuss the features of embedded development compilers that make them different from native compilers.
Embedded Development Compilers
by Don Hair and Cesar Quiroz
Listing One
packed struct {
unsigned char field1:4;
unsigned char field2:3;
unsigned short field3:1;
unsigned short field4:5;
unsigned short field5:2;
unsigned short field6:4;
unsigned short field7:4;
} s;
...
s.field5 = 3;
Listing Two
(a)
...


