mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-19 03:11:52 +03:00
f4cc9e5de7
if author want their plugin to be removed - create issue, thanks
13 lines
428 B
C
13 lines
428 B
C
#pragma once
|
|
|
|
#include "furi_hal.h"
|
|
|
|
#define RX_BUF_SIZE (320)
|
|
|
|
typedef struct WifiMarauderUart WifiMarauderUart;
|
|
|
|
void wifi_marauder_uart_set_handle_rx_data_cb(WifiMarauderUart* uart, void (*handle_rx_data_cb)(uint8_t *buf, size_t len, void* context));
|
|
void wifi_marauder_uart_tx(uint8_t *data, size_t len);
|
|
WifiMarauderUart* wifi_marauder_uart_init(WifiMarauderApp* app);
|
|
void wifi_marauder_uart_free(WifiMarauderUart* uart);
|