add date to INFO_UF2.TXT
This commit is contained in:
parent
381129820f
commit
5e6d0ef19a
1 changed files with 3 additions and 2 deletions
|
|
@ -117,10 +117,11 @@ STATIC_ASSERT(FAT_ENTRIES_PER_SECTOR == 256); // FAT
|
|||
|
||||
#define UF2_ARRAY_SIZE(_arr) ( sizeof(_arr) / sizeof(_arr[0]) )
|
||||
|
||||
char infoUf2File[128*3] =
|
||||
char infoUf2File[] =
|
||||
"TinyUF2 Bootloader " UF2_VERSION "\r\n"
|
||||
"Model: " UF2_PRODUCT_NAME "\r\n"
|
||||
"Board-ID: " UF2_BOARD_ID "\r\n";
|
||||
"Board-ID: " UF2_BOARD_ID "\r\n"
|
||||
"Date: " __DATE__ "\r\n";
|
||||
|
||||
const char indexFile[] =
|
||||
"<!doctype html>\n"
|
||||
|
|
|
|||
Loading…
Reference in a new issue