BusVoodoo UART mode (code)
More...
Go to the source code of this file.
|
enum | busvoodoo_uart_setting_t {
BUSVOODOO_UART_SETTING_NONE,
BUSVOODOO_UART_SETTING_BAUDRATE,
BUSVOODOO_UART_SETTING_DATABITS,
BUSVOODOO_UART_SETTING_PARITY,
BUSVOODOO_UART_SETTING_STOPBITS,
BUSVOODOO_UART_SETTING_HWFLOWCTL,
BUSVOODOO_UART_SETTING_DRIVE,
BUSVOODOO_UART_SETTING_DONE
} |
| mode setup stage
|
|
◆ busvoodoo_uart_action()
static bool busvoodoo_uart_action |
( |
const char * |
action, |
|
|
uint32_t |
repetition, |
|
|
bool |
perform |
|
) |
| |
|
static |
perform UART action
- Parameters
-
[in] | action | action to perform |
[in] | repetition | how many times to perform the action |
[in] | perform | the action (true) or just check it (false) |
- Returns
- true if the action has been performed, false if it is malformed
Definition at line 367 of file busvoodoo_uart.c.
◆ busvoodoo_uart_command_actions()
static void busvoodoo_uart_command_actions |
( |
void * |
argument | ) |
|
|
static |
command to perform actions
- Parameters
-
[in] | argument | actions to perform |
Definition at line 468 of file busvoodoo_uart.c.
◆ busvoodoo_uart_command_error()
static void busvoodoo_uart_command_error |
( |
void * |
argument | ) |
|
|
static |
command to verify incoming transmission for error
- Parameters
-
[in] | argument | argument not required |
Definition at line 632 of file busvoodoo_uart.c.
◆ busvoodoo_uart_command_receive()
static void busvoodoo_uart_command_receive |
( |
void * |
argument | ) |
|
|
static |
command to receive data
- Parameters
-
[in] | argument | in which format to display |
Definition at line 529 of file busvoodoo_uart.c.
◆ busvoodoo_uart_command_transceive()
static void busvoodoo_uart_command_transceive |
( |
void * |
argument | ) |
|
|
static |
command to transmit and receive data
- Parameters
-
[in] | argument | no argument required |
Definition at line 594 of file busvoodoo_uart.c.
◆ busvoodoo_uart_command_transmit()
static void busvoodoo_uart_command_transmit |
( |
void * |
argument | ) |
|
|
static |
command to transmit a string
- Parameters
-
[in] | argument | string to transmit (CR+LF when none provided) |
Definition at line 504 of file busvoodoo_uart.c.
◆ busvoodoo_uart_setup()
static bool busvoodoo_uart_setup |
( |
char ** |
prefix, |
|
|
const char * |
line |
|
) |
| |
|
static |
setup UART mode
- Parameters
-
[out] | prefix | terminal prompt prefix |
[in] | line | terminal prompt line to configure mode |
- Returns
- if setup is complete
Definition at line 76 of file busvoodoo_uart.c.
◆ busvoodoo_uart_write()
static void busvoodoo_uart_write |
( |
uint16_t |
value | ) |
|
|
static |
◆ busvoodoo_uart_mode
Initial value:= {
.name = "uart",
.description = "Universal Asynchronous Receiver-Transmitter",
.full_only = false,
}
static bool busvoodoo_uart_setup(char **prefix, const char *line)
setup UART mode
static const struct menu_command_t busvoodoo_uart_commands[]
UART menu commands.
#define LENGTH(x)
get the length of an array
static void busvoodoo_uart_exit(void)
exit UART mode
UART mode interface definition.
Definition at line 686 of file busvoodoo_uart.c.