Serial UART Communication#
This API contains the HAL interfaces that applications must implement for the high-level serial code.
This header describes the interface between the high-level serial APIs in serial/serial.h and the low level UART implementation.
Some functions in this file return an EmberStatus value. See error-def.h for definitions of all EmberStatus return values.
See hal/micro/serial.h for source code.
Serial Mode Definitions#
These are numerical definitions for the possible serial modes so that code can test for the one being used. There may be additional modes defined in the micro-specific micro.h.
A numerical definition for a possible serial mode the code can test for.
A numerical definition for a possible serial mode the code can test for.
A numerical definition for a possible serial mode the code can test for.
FIFO Utility Macros#
These macros manipulate the FIFO queue data structures to add and remove data.
Macro that enqueues a byte of data in a FIFO queue.
Macro that de-queues a byte of data from a FIFO queue.
Serial HAL APIs#
These functions must be implemented by the HAL in order for the serial code to operate. Only the higher-level serial code uses these functions, so they should not be called directly. The HAL should also implement the appropriate interrupt handlers to drain the TX queues and fill the RX FIFO queue.
Initializes the UART to the given settings (same parameters as ::emberSerialInit() ).
This function is typically called by halPowerDown() and it is responsible for performing all the work internal to the UART needed to stop the UART before a sleep cycle.
This function is typically called by halPowerUp() and it is responsible for performing all the work internal to the UART needed to restart the UART after a sleep cycle.
Called by serial code whenever anything is queued for transmission to start any interrupt-driven transmission. May be called when transmission is already in progess.
Called by serial code to stop any interrupt-driven serial transmission currently in progress.
Directly writes a byte to the UART for transmission, regardless of anything currently queued for transmission. Should wait for anything currently in the UART hardware registers to finish transmission first, and block until data
is finished being sent.
Directly reads a byte from the UART for reception, regardless of anything currently queued for reception. Does not block if a data byte has not been received.
Blocks until the UART has finished transmitting any data in its hardware registers.
This function is typically called by ::halInternalPowerUpBoard() and it is responsible for performing all the work internal to the UART needed to restart the UART after a sleep cycle. (For example, resyncing the DMA hardware and the serial FIFO.)
Checks to see if the host is allowed to send serial data to the ncp - i.e., it is not being held off by nCTS or an XOFF. Returns true is the host is able to send.
When Xon/Xoff flow control is used, returns true if the host is not being held off and XON refreshing is complete.
Returns true if the uart transmitter is idle, including the transmit shift register.
Testing function implemented by the upper layer. Determines whether the next packet should be dropped. Returns true if the next packet should be dropped, false otherwise.
This function is used in FIFO mode when flow control is enabled. It is called from emberSerialReadByte(), and based on the number of bytes used in the uart receive queue, decides when to tell the host it may resume transmission.
This function exists only in software UART (SOFTUART) mode on the EM3xx. This function is called by ::emberSerialReadByte(). It is responsible for maintaining synchronization between the emSerialRxQueue and the UART DMA.
This function is used in FIFO mode when flow control is enabled. It is called from emberSerialReadByte(), and based on the number of bytes used in the uart receive queue, decides when to tell the host it may resume transmission.
This function is used in FIFO mode when flow control is enabled. It is called from emberSerialReadByte(), and based on the number of bytes used in the uart receive queue, decides when to tell the host it may resume transmission.
This function is used in FIFO mode when flow control is enabled. It is called from emberSerialReadByte(), and based on the number of bytes used in the uart receive queue, decides when to tell the host it may resume transmission.
Virtual UART API#
API used by the stack in debug builds to receive data arriving over the virtual UART.
When using a debug build with virtual UART support, this API is called by the stack when virtual UART data has been received over the debug channel.
Enumerations#
Assign numerical values for variables that hold Baud Rate parameters.
CORTEXM3_EFM32_MICRO.
Functions#
Serial Mode Definitions Documentation#
EMBER_SERIAL_UNUSED#
#define EMBER_SERIAL_UNUSEDValue:
0
A numerical definition for a possible serial mode the code can test for.
95
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
EMBER_SERIAL_FIFO#
#define EMBER_SERIAL_FIFOValue:
1
A numerical definition for a possible serial mode the code can test for.
96
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
EMBER_SERIAL_LOWLEVEL#
#define EMBER_SERIAL_LOWLEVELValue:
2
A numerical definition for a possible serial mode the code can test for.
97
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
FIFO Utility Macros Documentation#
FIFO_ENQUEUE#
#define FIFO_ENQUEUEValue:
Macro that enqueues a byte of data in a FIFO queue.
276
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
FIFO_DEQUEUE#
#define FIFO_DEQUEUEValue:
Macro that de-queues a byte of data from a FIFO queue.
291
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
Serial HAL APIs Documentation#
halInternalUartInit#
EmberStatus halInternalUartInit (uint8_t port, SerialBaudRate rate, SerialParity parity, uint8_t stopBits)
Initializes the UART to the given settings (same parameters as ::emberSerialInit() ).
N/A | port | Serial port number (0 or 1). |
N/A | rate | Baud rate (see SerialBaudRate). |
N/A | parity | Parity value (see SerialParity). |
N/A | stopBits | Number of stop bits. |
Returns
An error code if initialization failed (such as invalid baud rate), otherise EMBER_SUCCESS.
414
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalPowerDownUart#
void halInternalPowerDownUart (void )
This function is typically called by halPowerDown() and it is responsible for performing all the work internal to the UART needed to stop the UART before a sleep cycle.
N/A |
423
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalPowerUpUart#
void halInternalPowerUpUart (void )
This function is typically called by halPowerUp() and it is responsible for performing all the work internal to the UART needed to restart the UART after a sleep cycle.
N/A |
429
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalStartUartTx#
void halInternalStartUartTx (uint8_t port)
Called by serial code whenever anything is queued for transmission to start any interrupt-driven transmission. May be called when transmission is already in progess.
N/A | port | Serial port number (0 or 1). |
437
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalStopUartTx#
void halInternalStopUartTx (uint8_t port)
Called by serial code to stop any interrupt-driven serial transmission currently in progress.
N/A | port | Serial port number (0 or 1). |
444
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalForceWriteUartData#
EmberStatus halInternalForceWriteUartData (uint8_t port, uint8_t * data, uint8_t length)
Directly writes a byte to the UART for transmission, regardless of anything currently queued for transmission. Should wait for anything currently in the UART hardware registers to finish transmission first, and block until data
is finished being sent.
N/A | port | Serial port number (0 or 1). |
N/A | data | Pointer to the data to be transmitted. |
N/A | length | The length of data to be transmitted |
457
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalForceReadUartByte#
EmberStatus halInternalForceReadUartByte (uint8_t port, uint8_t * dataByte)
Directly reads a byte from the UART for reception, regardless of anything currently queued for reception. Does not block if a data byte has not been received.
N/A | port | Serial port number (0 or 1). |
N/A | dataByte | The byte to receive data into. |
467
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalWaitUartTxComplete#
void halInternalWaitUartTxComplete (uint8_t port)
Blocks until the UART has finished transmitting any data in its hardware registers.
N/A | port | Serial port number (0 or 1). |
474
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalRestartUart#
void halInternalRestartUart (void )
This function is typically called by ::halInternalPowerUpBoard() and it is responsible for performing all the work internal to the UART needed to restart the UART after a sleep cycle. (For example, resyncing the DMA hardware and the serial FIFO.)
N/A |
511
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalUartFlowControlRxIsEnabled#
bool halInternalUartFlowControlRxIsEnabled (uint8_t port)
Checks to see if the host is allowed to send serial data to the ncp - i.e., it is not being held off by nCTS or an XOFF. Returns true is the host is able to send.
N/A | port |
518
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalUartXonRefreshDone#
bool halInternalUartXonRefreshDone (uint8_t port)
When Xon/Xoff flow control is used, returns true if the host is not being held off and XON refreshing is complete.
N/A | port |
530
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalUartTxIsIdle#
bool halInternalUartTxIsIdle (uint8_t port)
Returns true if the uart transmitter is idle, including the transmit shift register.
N/A | port |
542
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
serialDropPacket#
bool serialDropPacket (void )
Testing function implemented by the upper layer. Determines whether the next packet should be dropped. Returns true if the next packet should be dropped, false otherwise.
N/A |
552
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalUartFlowControl#
#define halInternalUartFlowControlValue:
(port)
This function is used in FIFO mode when flow control is enabled. It is called from emberSerialReadByte(), and based on the number of bytes used in the uart receive queue, decides when to tell the host it may resume transmission.
489
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalUartRxPump#
#define halInternalUartRxPumpValue:
(port)
This function exists only in software UART (SOFTUART) mode on the EM3xx. This function is called by ::emberSerialReadByte(). It is responsible for maintaining synchronization between the emSerialRxQueue and the UART DMA.
503
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalUart1FlowControlRxIsEnabled#
#define halInternalUart1FlowControlRxIsEnabledValue:
()
This function is used in FIFO mode when flow control is enabled. It is called from emberSerialReadByte(), and based on the number of bytes used in the uart receive queue, decides when to tell the host it may resume transmission.
521
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalUart1XonRefreshDone#
#define halInternalUart1XonRefreshDoneValue:
()
This function is used in FIFO mode when flow control is enabled. It is called from emberSerialReadByte(), and based on the number of bytes used in the uart receive queue, decides when to tell the host it may resume transmission.
533
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halInternalUart1TxIsIdle#
#define halInternalUart1TxIsIdleValue:
()
This function is used in FIFO mode when flow control is enabled. It is called from emberSerialReadByte(), and based on the number of bytes used in the uart receive queue, decides when to tell the host it may resume transmission.
546
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
Virtual UART API Documentation#
halStackReceiveVuartMessage#
void halStackReceiveVuartMessage (uint8_t * data, uint8_t length)
When using a debug build with virtual UART support, this API is called by the stack when virtual UART data has been received over the debug channel.
N/A | data | Pointer to the the data received |
N/A | length | Length of the data received |
579
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
Enumeration Documentation#
SerialBaudRate#
SerialBaudRate
Assign numerical values for variables that hold Baud Rate parameters.
Enumerator | |
---|---|
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD | |
DEFINE_BAUD |
304
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
SerialParity#
SerialParity
CORTEXM3_EFM32_MICRO.
Assign numerical values for the types of parity. Use for variables that hold Parity parameters.
Enumerator | |
---|---|
DEFINE_PARITY | |
DEFINE_PARITY | |
DEFINE_PARITY |
374
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
Function Documentation#
halHostFlushBuffers#
void halHostFlushBuffers (void )
N/A |
590
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halHostEnqueueTx#
uint16_t halHostEnqueueTx (const uint8_t * data, uint16_t length)
N/A | data | |
N/A | length |
591
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
halHostFlushTx#
void halHostFlushTx (void )
N/A |
592
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
serialCopyFromRx#
uint16_t serialCopyFromRx (const uint8_t * data, uint16_t length)
N/A | data | |
N/A | length |
595
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h
emLoadSerialTx#
void emLoadSerialTx (void )
N/A |
598
of file /Users/vihuszar/Git/EmbeddedSoftware/super/platform/base/hal/micro/serial.h