mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-12 22:08:36 -07:00
Temporarily backport app updates from apps repo
This commit is contained in:
30
applications/external/gpio_reader_b/usb_uart_bridge.h
vendored
Normal file
30
applications/external/gpio_reader_b/usb_uart_bridge.h
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef struct UsbUartBridge UsbUartBridge;
|
||||
|
||||
typedef struct {
|
||||
uint8_t vcp_ch;
|
||||
uint8_t uart_ch;
|
||||
uint8_t flow_pins;
|
||||
uint8_t baudrate_mode;
|
||||
uint32_t baudrate;
|
||||
} UsbUartConfig;
|
||||
|
||||
typedef struct {
|
||||
uint32_t rx_cnt;
|
||||
uint32_t tx_cnt;
|
||||
uint32_t baudrate_cur;
|
||||
} UsbUartState;
|
||||
|
||||
UsbUartBridge* usb_uart_enable(UsbUartConfig* cfg);
|
||||
|
||||
void usb_uart_disable(UsbUartBridge* usb_uart);
|
||||
|
||||
void usb_uart_set_config(UsbUartBridge* usb_uart, UsbUartConfig* cfg);
|
||||
|
||||
void usb_uart_get_config(UsbUartBridge* usb_uart, UsbUartConfig* cfg);
|
||||
|
||||
void usb_uart_get_state(UsbUartBridge* usb_uart, UsbUartState* st);
|
||||
Reference in New Issue
Block a user