Starts CSI data reception.
Remarks 1. | This API function performs byte-level CSI reception the number of times specified by the argument rx_num, and stores the data in the buffer specified by the argument rx_buf. |
Remarks 2. | When performing a CSI reception, R_CSImn_Start must be called before this API function is called. |
[Syntax]
#include "r_cg_macrodriver.h"
MD_STATUS R_CSImn_Receive ( uint8_t * const rx_buf, uint16_t rx_num );
|
Remark | m is the unit number, and n is the channel number. |
[Argument(s)]
|
|
|
|
uint8_t * const rx_buf;
|
Pointer to a buffer to store the received data
|
|
uint16_t rx_num;
|
Total amount of data to receive
|
[Return value]
|
|
MD_OK
|
Normal completion
|
MD_ARGERROR
|
Invalid argument specification
|