mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
11 lines
446 B
C
11 lines
446 B
C
#pragma once
|
|
|
|
/** TX Allowed or Blocked Reasons */
|
|
typedef enum {
|
|
SubGhzTxAllowed, /**< TX is allowed with this configuration */
|
|
SubGhzTxBlockedRegionNotProvisioned, /**< Region not provisioned and not bypassed */
|
|
SubGhzTxBlockedRegion, /**< Outside region, needs bypass region */
|
|
SubGhzTxBlockedDefault, /**< Outisde default, needs extended range */
|
|
SubGhzTxUnsupported, /**< No configuration would allow this */
|
|
} SubGhzTx;
|