wifi_deauther_uart.h 461 B

1234567891011121314
  1. #pragma once
  2. #include "furi_hal.h"
  3. #define RX_BUF_SIZE (320)
  4. typedef struct WifideautherUart WifideautherUart;
  5. void wifi_deauther_uart_set_handle_rx_data_cb(
  6. WifideautherUart* uart,
  7. void (*handle_rx_data_cb)(uint8_t* buf, size_t len, void* context));
  8. void wifi_deauther_uart_tx(WifideautherUart* uart, uint8_t* data, size_t len);
  9. WifideautherUart* wifi_deauther_uart_init(WifideautherApp* app);
  10. void wifi_deauther_uart_free(WifideautherUart* uart);