2023-09-09 08:03:56 +01:00
|
|
|
|
|
|
|
|
#ifndef BITMAP_H
|
|
|
|
|
#define BITMAP_H
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
2023-10-03 16:09:25 +01:00
|
|
|
extern const uint8_t BITMAP_POWERSAVE[8];
|
|
|
|
|
extern const uint8_t BITMAP_TX[8];
|
|
|
|
|
extern const uint8_t BITMAP_RX[8];
|
2023-12-12 00:52:26 +01:00
|
|
|
extern const uint8_t BITMAP_FM[10];
|
2023-09-25 07:12:08 +01:00
|
|
|
extern const uint8_t BITMAP_BatteryLevel[2];
|
2023-09-19 07:16:15 +01:00
|
|
|
extern const uint8_t BITMAP_BatteryLevel1[17];
|
2023-09-09 08:03:56 +01:00
|
|
|
|
|
|
|
|
extern const uint8_t BITMAP_USB_C[9];
|
2023-09-12 19:53:54 +01:00
|
|
|
|
2023-09-19 20:04:02 +01:00
|
|
|
extern const uint8_t BITMAP_KeyLock[6];
|
2023-09-09 08:03:56 +01:00
|
|
|
|
2023-09-19 20:04:02 +01:00
|
|
|
extern const uint8_t BITMAP_F_Key[6];
|
2023-09-09 08:03:56 +01:00
|
|
|
|
2023-10-04 11:57:34 +01:00
|
|
|
#ifdef ENABLE_VOX
|
|
|
|
|
extern const uint8_t BITMAP_VOX[18];
|
|
|
|
|
#endif
|
2023-09-09 08:03:56 +01:00
|
|
|
|
2023-10-15 21:42:17 +02:00
|
|
|
extern const uint8_t BITMAP_XB[12];
|
2023-09-12 19:53:54 +01:00
|
|
|
|
2023-12-12 00:52:26 +01:00
|
|
|
extern const uint8_t BITMAP_TDR1[16];
|
|
|
|
|
extern const uint8_t BITMAP_TDR2[10];
|
2023-09-12 19:53:54 +01:00
|
|
|
|
2023-09-14 09:56:30 +01:00
|
|
|
#ifdef ENABLE_VOICE
|
2023-09-09 08:03:56 +01:00
|
|
|
extern const uint8_t BITMAP_VoicePrompt[9];
|
|
|
|
|
#endif
|
|
|
|
|
|
2023-09-14 09:56:30 +01:00
|
|
|
#ifdef ENABLE_NOAA
|
2023-10-15 21:42:17 +02:00
|
|
|
extern const uint8_t BITMAP_NOAA[11];
|
2023-09-09 08:03:56 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
extern const uint8_t BITMAP_Antenna[5];
|
|
|
|
|
|
|
|
|
|
extern const uint8_t BITMAP_VFO_Default[8];
|
|
|
|
|
extern const uint8_t BITMAP_VFO_NotDefault[8];
|
|
|
|
|
|
2023-09-18 18:26:10 +01:00
|
|
|
extern const uint8_t BITMAP_ScanList1[6];
|
|
|
|
|
extern const uint8_t BITMAP_ScanList2[6];
|
2023-09-09 08:03:56 +01:00
|
|
|
|
2023-10-04 16:37:11 +01:00
|
|
|
extern const uint8_t BITMAP_compand[6];
|
2023-12-25 01:59:18 +01:00
|
|
|
|
|
|
|
|
#ifndef ENABLE_CUSTOM_MENU_LAYOUT
|
|
|
|
|
extern const uint8_t BITMAP_CurrentIndicator[8];
|
|
|
|
|
#endif
|
|
|
|
|
|
2023-09-09 08:03:56 +01:00
|
|
|
#endif
|