clang-format changes

This commit is contained in:
skullY
2019-08-30 11:19:03 -07:00
committed by skullydazed
parent 61af76a10d
commit b624f32f94
502 changed files with 32259 additions and 39062 deletions

View File

@ -12,34 +12,30 @@
#if DEBUG_LEVEL > 0
#warning "Never compile production devices with debugging enabled"
# warning "Never compile production devices with debugging enabled"
static void uartPutc(char c)
{
while(!(ODDBG_USR & (1 << ODDBG_UDRE))); /* wait for data register empty */
static void uartPutc(char c) {
while (!(ODDBG_USR & (1 << ODDBG_UDRE)))
; /* wait for data register empty */
ODDBG_UDR = c;
}
static uchar hexAscii(uchar h)
{
static uchar hexAscii(uchar h) {
h &= 0xf;
if(h >= 10)
h += 'a' - (uchar)10 - '0';
if (h >= 10) h += 'a' - (uchar)10 - '0';
h += '0';
return h;
}
static void printHex(uchar c)
{
static void printHex(uchar c) {
uartPutc(hexAscii(c >> 4));
uartPutc(hexAscii(c));
}
void odDebug(uchar prefix, uchar *data, uchar len)
{
void odDebug(uchar prefix, uchar *data, uchar len) {
printHex(prefix);
uartPutc(':');
while(len--){
while (len--) {
uartPutc(' ');
printHex(*data++);
}