Fixes for enums in TactilityC (#404)

This commit is contained in:
Ken Van Hoeylandt
2025-11-01 09:38:32 +01:00
committed by GitHub
parent 569cce38fa
commit e2ec39304c
8 changed files with 18 additions and 20 deletions
+6 -6
View File
@@ -12,12 +12,12 @@ extern "C" {
/** Important: These values must map to tt::service::wifi::RadioState values exactly */
typedef enum {
WIFI_RADIO_STATE_ON_PENDING,
WIFI_RADIO_STATE_ON,
WIFI_RADIO_STATE_CONNECTION_PENDING,
WIFI_RADIO_STATE_CONNECTION_ACTIVE,
WIFI_RADIO_STATE_OFF_PENDING,
WIFI_RADIO_STATE_OFF,
WifiRadioStateOnPending,
WifiRadioStateOn,
WifiRadioStateConnectionPending,
WifiRadioStateConnectionActive,
WifiRadioStateOffPending,
WifiRadioStateOff,
} WifiRadioState;
/** @return the state of the WiFi radio */