Files
Momentum-Firmware/lib/subghz/devices/tx.h

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;