mirror of
https://github.com/OneOfEleven/uv-k5-firmware-custom.git
synced 2025-04-27 13:51:25 +03:00
61 lines
1.2 KiB
C
61 lines
1.2 KiB
C
|
|
#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];
|
|
|
|
extern const uint8_t BITMAP_BATTERY_LEVEL[17];
|
|
|
|
extern const uint8_t BITMAP_USB_C[8];
|
|
|
|
#ifdef ENABLE_KEYLOCK
|
|
extern const uint8_t BITMAP_KEYLOCK[7];
|
|
#endif
|
|
|
|
extern const uint8_t BITMAP_F_KEY[6];
|
|
|
|
#ifdef ENABLE_VOX
|
|
extern const uint8_t BITMAP_VOX[17];
|
|
extern const uint8_t BITMAP_VOX_SMALL[17];
|
|
#endif
|
|
|
|
#if 0
|
|
extern const uint8_t BITMAP_WX[12];
|
|
#else
|
|
extern const uint8_t BITMAP_XB[11];
|
|
#endif
|
|
|
|
extern const uint8_t BITMAP_TDR_RUNNING[12];
|
|
extern const uint8_t BITMAP_TDR_HOLDING[12];
|
|
|
|
#ifdef ENABLE_VOICE
|
|
extern const uint8_t BITMAP_VOICE_PROMPT[7];
|
|
#endif
|
|
|
|
extern const uint8_t BITMAP_MONITOR[6];
|
|
|
|
#ifdef ENABLE_FMRADIO
|
|
extern const uint8_t BITMAP_FM[11];
|
|
#endif
|
|
|
|
#ifdef ENABLE_NOAA
|
|
extern const uint8_t BITMAP_NOAA[10];
|
|
#endif
|
|
|
|
extern const uint8_t BITMAP_ANTENNA[5];
|
|
|
|
extern const uint8_t BITMAP_MARKER[8];
|
|
|
|
extern const uint8_t BITMAP_VFO_DEFAULT[7];
|
|
extern const uint8_t BITMAP_VFO_NOT_DEFAULT[7];
|
|
|
|
extern const uint8_t BITMAP_SCANLIST1[6];
|
|
extern const uint8_t BITMAP_SCANLIST2[6];
|
|
|
|
#endif
|
|
|