c4glteatt 2.0.0.0
|
API for configuring and manipulating 4G LTE-ATT Click driver. More...
Topics | |
4G LTE-ATT Device Settings | |
Settings for registers of 4G LTE-ATT Click driver. | |
4G LTE-ATT MikroBUS Map | |
MikroBUS pin mapping of 4G LTE-ATT Click driver. | |
Functions | |
void | c4glteatt_cfg_setup (c4glteatt_cfg_t *cfg) |
4G LTE-ATT configuration object setup function. | |
err_t | c4glteatt_init (c4glteatt_t *ctx, c4glteatt_cfg_t *cfg) |
4G LTE-ATT initialization function. | |
void | c4glteatt_module_power_on (c4glteatt_t *ctx) |
Power ON the module function. | |
err_t | c4glteatt_generic_write (c4glteatt_t *ctx, char *data_buf, uint16_t len) |
4G LTE-ATT data writing function. | |
err_t | c4glteatt_generic_read (c4glteatt_t *ctx, char *data_buf, uint16_t max_len) |
4G LTE-ATT data reading function. | |
void | c4glteatt_set_rts_pin (c4glteatt_t *ctx, uint8_t state) |
Sets state of the RTS pin. | |
void | c4glteatt_set_pwk_pin (c4glteatt_t *ctx, uint8_t state) |
Sets state of the PWK pin. | |
uint8_t | c4glteatt_get_cts_pin (c4glteatt_t *ctx) |
CTS Pin Get function. | |
uint8_t | c4glteatt_get_sta_pin (c4glteatt_t *ctx) |
STA Pin Get function. | |
uint8_t | c4glteatt_get_ring_pin (c4glteatt_t *ctx) |
RING Pin Get function. | |
void | c4glteatt_send_cmd (c4glteatt_t *ctx, char *cmd) |
Send command function. | |
void | c4glteatt_send_cmd_with_parameter (c4glteatt_t *ctx, char *at_cmd_buf, char *param_buf) |
Send command function with parameter. | |
void | c4glteatt_send_cmd_check (c4glteatt_t *ctx, char *at_cmd_buf) |
Check the sent command. | |
void | c4glteatt_send_cmd_parameter_check (c4glteatt_t *ctx, char *at_cmd_buf) |
Check the command parameters. | |
void | c4glteatt_set_sim_apn (c4glteatt_t *ctx, char *sim_apn) |
Set sim card APN. | |
void | c4glteatt_send_sms_text (c4glteatt_t *ctx, char *phone_number, char *sms_text) |
4G LTE-ATT send SMS in text mode. | |
err_t | c4glteatt_send_sms_pdu (c4glteatt_t *ctx, char *service_center_number, char *phone_number, char *sms_text) |
4G LTE-ATT send SMS in PDU mode. | |
API for configuring and manipulating 4G LTE-ATT Click driver.
Any initialization code needed for MCU to function properly. Do not remove this line or clock might not be set correctly.
void c4glteatt_cfg_setup | ( | c4glteatt_cfg_t * | cfg | ) |
4G LTE-ATT configuration object setup function.
This function initializes click configuration structure to initial values.
[out] | cfg | : Click configuration structure. See c4glteatt_cfg_t object definition for detailed explanation. |
err_t c4glteatt_generic_read | ( | c4glteatt_t * | ctx, |
char * | data_buf, | ||
uint16_t | max_len ) |
4G LTE-ATT data reading function.
This function reads a desired number of data bytes by using UART serial interface.
[in] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
[out] | data_buf | : Output read data. |
[in] | max_len | : Number of bytes to be read. |
>0
- Number of data bytes read, <=0
- Error/Empty Ring buffer.err_t c4glteatt_generic_write | ( | c4glteatt_t * | ctx, |
char * | data_buf, | ||
uint16_t | len ) |
4G LTE-ATT data writing function.
This function writes a desired number of data bytes by using UART serial interface.
[in] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
[in] | data_buf | : Data buffer for sending. |
[in] | len | : Number of bytes for sending. |
>=0
- Success, <0
- Error.uint8_t c4glteatt_get_cts_pin | ( | c4glteatt_t * | ctx | ) |
CTS Pin Get function.
This function allows user to check state of the CTS pin.
[in] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
0
logical low. 1
logical high. uint8_t c4glteatt_get_ring_pin | ( | c4glteatt_t * | ctx | ) |
RING Pin Get function.
This function allows user to check state of the RING pin.
[in] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
0
logical low. 1
logical high. uint8_t c4glteatt_get_sta_pin | ( | c4glteatt_t * | ctx | ) |
STA Pin Get function.
This function allows user to check state of the STA pin.
[in] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
0
logical low. 1
logical high. err_t c4glteatt_init | ( | c4glteatt_t * | ctx, |
c4glteatt_cfg_t * | cfg ) |
4G LTE-ATT initialization function.
This function initializes all necessary pins and peripherals used for this click board.
[out] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
[in] | cfg | : Click configuration structure. See c4glteatt_cfg_t object definition for detailed explanation. |
0
- Success, -1
- Error.void c4glteatt_module_power_on | ( | c4glteatt_t * | ctx | ) |
Power ON the module function.
This function powers ON the module.
[out] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
void c4glteatt_send_cmd | ( | c4glteatt_t * | ctx, |
char * | cmd ) |
Send command function.
This function sends a specified command to the click module.
[in] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
[in] | cmd | Command variable. |
void c4glteatt_send_cmd_check | ( | c4glteatt_t * | ctx, |
char * | at_cmd_buf ) |
Check the sent command.
This function checks the command that is sent.
[in] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
[in] | at_cmd_buf | Command buffer. |
void c4glteatt_send_cmd_parameter_check | ( | c4glteatt_t * | ctx, |
char * | at_cmd_buf ) |
Check the command parameters.
This function checks the command that is sent.
[in] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
[in] | at_cmd_buf | Command buffer. |
void c4glteatt_send_cmd_with_parameter | ( | c4glteatt_t * | ctx, |
char * | at_cmd_buf, | ||
char * | 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 c4glteatt_t object definition for detailed explanation. |
[in] | at_cmd_buf | Command buffer. |
[in] | param_buf | Parameter buffer. |
err_t c4glteatt_send_sms_pdu | ( | c4glteatt_t * | ctx, |
char * | service_center_number, | ||
char * | phone_number, | ||
char * | sms_text ) |
4G LTE-ATT send SMS in PDU mode.
This function sends text message to a phone number in PDU mode.
[in] | ctx | : Click context object. See c4glteatt_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 c4glteatt_send_sms_text | ( | c4glteatt_t * | ctx, |
char * | phone_number, | ||
char * | sms_text ) |
4G LTE-ATT send SMS in text mode.
This function sends text message to a phone number.
[in] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
[in] | phone_number | Phone number to message. |
[in] | sms_text | Message to be sent. |
void c4glteatt_set_pwk_pin | ( | c4glteatt_t * | ctx, |
uint8_t | state ) |
Sets state of the PWK pin.
This function sets PWK pin state.
[in] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
[in] | state | Pin state ( 1 or 0 ). |
void c4glteatt_set_rts_pin | ( | c4glteatt_t * | ctx, |
uint8_t | state ) |
Sets state of the RTS pin.
This function sets RTS pin state.
[in] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
[in] | state | Pin state ( 1 or 0 ). |
void c4glteatt_set_sim_apn | ( | c4glteatt_t * | ctx, |
char * | sim_apn ) |
Set sim card APN.
This function sets APN for sim card.
[in] | ctx | : Click context object. See c4glteatt_t object definition for detailed explanation. |
[in] | sim_apn | SIM card APN. |