Skip to content
Draft
7 changes: 7 additions & 0 deletions helpers/radio_scanner_states.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Enumeration of the possible states of sound, ending with the number of sound states.
typedef enum {
SoundStateOFF,
SoundStateON,
SoundStateSquelch,
SoundStateNum
} SoundState;
13 changes: 13 additions & 0 deletions helpers/scanner_event.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#pragma once

/**
* Enumeration of scanner events.
*/
typedef enum {
// Scanning
ScannerEventScanDirectionDown,
ScannerEventScanDirectionUp,
ScannerEventToggleScanning,
// Views
ScannerEventViewConfig,
} ScannerEvent;
Loading