mirror of
https://github.com/silenty4ng/uv-k5-firmware-chinese-lts
synced 2025-01-15 14:54:40 +00:00
47 lines
No EOL
1 KiB
C
47 lines
No EOL
1 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_FM[10];
|
|
extern const uint8_t BITMAP_BatteryLevel[2];
|
|
extern const uint8_t BITMAP_BatteryLevel1[17];
|
|
|
|
extern const uint8_t BITMAP_USB_C[9];
|
|
|
|
extern const uint8_t BITMAP_KeyLock[6];
|
|
|
|
extern const uint8_t BITMAP_F_Key[6];
|
|
|
|
#ifdef ENABLE_VOX
|
|
extern const uint8_t BITMAP_VOX[18];
|
|
#endif
|
|
|
|
extern const uint8_t BITMAP_XB[12];
|
|
|
|
extern const uint8_t BITMAP_TDR1[16];
|
|
extern const uint8_t BITMAP_TDR2[10];
|
|
|
|
#ifdef ENABLE_VOICE
|
|
extern const uint8_t BITMAP_VoicePrompt[9];
|
|
#endif
|
|
|
|
#ifdef ENABLE_NOAA
|
|
extern const uint8_t BITMAP_NOAA[11];
|
|
#endif
|
|
|
|
extern const uint8_t BITMAP_Antenna[5];
|
|
|
|
extern const uint8_t BITMAP_VFO_Default[8];
|
|
extern const uint8_t BITMAP_VFO_NotDefault[8];
|
|
|
|
extern const uint8_t BITMAP_ScanList1[6];
|
|
extern const uint8_t BITMAP_ScanList2[6];
|
|
|
|
extern const uint8_t BITMAP_compand[6];
|
|
|
|
#endif |