1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-13 11:29:51 +03:00

Cosmetics

This commit is contained in:
Bertrand Songis 2019-06-19 18:01:22 +02:00
parent 6ce9f8644d
commit aa1fa2aa09
No known key found for this signature in database
GPG key ID: F189F79290FEC50F
2 changed files with 6 additions and 5 deletions

View file

@ -17,21 +17,23 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include "opentx.h"
#include "boot.h"
#include "bin_files.h"
#if defined(PCBXLITE)
#define BOOTLOADER_KEYS 0x0F
#define BOOTLOADER_KEYS 0x0F
#else
#define BOOTLOADER_KEYS 0x42
#define BOOTLOADER_KEYS 0x42
#endif
#define APP_START_ADDRESS (uint32_t)(FIRMWARE_ADDRESS + BOOTLOADER_SIZE)
#if defined(EEPROM)
#define MAIN_MENU_LEN 3
#define MAIN_MENU_LEN 3
#else
#define MAIN_MENU_LEN 2
#define MAIN_MENU_LEN 2
#endif
typedef void (*voidFunction)(void);