nrf5/devices: Renaming system.c files for nrf51 and nrf52 to be more explicit on which version of chip they are referring to.

This commit is contained in:
Glenn Ruben Bakke 2017-01-08 13:30:21 +01:00
parent 9214381671
commit 721065b307
3 changed files with 4 additions and 0 deletions

View File

@ -113,6 +113,10 @@ typedef struct {
uint8_t tx_pin; /**< TX pin number. */
uint8_t rts_pin; /**< RTS pin number, only used if flow control is enabled. */
uint8_t cts_pin; /**< CTS pin number, only used if flow control is enabled. */
uint8_t rx_pin_port; /**< RX port number. */
uint8_t tx_pin_port; /**< TX port number. */
uint8_t rts_pin_port; /**< RTS port number, only used if flow control is enabled. */
uint8_t cts_pin_port; /**< CTS port number, only used if flow control is enabled. */
bool 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. */