a13f87fedb
* SubGhz: GUI RAW Read view * SubGhz: GUI Read RAW refactoring * SubGhz: fix bug wrong frequency of the allowed transmission * GUI Read RAW refactoring * SubGhz: fix set the default frequency * SubGhz: fix save filename when returning from another menu * SubGhz: fix Send and Back button behavior Co-authored-by: あく <alleteam@gmail.com>
37 lines
1.1 KiB
C
37 lines
1.1 KiB
C
#pragma once
|
|
|
|
typedef enum {
|
|
SubghzCustomEventManagerNoSet = 0,
|
|
SubghzCustomEventManagerSet,
|
|
|
|
SubghzCustomEventSceneDeleteSuccess = 100,
|
|
SubghzCustomEventSceneDelete,
|
|
SubghzCustomEventSceneReceiverInfoTxStart,
|
|
SubghzCustomEventSceneReceiverInfoTxStop,
|
|
SubghzCustomEventSceneReceiverInfoSave,
|
|
SubghzCustomEventSceneSaveName,
|
|
SubghzCustomEventSceneSaveSuccess,
|
|
SubghzCustomEventSceneShowError,
|
|
SubghzCustomEventSceneShowOnlyRX,
|
|
|
|
SubghzCustomEventSceneExit,
|
|
SubghzCustomEventSceneStay,
|
|
|
|
SubghzCustomEventViewReceverOK,
|
|
SubghzCustomEventViewReceverConfig,
|
|
SubghzCustomEventViewReceverBack,
|
|
|
|
SubghzCustomEventViewReadRAWBack,
|
|
SubghzCustomEventViewReadRAWIDLE,
|
|
SubghzCustomEventViewReadRAWREC,
|
|
SubghzCustomEventViewReadRAWConfig,
|
|
SubghzCustomEventViewReadRAWErase,
|
|
SubghzCustomEventViewReadRAWSendStart,
|
|
SubghzCustomEventViewReadRAWSendStop,
|
|
SubghzCustomEventViewReadRAWSave,
|
|
|
|
SubghzCustomEventViewTransmitterBack,
|
|
SubghzCustomEventViewTransmitterSendStart,
|
|
SubghzCustomEventViewTransmitterSendStop,
|
|
SubghzCustomEventViewTransmitterError,
|
|
} SubghzCustomEvent; |