mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
51 lines
No EOL
1.2 KiB
C
51 lines
No EOL
1.2 KiB
C
#include "custom_btn_i.h"
|
|
|
|
static uint8_t custom_btn_id = SUBGHZ_CUSTOM_BTN_OK;
|
|
static uint8_t custom_btn_original = 0;
|
|
static uint8_t custom_btn_max_btns = 0;
|
|
static uint8_t controller_programming_mode = PROG_MODE_OFF;
|
|
|
|
bool subghz_custom_btn_set(uint8_t btn_id) {
|
|
if(btn_id > custom_btn_max_btns) {
|
|
custom_btn_id = SUBGHZ_CUSTOM_BTN_OK;
|
|
return false;
|
|
} else {
|
|
custom_btn_id = btn_id;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
uint8_t subghz_custom_btn_get() {
|
|
return custom_btn_id;
|
|
}
|
|
|
|
void subghz_custom_btn_set_original(uint8_t btn_code) {
|
|
custom_btn_original = btn_code;
|
|
}
|
|
|
|
uint8_t subghz_custom_btn_get_original() {
|
|
return custom_btn_original;
|
|
}
|
|
|
|
void subghz_custom_btn_set_max(uint8_t b) {
|
|
custom_btn_max_btns = b;
|
|
}
|
|
|
|
void subghz_custom_btns_reset() {
|
|
custom_btn_original = 0;
|
|
custom_btn_max_btns = 0;
|
|
controller_programming_mode = PROG_MODE_OFF;
|
|
custom_btn_id = SUBGHZ_CUSTOM_BTN_OK;
|
|
}
|
|
|
|
bool subghz_custom_btn_is_allowed() {
|
|
return custom_btn_max_btns != 0;
|
|
}
|
|
|
|
void subghz_custom_btn_set_prog_mode(ProgMode prog_mode) {
|
|
controller_programming_mode = prog_mode;
|
|
}
|
|
|
|
ProgMode subghz_custom_btn_get_prog_mode() {
|
|
return controller_programming_mode;
|
|
} |