python script for progamming via solo bootloader

This commit is contained in:
Conor Patrick
2018-12-03 23:01:51 -05:00
parent 9b4b18e1a4
commit 5a96e82f4d
10 changed files with 144 additions and 15 deletions

View File

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