23 lines
486 B
C
23 lines
486 B
C
//
|
|
// Created by bruno on 3/30/25.
|
|
//
|
|
|
|
#ifndef BRNQUANFW_MESSAGES_H
|
|
#define BRNQUANFW_MESSAGES_H
|
|
#include "fskmodem.h"
|
|
|
|
#define MESSAGES_START 0X1D00;
|
|
#define MESSAGES_COUNT 6;
|
|
|
|
extern uint8_t gActiveMessage;
|
|
|
|
void MESSAGES_GET();
|
|
void MESSAGES_DELETE();
|
|
void SCANNER_ProcessKeys(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld);
|
|
void SCANNER_Stop(void);
|
|
void SCANNER_TimeSlice10ms(void);
|
|
void SCANNER_TimeSlice500ms(void);
|
|
bool SCANNER_IsScanning(void);
|
|
|
|
#endif //BRNQUANFW_MESSAGES_H
|