1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-13 05:06:30 +04:00
Files

52 lines
1.2 KiB
C
Raw Permalink Normal View History

2023-05-30 22:18:54 +03:00
#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;
2023-05-30 22:18:54 +03:00
static uint8_t controller_programming_mode = PROG_MODE_OFF;
2023-05-14 01:34:43 +03:00
bool subghz_custom_btn_set(uint8_t btn_id) {
if(btn_id > custom_btn_max_btns) {
custom_btn_id = SUBGHZ_CUSTOM_BTN_OK;
2023-05-14 01:34:43 +03:00
return false;
} else {
custom_btn_id = btn_id;
2023-05-14 01:34:43 +03:00
return true;
}
}
2024-04-04 22:55:39 +03:00
uint8_t subghz_custom_btn_get(void) {
return custom_btn_id;
}
void subghz_custom_btn_set_original(uint8_t btn_code) {
custom_btn_original = btn_code;
}
2024-04-04 22:55:39 +03:00
uint8_t subghz_custom_btn_get_original(void) {
return custom_btn_original;
}
void subghz_custom_btn_set_max(uint8_t b) {
custom_btn_max_btns = b;
}
2024-04-04 22:55:39 +03:00
void subghz_custom_btns_reset(void) {
custom_btn_original = 0;
custom_btn_max_btns = 0;
2023-05-30 22:18:54 +03:00
controller_programming_mode = PROG_MODE_OFF;
custom_btn_id = SUBGHZ_CUSTOM_BTN_OK;
2023-05-14 01:34:43 +03:00
}
2024-04-04 22:55:39 +03:00
bool subghz_custom_btn_is_allowed(void) {
2023-05-14 01:34:43 +03:00
return custom_btn_max_btns != 0;
2023-05-30 22:18:54 +03:00
}
void subghz_custom_btn_set_prog_mode(ProgMode prog_mode) {
controller_programming_mode = prog_mode;
}
2024-04-04 22:55:39 +03:00
ProgMode subghz_custom_btn_get_prog_mode(void) {
2023-05-30 22:18:54 +03:00
return controller_programming_mode;
}