1
0
Fork 0
mirror of https://github.com/EdgeTX/edgetx.git synced 2025-07-23 00:05:13 +03:00

Cosmetics

This commit is contained in:
bsongis 2014-04-08 17:32:20 +02:00
parent 563aa62fcd
commit 77477c1687

View file

@ -79,6 +79,11 @@
#define BOOTLOADER_TITLE "Sky9x Boot Loader - v1.0" #define BOOTLOADER_TITLE "Sky9x Boot Loader - v1.0"
#endif #endif
const uint8_t bootloaderVersion[] __attribute__ ((section(".version"), used)) =
{
'B', 'O', 'O', 'T', '1', '0'
};
// states // states
enum BootLoaderStates { enum BootLoaderStates {
ST_START, ST_START,
@ -91,10 +96,6 @@ enum BootLoaderStates {
ST_FLASH_DONE, ST_FLASH_DONE,
ST_USB, ST_USB,
ST_REBOOT, ST_REBOOT,
const uint8_t bootloaderVersion[] __attribute__ ((section(".version"), used)) =
{
'B', 'O', 'O', 'T', '1', '0'
}; };
/*---------------------------------------------------------------------------- /*----------------------------------------------------------------------------