mirror of
https://github.com/kamilsss655/uv-k5-firmware-custom
synced 2024-11-22 19:18:56 +00:00
18 lines
524 B
C
18 lines
524 B
C
|
#ifndef APP_CHFRSCANNER_H
|
||
|
#define APP_CHFRSCANNER_H
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
// scan direction, if not equal SCAN_OFF indicates
|
||
|
// that we are in a process of scanning channels/frequencies
|
||
|
extern int8_t gScanStateDir;
|
||
|
extern bool gScanKeepResult;
|
||
|
extern bool gScanPauseMode;
|
||
|
|
||
|
void CHFRSCANNER_Found(void);
|
||
|
void CHFRSCANNER_Stop(void);
|
||
|
void CHFRSCANNER_Start(const bool storeBackupSettings, const int8_t scan_direction);
|
||
|
void CHFRSCANNER_ContinueScanning(void);
|
||
|
|
||
|
#endif
|