memory org and solo hacker build recipe

This commit is contained in:
Conor Patrick
2018-12-05 00:13:34 -05:00
parent cbf021c7a8
commit b9ebde22e5
6 changed files with 18 additions and 18 deletions

View File

@@ -13,11 +13,6 @@
#define BOOT_TO_DFU 0
// Uncomment SOLO_HACKKER to Only use level 1 read-out-protection,
// allows booting to ST bootloader or Solo bootloader without any button press,
// Disables signature check in Solo bootloader.
#define SOLO_HACKER
//#define USING_DEV_BOARD
//#define ENABLE_U2F_EXTENSIONS

View File

@@ -21,7 +21,7 @@
// Start of application code
#ifndef APPLICATION_START_PAGE
#define APPLICATION_START_PAGE (7)
#define APPLICATION_START_PAGE (10)
#endif
#define APPLICATION_START_ADDR (0x08000000 + ((APPLICATION_START_PAGE)*PAGE_SIZE))
@@ -31,6 +31,6 @@
#define APPLICATION_END_ADDR ((0x08000000 + ((APPLICATION_END_PAGE)*PAGE_SIZE))-8)
// Bootloader state.
#define AUTH_WORD_ADDR ((0x08000000 + ((APPLICATION_END_PAGE)*PAGE_SIZE))-8)
#define AUTH_WORD_ADDR (APPLICATION_END_ADDR)
#endif