diff options
Diffstat (limited to 'fw/fe310/eos/wifi.h')
-rw-r--r-- | fw/fe310/eos/wifi.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/fw/fe310/eos/wifi.h b/fw/fe310/eos/wifi.h new file mode 100644 index 0000000..bb629ed --- /dev/null +++ b/fw/fe310/eos/wifi.h @@ -0,0 +1,13 @@ +#include <stdint.h> +#include "event.h" + +#define EOS_WIFI_MTYPE_SCAN 1 +#define EOS_WIFI_MTYPE_CONFIG 2 +#define EOS_WIFI_MTYPE_CONNECT 3 +#define EOS_WIFI_MTYPE_DISCONNECT 4 + +#define EOS_WIFI_MAX_MTYPE 5 + +void eos_wifi_init(void); +void eos_wifi_set_handler(unsigned char mtype, eos_evt_handler_t handler); +eos_evt_handler_t eos_wifi_get_handler(unsigned char mtype); |