nbiot5 2.0.0.0
|
API for configuring and manipulating NB IoT 5 Click driver. More...
Topics | |
NB IoT 5 Device Settings | |
Settings for registers of NB IoT 5 Click driver. | |
NB IoT 5 MikroBUS Map | |
MikroBUS pin mapping of NB IoT 5 Click driver. | |
Functions | |
void | nbiot5_cfg_setup (nbiot5_cfg_t *cfg) |
NB IoT 5 configuration object setup function. | |
err_t | nbiot5_init (nbiot5_t *ctx, nbiot5_cfg_t *cfg) |
NB IoT 5 initialization function. | |
err_t | nbiot5_generic_write (nbiot5_t *ctx, uint8_t *data_in, uint16_t len) |
NB IoT 5 data writing function. | |
err_t | nbiot5_generic_read (nbiot5_t *ctx, uint8_t *data_out, uint16_t len) |
NB IoT 5 data reading function. | |
void | nbiot5_set_rst_pin (nbiot5_t *ctx, uint8_t state) |
NB IoT 5 set rst pin function. | |
void | nbiot5_set_cs_pin (nbiot5_t *ctx, uint8_t state) |
NB IoT 5 set cs pin function. | |
void | nbiot5_set_wup_pin (nbiot5_t *ctx, uint8_t state) |
NB IoT 5 set wup pin function. | |
void | nbiot5_set_en_pin (nbiot5_t *ctx, uint8_t state) |
NB IoT 5 set en pin function. | |
void | nbiot5_send_cmd (nbiot5_t *ctx, uint8_t *cmd) |
Send command function. | |
void | nbiot5_send_cmd_with_par (nbiot5_t *ctx, uint8_t *at_cmd_buf, uint8_t *param_buf) |
Send command function with parameter. | |
void | nbiot5_send_cmd_check (nbiot5_t *ctx, uint8_t *at_cmd_buf) |
Check the sent command. | |
void | nbiot5_send_cmd_par_check (nbiot5_t *ctx, uint8_t *at_cmd_buf) |
Check the command parameters. | |
void | nbiot5_set_sim_apn (nbiot5_t *ctx, uint8_t *sim_apn) |
Set sim card APN. | |
void | nbiot5_send_sms_text (nbiot5_t *ctx, uint8_t *phone_number, uint8_t *sms_text) |
NB IoT 5 send SMS in text mode. | |
err_t | nbiot5_send_sms_pdu (nbiot5_t *ctx, uint8_t *service_center_number, uint8_t *phone_number, uint8_t *sms_text) |
NB IoT 5 send SMS in PDU mode. | |
API for configuring and manipulating NB IoT 5 Click driver.
Any initialization code needed for MCU to function properly. Do not remove this line or clock might not be set correctly.
void nbiot5_cfg_setup | ( | nbiot5_cfg_t * | cfg | ) |
NB IoT 5 configuration object setup function.
This function initializes click configuration structure to initial values.
[out] | cfg | : Click configuration structure. See nbiot5_cfg_t object definition for detailed explanation. |
err_t nbiot5_generic_read | ( | nbiot5_t * | ctx, |
uint8_t * | data_out, | ||
uint16_t | len ) |
NB IoT 5 data reading function.
This function reads a desired number of data bytes by using UART serial interface.
[in] | ctx | : Click context object. See nbiot5_t object definition for detailed explanation. |
[out] | data_out | : Output read data. |
[in] | len | : Number of bytes to be read. |
>0
- Number of data bytes read, <=0
- Error/Empty Ring buffer. See #err_t definition for detailed explanation. err_t nbiot5_generic_write | ( | nbiot5_t * | ctx, |
uint8_t * | data_in, | ||
uint16_t | len ) |
NB IoT 5 data writing function.
This function writes a desired number of data bytes by using UART serial interface.
[in] | ctx | : Click context object. See nbiot5_t object definition for detailed explanation. |
[in] | data_in | : Data buffer for sending. |
[in] | len | : Number of bytes for sending. |
>=0
- Success, <0
- Error. See #err_t definition for detailed explanation. err_t nbiot5_init | ( | nbiot5_t * | ctx, |
nbiot5_cfg_t * | cfg ) |
NB IoT 5 initialization function.
This function initializes all necessary pins and peripherals used for this click board.
[out] | ctx | : Click context object. See nbiot5_t object definition for detailed explanation. |
[in] | cfg | : Click configuration structure. See nbiot5_cfg_t object definition for detailed explanation. |
0
- Success, -1
- Error. See #err_t definition for detailed explanation. void nbiot5_send_cmd | ( | nbiot5_t * | ctx, |
uint8_t * | cmd ) |
Send command function.
This function sends a specified command to the click module.
[in] | ctx | : Click context object. See nbiot5_t object definition for detailed explanation. |
[in] | cmd | : Command variable. |
void nbiot5_send_cmd_check | ( | nbiot5_t * | ctx, |
uint8_t * | at_cmd_buf ) |
Check the sent command.
This function checks the command that is sent.
[in] | ctx | : Click context object. See nbiot5_t object definition for detailed explanation. |
[in] | at_cmd_buf | : Command buffer. |
void nbiot5_send_cmd_par_check | ( | nbiot5_t * | ctx, |
uint8_t * | at_cmd_buf ) |
Check the command parameters.
This function checks the command that is sent.
[in] | ctx | : Click context object. See nbiot5_t object definition for detailed explanation. |
[in] | at_cmd_buf | : Command buffer. |
void nbiot5_send_cmd_with_par | ( | nbiot5_t * | ctx, |
uint8_t * | at_cmd_buf, | ||
uint8_t * | param_buf ) |
Send command function with parameter.
This function sends a command with specified parameter to the click module.
[in] | ctx | : Click context object. See nbiot5_t object definition for detailed explanation. |
[in] | at_cmd_buf | : Command buffer. |
[in] | param_buf | : Parameter buffer. |
err_t nbiot5_send_sms_pdu | ( | nbiot5_t * | ctx, |
uint8_t * | service_center_number, | ||
uint8_t * | phone_number, | ||
uint8_t * | sms_text ) |
NB IoT 5 send SMS in PDU mode.
This function sends text message to a phone number in PDU mode.
[in] | ctx | : Click context object. See nbiot5_t object definition for detailed explanation. |
[in] | service_center_number | : SMSC of the SIM card. |
[in] | phone_number | : Phone number to message. |
[in] | sms_text | : Message to be sent. |
>=0
- Success, <0
- Error. See #err_t definition for detailed explanation. void nbiot5_send_sms_text | ( | nbiot5_t * | ctx, |
uint8_t * | phone_number, | ||
uint8_t * | sms_text ) |
NB IoT 5 send SMS in text mode.
This function sends text message to a phone number.
[in] | ctx | : Click context object. See nbiot5_t object definition for detailed explanation. |
[in] | phone_number | : Phone number to message. |
[in] | sms_text | : Message to be sent. |
void nbiot5_set_cs_pin | ( | nbiot5_t * | ctx, |
uint8_t | state ) |
NB IoT 5 set cs pin function.
This function sets the SPI chip select (CS) pin logic state.
[in] | ctx | : Click context object. See nbiot5_t object definition for detailed explanation. |
[in] | state | : Pin logic state. |
void nbiot5_set_en_pin | ( | nbiot5_t * | ctx, |
uint8_t | state ) |
NB IoT 5 set en pin function.
This function sets the enable (EN) pin logic state.
[in] | ctx | : Click context object. See nbiot5_t object definition for detailed explanation. |
[in] | state | : Pin logic state. |
void nbiot5_set_rst_pin | ( | nbiot5_t * | ctx, |
uint8_t | state ) |
NB IoT 5 set rst pin function.
This function sets the RESET pin logic state.
[in] | ctx | : Click context object. See nbiot5_t object definition for detailed explanation. |
[in] | state | : Pin logic state. |
void nbiot5_set_sim_apn | ( | nbiot5_t * | ctx, |
uint8_t * | sim_apn ) |
Set sim card APN.
This function sets APN for sim card.
[in] | ctx | : Click context object. See nbiot5_t object definition for detailed explanation. |
[in] | sim_apn | : SIM card APN. |