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