18 static const char hexconv[] =
"0123456789abcdef";
19 static const char binconv[] =
"01";
33 putchar(hexconv[c >> 4]);
34 putchar(hexconv[c & 0x0f]);
40 unsigned char i = 0x80;
42 putchar(binconv[(c & i) != 0]);
52 for(div = 100; div > 0; div /= 10) {
53 uint8_t disp = c / div;
55 if((disp != 0) || (hassent) || (div == 1)) {
CC2430 registers header file for CC2430.
Header file for debugging functions used by the sensinode port.