mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-14 03:48:35 -07:00
Move plugins to external folder
This commit is contained in:
14
applications/external/pocsag_pager/helpers/pocsag_pager_event.h
vendored
Normal file
14
applications/external/pocsag_pager/helpers/pocsag_pager_event.h
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
typedef enum {
|
||||
//PCSGCustomEvent
|
||||
PCSGCustomEventStartId = 100,
|
||||
|
||||
PCSGCustomEventSceneSettingLock,
|
||||
|
||||
PCSGCustomEventViewReceiverOK,
|
||||
PCSGCustomEventViewReceiverConfig,
|
||||
PCSGCustomEventViewReceiverBack,
|
||||
PCSGCustomEventViewReceiverOffDisplay,
|
||||
PCSGCustomEventViewReceiverUnlock,
|
||||
} PCSGCustomEvent;
|
||||
49
applications/external/pocsag_pager/helpers/pocsag_pager_types.h
vendored
Normal file
49
applications/external/pocsag_pager/helpers/pocsag_pager_types.h
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
#pragma once
|
||||
|
||||
#include <furi.h>
|
||||
#include <furi_hal.h>
|
||||
|
||||
#define PCSG_VERSION_APP "0.1"
|
||||
#define PCSG_DEVELOPED "@xMasterX & @Shmuma"
|
||||
#define PCSG_GITHUB "https://github.com/xMasterX/flipper-pager"
|
||||
|
||||
#define PCSG_KEY_FILE_VERSION 1
|
||||
#define PCSG_KEY_FILE_TYPE "Flipper POCSAG Pager Key File"
|
||||
|
||||
/** PCSGRxKeyState state */
|
||||
typedef enum {
|
||||
PCSGRxKeyStateIDLE,
|
||||
PCSGRxKeyStateBack,
|
||||
PCSGRxKeyStateStart,
|
||||
PCSGRxKeyStateAddKey,
|
||||
} PCSGRxKeyState;
|
||||
|
||||
/** PCSGHopperState state */
|
||||
typedef enum {
|
||||
PCSGHopperStateOFF,
|
||||
PCSGHopperStateRunnig,
|
||||
PCSGHopperStatePause,
|
||||
PCSGHopperStateRSSITimeOut,
|
||||
} PCSGHopperState;
|
||||
|
||||
/** PCSGLock */
|
||||
typedef enum {
|
||||
PCSGLockOff,
|
||||
PCSGLockOn,
|
||||
} PCSGLock;
|
||||
|
||||
typedef enum {
|
||||
POCSAGPagerViewVariableItemList,
|
||||
POCSAGPagerViewSubmenu,
|
||||
POCSAGPagerViewReceiver,
|
||||
POCSAGPagerViewReceiverInfo,
|
||||
POCSAGPagerViewWidget,
|
||||
} POCSAGPagerView;
|
||||
|
||||
/** POCSAGPagerTxRx state */
|
||||
typedef enum {
|
||||
PCSGTxRxStateIDLE,
|
||||
PCSGTxRxStateRx,
|
||||
PCSGTxRxStateTx,
|
||||
PCSGTxRxStateSleep,
|
||||
} PCSGTxRxState;
|
||||
Reference in New Issue
Block a user