./fbt format

This commit is contained in:
RogueMaster
2022-09-21 14:28:03 -04:00
parent 3f3258d9f3
commit 32e18d5500
37 changed files with 2764 additions and 2572 deletions

View File

@@ -22,23 +22,22 @@
#include "hal.h"
#define LCD_WIDTH 32
#define LCD_HEIGHT 16
#define LCD_WIDTH 32
#define LCD_HEIGHT 16
#define ICON_NUM 8
#define ICON_NUM 8
typedef enum {
BTN_STATE_RELEASED = 0,
BTN_STATE_PRESSED,
BTN_STATE_RELEASED = 0,
BTN_STATE_PRESSED,
} btn_state_t;
typedef enum {
BTN_LEFT = 0,
BTN_MIDDLE,
BTN_RIGHT,
BTN_LEFT = 0,
BTN_MIDDLE,
BTN_RIGHT,
} button_t;
bool_t hw_init(void);
void hw_release(void);