remove printf references, add bootloader script, merge hex files

This commit is contained in:
Conor Patrick
2018-12-01 17:10:49 -05:00
parent 93d4112bc3
commit ac7950f4c4
22 changed files with 409 additions and 74 deletions

View File

@@ -22,6 +22,7 @@
#include <stdint.h>
#include <stdio.h>
#if DEBUG_LEVEL
void dump_hex(uint8_t * buf, int size)
{
while(size--)
@@ -30,5 +31,9 @@ void dump_hex(uint8_t * buf, int size)
}
printf("\n");
}
#else
void dump_hex(uint8_t * buf, int size)
{
}
#endif