mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-27 23:33:53 +03:00
fc043da9c6
* FuriHal: UART refactoring * ApiSymbols: add furi_record_destroy * FuriHal: cleanup serial API, add logging configuration in RTC * FuriHal: hide private part in _i header. Toolbox: cleanup value index. SystemSettings: logging device and baudrate. * FuriHal: RTC logging method documentation * Synchronize API Symbols * Furi: mark HEAP_PRINT_DEBUG as broken * FuriHal: furi_hal_serial, add custom IRQ func * Fix PR review issues * FuriHal: UART add reception DMA (#3220) * FuriHal: add DMA serial rx mode * usb_uart_bridge: switch to working with DMA * Sync api symbol versions * FuriHal: update serial docs and api * FuriHal: Selial added similar API for simple reception mode as with DMA * FuriHal: Update API target H18 * API: ver API H7 * FuriHal: Serial error processing * FuriHal: fix furi_hal_serial set baudrate * Sync api symbols * FuriHal: cleanup serial isr and various flag handling procedures * FuriHal: cleanup and simplify serial API * Debug: update UART Echo serial related flags * FuriHal: update serial API symbols naming * FuriHalSerial: various improvements and PR review fixes * FuriHal: proper ISR function signatures --------- Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SkorP <skorpionm@yandex.ru> Co-authored-by: Skorpionm <85568270+Skorpionm@users.noreply.github.com>
190 lines
6.7 KiB
C
190 lines
6.7 KiB
C
#include "../usb_uart_bridge.h"
|
|
#include "../gpio_app_i.h"
|
|
#include <furi_hal.h>
|
|
|
|
typedef enum {
|
|
UsbUartLineIndexVcp,
|
|
UsbUartLineIndexBaudrate,
|
|
UsbUartLineIndexUart,
|
|
UsbUartLineIndexFlow,
|
|
} LineIndex;
|
|
|
|
static const char* vcp_ch[] = {"0 (CLI)", "1"};
|
|
static const char* uart_ch[] = {"13,14", "15,16"};
|
|
static const char* flow_pins[] = {"None", "2,3", "6,7", "16,15"};
|
|
static const char* baudrate_mode[] = {"Host"};
|
|
static const uint32_t baudrate_list[] = {
|
|
1200,
|
|
2400,
|
|
4800,
|
|
9600,
|
|
19200,
|
|
28800,
|
|
38400,
|
|
57600,
|
|
115200,
|
|
230400,
|
|
460800,
|
|
921600,
|
|
};
|
|
static const char* software_de_re[] = {"None", "4"};
|
|
|
|
bool gpio_scene_usb_uart_cfg_on_event(void* context, SceneManagerEvent event) {
|
|
GpioApp* app = context;
|
|
furi_assert(app);
|
|
if(event.type == SceneManagerEventTypeCustom) {
|
|
if(event.event == GpioUsbUartEventConfigSet) {
|
|
usb_uart_set_config(app->usb_uart_bridge, app->usb_uart_cfg);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void line_ensure_flow_invariant(GpioApp* app) {
|
|
// GPIO pins PC0, PC1 (16,15) are unavailable for RTS/DTR when LPUART is
|
|
// selected. This function enforces that invariant by resetting flow_pins
|
|
// to None if it is configured to 16,15 when LPUART is selected.
|
|
|
|
uint8_t available_flow_pins = app->usb_uart_cfg->uart_ch == FuriHalSerialIdLpuart ? 3 : 4;
|
|
VariableItem* item = app->var_item_flow;
|
|
variable_item_set_values_count(item, available_flow_pins);
|
|
|
|
if(app->usb_uart_cfg->flow_pins >= available_flow_pins) {
|
|
app->usb_uart_cfg->flow_pins = 0;
|
|
|
|
variable_item_set_current_value_index(item, app->usb_uart_cfg->flow_pins);
|
|
variable_item_set_current_value_text(item, flow_pins[app->usb_uart_cfg->flow_pins]);
|
|
}
|
|
}
|
|
|
|
static void line_vcp_cb(VariableItem* item) {
|
|
GpioApp* app = variable_item_get_context(item);
|
|
furi_assert(app);
|
|
uint8_t index = variable_item_get_current_value_index(item);
|
|
|
|
variable_item_set_current_value_text(item, vcp_ch[index]);
|
|
|
|
app->usb_uart_cfg->vcp_ch = index;
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, GpioUsbUartEventConfigSet);
|
|
}
|
|
|
|
static void line_port_cb(VariableItem* item) {
|
|
GpioApp* app = variable_item_get_context(item);
|
|
furi_assert(app);
|
|
uint8_t index = variable_item_get_current_value_index(item);
|
|
|
|
variable_item_set_current_value_text(item, uart_ch[index]);
|
|
|
|
if(index == 0)
|
|
app->usb_uart_cfg->uart_ch = FuriHalSerialIdUsart;
|
|
else if(index == 1)
|
|
app->usb_uart_cfg->uart_ch = FuriHalSerialIdLpuart;
|
|
|
|
line_ensure_flow_invariant(app);
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, GpioUsbUartEventConfigSet);
|
|
}
|
|
|
|
static void line_software_de_re_cb(VariableItem* item) {
|
|
GpioApp* app = variable_item_get_context(item);
|
|
furi_assert(app);
|
|
uint8_t index = variable_item_get_current_value_index(item);
|
|
|
|
variable_item_set_current_value_text(item, software_de_re[index]);
|
|
|
|
app->usb_uart_cfg->software_de_re = index;
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, GpioUsbUartEventConfigSet);
|
|
}
|
|
|
|
static void line_flow_cb(VariableItem* item) {
|
|
GpioApp* app = variable_item_get_context(item);
|
|
furi_assert(app);
|
|
uint8_t index = variable_item_get_current_value_index(item);
|
|
|
|
variable_item_set_current_value_text(item, flow_pins[index]);
|
|
|
|
app->usb_uart_cfg->flow_pins = index;
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, GpioUsbUartEventConfigSet);
|
|
}
|
|
|
|
static void line_baudrate_cb(VariableItem* item) {
|
|
GpioApp* app = variable_item_get_context(item);
|
|
furi_assert(app);
|
|
uint8_t index = variable_item_get_current_value_index(item);
|
|
|
|
char br_text[8];
|
|
|
|
if(index > 0) {
|
|
snprintf(br_text, 7, "%lu", baudrate_list[index - 1]);
|
|
variable_item_set_current_value_text(item, br_text);
|
|
app->usb_uart_cfg->baudrate = baudrate_list[index - 1];
|
|
} else {
|
|
variable_item_set_current_value_text(item, baudrate_mode[index]);
|
|
app->usb_uart_cfg->baudrate = 0;
|
|
}
|
|
app->usb_uart_cfg->baudrate_mode = index;
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, GpioUsbUartEventConfigSet);
|
|
}
|
|
|
|
void gpio_scene_usb_uart_cfg_on_enter(void* context) {
|
|
GpioApp* app = context;
|
|
furi_assert(app);
|
|
VariableItemList* var_item_list = app->var_item_list;
|
|
|
|
app->usb_uart_cfg = malloc(sizeof(UsbUartConfig));
|
|
usb_uart_get_config(app->usb_uart_bridge, app->usb_uart_cfg);
|
|
|
|
VariableItem* item;
|
|
char br_text[8];
|
|
|
|
item = variable_item_list_add(var_item_list, "USB Channel", 2, line_vcp_cb, app);
|
|
variable_item_set_current_value_index(item, app->usb_uart_cfg->vcp_ch);
|
|
variable_item_set_current_value_text(item, vcp_ch[app->usb_uart_cfg->vcp_ch]);
|
|
|
|
item = variable_item_list_add(
|
|
var_item_list,
|
|
"Baudrate",
|
|
sizeof(baudrate_list) / sizeof(baudrate_list[0]) + 1,
|
|
line_baudrate_cb,
|
|
app);
|
|
variable_item_set_current_value_index(item, app->usb_uart_cfg->baudrate_mode);
|
|
if(app->usb_uart_cfg->baudrate_mode > 0) {
|
|
snprintf(br_text, 7, "%lu", baudrate_list[app->usb_uart_cfg->baudrate_mode - 1]);
|
|
variable_item_set_current_value_text(item, br_text);
|
|
} else {
|
|
variable_item_set_current_value_text(
|
|
item, baudrate_mode[app->usb_uart_cfg->baudrate_mode]);
|
|
}
|
|
|
|
item = variable_item_list_add(var_item_list, "UART Pins", 2, line_port_cb, app);
|
|
variable_item_set_current_value_index(item, app->usb_uart_cfg->uart_ch);
|
|
variable_item_set_current_value_text(item, uart_ch[app->usb_uart_cfg->uart_ch]);
|
|
|
|
item = variable_item_list_add(
|
|
var_item_list, "RTS/DTR Pins", COUNT_OF(flow_pins), line_flow_cb, app);
|
|
variable_item_set_current_value_index(item, app->usb_uart_cfg->flow_pins);
|
|
variable_item_set_current_value_text(item, flow_pins[app->usb_uart_cfg->flow_pins]);
|
|
app->var_item_flow = item;
|
|
line_ensure_flow_invariant(app);
|
|
|
|
item = variable_item_list_add(
|
|
var_item_list, "DE/RE Pin", COUNT_OF(software_de_re), line_software_de_re_cb, app);
|
|
variable_item_set_current_value_index(item, app->usb_uart_cfg->software_de_re);
|
|
variable_item_set_current_value_text(item, software_de_re[app->usb_uart_cfg->software_de_re]);
|
|
|
|
variable_item_list_set_selected_item(
|
|
var_item_list, scene_manager_get_scene_state(app->scene_manager, GpioAppViewUsbUartCfg));
|
|
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, GpioAppViewUsbUartCfg);
|
|
}
|
|
|
|
void gpio_scene_usb_uart_cfg_on_exit(void* context) {
|
|
GpioApp* app = context;
|
|
scene_manager_set_scene_state(
|
|
app->scene_manager,
|
|
GpioAppViewUsbUartCfg,
|
|
variable_item_list_get_selected_item_index(app->var_item_list));
|
|
variable_item_list_reset(app->var_item_list);
|
|
free(app->usb_uart_cfg);
|
|
}
|