mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
26 lines
388 B
C
26 lines
388 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void subghz_custom_btn_set(uint8_t b);
|
|
|
|
uint8_t subghz_custom_btn_get();
|
|
|
|
void subghz_custom_btn_set_original(uint8_t b);
|
|
|
|
uint8_t subghz_custom_btn_get_original();
|
|
|
|
void subghz_custom_btn_set_max(uint8_t b);
|
|
|
|
void subghz_custom_btns_reset();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|