0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-04-28 14:21:25 +03:00

61 lines
1.1 KiB
C
Raw Normal View History

2023-09-09 08:03:56 +01:00
#ifndef BITMAP_H
#define BITMAP_H
#include <stdint.h>
extern const uint8_t BITMAP_POWERSAVE[8];
extern const uint8_t BITMAP_TX[8];
extern const uint8_t BITMAP_RX[8];
2023-09-09 08:03:56 +01:00
2023-10-06 22:16:03 +01:00
extern const uint8_t BITMAP_BATTERY_LEVEL[17];
2023-09-09 08:03:56 +01:00
extern const uint8_t BITMAP_USB_C[8];
#ifdef ENABLE_KEYLOCK
extern const uint8_t BITMAP_KEYLOCK[7];
#endif
2023-09-09 08:03:56 +01:00
2023-10-08 20:23:37 +01:00
extern const uint8_t BITMAP_F_KEY[6];
2023-09-09 08:03:56 +01:00
#ifdef ENABLE_VOX
extern const uint8_t BITMAP_VOX[17];
extern const uint8_t BITMAP_VOX_SMALL[17];
#endif
2023-09-09 08:03:56 +01:00
#if 0
extern const uint8_t BITMAP_WX[12];
#else
2023-11-02 10:00:51 +00:00
extern const uint8_t BITMAP_XB[11];
#endif
extern const uint8_t BITMAP_TDR_RUNNING[12];
extern const uint8_t BITMAP_TDR_HOLDING[12];
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_VOICE
2023-11-02 10:00:51 +00:00
extern const uint8_t BITMAP_VOICE_PROMPT[7];
2023-09-09 08:03:56 +01:00
#endif
extern const uint8_t BITMAP_MONITOR[6];
#ifdef ENABLE_FMRADIO
2023-11-02 10:00:51 +00:00
extern const uint8_t BITMAP_FM[11];
2023-09-14 09:56:30 +01:00
#endif
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_NOAA
2023-11-02 10:00:51 +00:00
extern const uint8_t BITMAP_NOAA[10];
2023-09-09 08:03:56 +01:00
#endif
2023-10-08 20:23:37 +01:00
extern const uint8_t BITMAP_ANTENNA[5];
2023-09-09 08:03:56 +01:00
extern const uint8_t BITMAP_MARKER[8];
2023-09-09 08:03:56 +01:00
2023-10-08 20:23:37 +01:00
extern const uint8_t BITMAP_VFO_DEFAULT[8];
extern const uint8_t BITMAP_VFO_NOT_DEFAULT[8];
2023-09-09 08:03:56 +01:00
2023-10-08 20:23:37 +01:00
extern const uint8_t BITMAP_SCANLIST1[6];
extern const uint8_t BITMAP_SCANLIST2[6];
2023-09-09 08:03:56 +01:00
#endif