LTE Cat.1-US click
LTE Cat.1-US click is a Click board™ based on Thales Cinterion® ELS61 wireless module that delivers highly efficient Cat 1 LTE connectivity for M2M IoT solutions offering seamless fall back to 2G and 3G networks. The best in class solution enables M2M optimized speeds of 10Mbit/s download and 5Mbit/s uplink making it ideal for the vast number of M2M and industrial IoT applications that are not dependent on speed but that requires the longevity of LTE networks, while still providing 3G and 2G connectivity to ensure complete population and geographic coverage as LTE rolls out.
click Product page
Click library
- Author : Stefan Ilic
- Date : Jun 2021.
- Type : UART type
Software Support
We provide a library for the LTECat1US Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
Package can be downloaded/installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.
Library Description
This library contains API for LTECat1US Click driver.
Standard key functions :
ltecat1us_cfg_setup
Config Object Initialization function.
void ltecat1us_cfg_setup(ltecat1us_cfg_t *cfg)
LTE Cat.1-US configuration object setup function.
LTE Cat.1-US Click configuration object.
Definition ltecat1us.h:152
ltecat1us_init
Initialization function.
err_t ltecat1us_init(ltecat1us_t *ctx, ltecat1us_cfg_t *cfg)
LTE Cat.1-US initialization function.
LTE Cat.1-US Click context object.
Definition ltecat1us.h:129
Example key functions :
ltecat1us_send_cmd
This function sends the specified command to the click module.
void ltecat1us_send_cmd(ltecat1us_t *ctx, char *cmd)
Send command function.
ltecat1us_send_cmd_with_parameter
This function sends commands to the click module.
void ltecat1us_send_cmd_with_parameter(ltecat1us_t *ctx, char *at_cmd_buf, char *param_buf)
Send command function with parameter.
ltecat1us_send_text_message
This function sends text message to a phone number.
void ltecat1us_send_text_message(ltecat1us_t *ctx, char *phone_number, char *message_context)
LTE Cat.1-US send text message.
Example Description
This example reads and processes data from LTE Cat.1-US clicks.
The demo application is composed of two sections :
Application Init
Initializes driver and wake-up module and sets default configuration for connecting device to network.
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
Delay_ms ( 1000 );
if ( init_flag == UART_ERROR ) {
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
log_info( &logger, " Power on device... " );
ltecat1us_error_check( app_error_flag );
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 500 );
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 500 );
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 500 );
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 500 );
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 500 );
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 500 );
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 500 );
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 500 );
app_buf_len = 0;
app_buf_cnt = 0;
log_info( &logger, " Application Task " );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
#define LTECAT1US_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition ltecat1us.h:113
#define LTECAT1US_CMD_CFUN
Definition ltecat1us.h:78
#define LTECAT1US_CMD_CEREG
Definition ltecat1us.h:80
#define LTECAT1US_CMD_COPS
Definition ltecat1us.h:86
#define LTECAT1US_CMD_ATI
Definition ltecat1us.h:75
#define LTECAT1US_CMD_AT
LTE Cat.1-US description setting.
Definition ltecat1us.h:74
#define LTECAT1US_CMD_CGMR
Definition ltecat1us.h:76
#define LTECAT1US_CMD_CIMI
Definition ltecat1us.h:82
void ltecat1us_set_sim_apn(ltecat1us_t *ctx, char *sim_apn)
Set sim card APN.
void ltecat1us_power_on(ltecat1us_t *ctx)
LTE Cat.1-US module power on.
#define RSP_SYSSTART
Definition main.c:46
void application_init(void)
Definition main.c:123
#define SIM_APN
Definition main.c:49
#define WAIT_FOR_CONNECTION
Definition main.c:55
#define RSP_OK
Definition main.c:45
Application Task
Waits for device to connect to network and then sends SMS to selected phone number.
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 500 );
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 500 );
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
} else {
log_info( &logger, "CONNECTED TO NETWORK" );
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
for( ; ; ) {
log_printf( &logger, "> Sending message to phone number...\r\n" );
app_error_flag = ltecat1us_rsp_check(
RSP_OK );
ltecat1us_error_check( app_error_flag );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
}
}
#define LTECAT1US_CMD_CSQ
Definition ltecat1us.h:84
#define LTECAT1US_CMD_CGATT
Definition ltecat1us.h:83
void ltecat1us_send_cmd_check(ltecat1us_t *ctx, char *at_cmd_buf)
Check the sent command.
void application_task(void)
Definition main.c:227
#define PHONE_NUMBER_TO_MESSAGE
Definition main.c:50
#define MESSAGE_CONTENT
Definition main.c:51
Note
In order for the example to work, user needs to set the phone number and sim apn to which he wants to send an SMS Enter valid data for the following macros: SIM_APN and PHONE_NUMBER_TO_MESSAGE.
E.g.
- SIM_APN "vipmobile"
- PHONE_NUMBER_TO_MESSAGE "+381659999999"
The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.
Other Mikroe Libraries used in the example:
- MikroSDK.Board
- MikroSDK.Log
- Click.LTECat1US
Additional notes and informations
Depending on the development board you are using, you may need USB UART click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. UART terminal is available in all MikroElektronika compilers.