mbed HRM11017を使ってkonashi.jsでナイトライダー

Dependencies:   BLE_API_Native_IRC mbed

Fork of BLE_RCBController by Junichi Katsu

Embed: (wiki syntax)

« Back to documentation index

app_uart_comm_params_t Struct Reference

app_uart_comm_params_t Struct Reference
[UART module]

UART communication structure holding configuration settings for the peripheral. More...

#include <app_uart.h>

Data Fields

uint8_t rx_pin_no
 RX pin number.
uint8_t tx_pin_no
 TX pin number.
uint8_t rts_pin_no
 RTS pin number, only used if flow control is enabled.
uint8_t cts_pin_no
 CTS pin number, only used if flow control is enabled.
app_uart_flow_control_t flow_control
 Flow control setting, if flow control is used, the system will use low power UART mode, based on CTS signal.
bool use_parity
 Even parity if TRUE, no parity if FALSE.
uint32_t baud_rate
 Baud rate configuration.

Detailed Description

UART communication structure holding configuration settings for the peripheral.

Definition at line 43 of file app_uart.h.


Field Documentation

uint32_t baud_rate

Baud rate configuration.

Definition at line 51 of file app_uart.h.

uint8_t cts_pin_no

CTS pin number, only used if flow control is enabled.

Definition at line 48 of file app_uart.h.

Flow control setting, if flow control is used, the system will use low power UART mode, based on CTS signal.

Definition at line 49 of file app_uart.h.

uint8_t rts_pin_no

RTS pin number, only used if flow control is enabled.

Definition at line 47 of file app_uart.h.

uint8_t rx_pin_no

RX pin number.

Definition at line 45 of file app_uart.h.

uint8_t tx_pin_no

TX pin number.

Definition at line 46 of file app_uart.h.

bool use_parity

Even parity if TRUE, no parity if FALSE.

Definition at line 50 of file app_uart.h.