c5gnbiot  2.0.0.0
c5gnbiot.h
Go to the documentation of this file.
1 /*
2  * MikroSDK - MikroE Software Development Kit
3  * Copyright© 2020 MikroElektronika d.o.o.
4  *
5  * Permission is hereby granted, free of charge, to any person
6  * obtaining a copy of this software and associated documentation
7  * files (the "Software"), to deal in the Software without restriction,
8  * including without limitation the rights to use, copy, modify, merge,
9  * publish, distribute, sublicense, and/or sell copies of the Software,
10  * and to permit persons to whom the Software is furnished to do so,
11  * subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be
14  * included in all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
20  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
22  * OR OTHER DEALINGS IN THE SOFTWARE.
23  */
24 
33 // ----------------------------------------------------------------------------
34 
35 #ifndef C5GNBIOT_H
36 #define C5GNBIOT_H
37 
42 #ifdef PREINIT_SUPPORTED
43 #include "preinit.h"
44 #endif
45 
46 #ifdef MikroCCoreVersion
47  #if MikroCCoreVersion >= 1
48  #include "delays.h"
49  #endif
50 #endif
51 
52 #include "drv_digital_out.h"
53 #include "drv_digital_in.h"
54 #include "drv_uart.h"
55 
56 
57 // -------------------------------------------------------------- PUBLIC MACROS
67 #define C5GNBIOT_MAP_MIKROBUS( cfg, mikrobus ) \
68  cfg.tx_pin = MIKROBUS( mikrobus, MIKROBUS_TX ); \
69  cfg.rx_pin = MIKROBUS( mikrobus, MIKROBUS_RX ); \
70  cfg.on = MIKROBUS( mikrobus, MIKROBUS_RST ); \
71  cfg.cts = MIKROBUS( mikrobus, MIKROBUS_CS ); \
72  cfg.rts = MIKROBUS( mikrobus, MIKROBUS_INT )
73 
79 #define C5GNBIOT_MODULE_POWER_ON 1
80 #define C5GNBIOT_MODULE_POWER_OFF 0
81 
87 #define C5GNBIOT_CMD_AT "AT"
88 #define C5GNBIOT_CMD_ATI "ATI"
89 #define C5GNBIOT_CMD_CGMR "AT+CGMR"
90 
91 #define C5GNBIOT_CMD_CFUN "AT+CFUN"
92 #define C5GNBIOT_CMD_CREG "AT+CREG"
93 #define C5GNBIOT_CMD_CEREG "AT+CEREG"
94 #define C5GNBIOT_CMD_CGDCONT "AT+CGDCONT"
95 #define C5GNBIOT_CMD_CIMI "AT+CIMI"
96 #define C5GNBIOT_CMD_CGATT "AT+CGATT"
97 #define C5GNBIOT_CMD_CESQ "AT+CESQ"
98 #define C5GNBIOT_CMD_COPS "AT+COPS"
99 #define C5GNBIOT_CMD_CMGS "AT+CMGS"
100 
106 #define DRV_RX_BUFFER_SIZE 300
107 #define DRV_TX_BUFFER_SIZE 300
108  // End group macro
111 // --------------------------------------------------------------- PUBLIC TYPES
119 typedef struct
120 {
121  // Output pins
122 
123  digital_out_t on;
124  digital_out_t rts;
125 
126  // Input pins
127 
128  digital_in_t cts;
129 
130  // Modules
131 
132  uart_t uart;
133 
134  char uart_rx_buffer[ DRV_RX_BUFFER_SIZE ];
135  char uart_tx_buffer[ DRV_TX_BUFFER_SIZE ];
136 
137 } c5gnbiot_t;
138 
142 typedef struct
143 {
144  // Communication gpio pins
145 
146  pin_name_t rx_pin;
147  pin_name_t tx_pin;
148 
149  // Additional gpio pins
150 
151  pin_name_t on;
152  pin_name_t cts;
153  pin_name_t rts;
154 
155  // static variable
156 
157  uint32_t baud_rate; // Clock speed.
159  uart_data_bits_t data_bit; // Data bits.
160  uart_parity_t parity_bit; // Parity bit.
161  uart_stop_bits_t stop_bit; // Stop bits.
162 
164 
169 typedef enum
170 {
172  C5GNBIOT_ERROR = -1
173 
175  // End types group
177 // ----------------------------------------------- PUBLIC FUNCTION DECLARATIONS
178 
184 #ifdef __cplusplus
185 extern "C"{
186 #endif
187 
198 
214 
228 err_t c5gnbiot_generic_write ( c5gnbiot_t *ctx, char *data_buf, uint16_t len );
229 
243 err_t c5gnbiot_generic_read ( c5gnbiot_t *ctx, char *data_buf, uint16_t max_len );
244 
253 
262 void c5gnbiot_set_on ( c5gnbiot_t *ctx, uint8_t state );
263 
272 void c5gnbiot_set_rts ( c5gnbiot_t *ctx, uint8_t state );
273 
282 uint8_t c5gnbiot_get_cts ( c5gnbiot_t *ctx );
283 
293 void c5gnbiot_send_cmd ( c5gnbiot_t *ctx, char *cmd );
294 
305 void c5gnbiot_send_cmd_with_parameter ( c5gnbiot_t *ctx, char *at_cmd_buf, char *param_buf );
306 
316 void c5gnbiot_send_cmd_check ( c5gnbiot_t *ctx, char *at_cmd_buf );
317 
327 void c5gnbiot_send_cmd_parameter_check ( c5gnbiot_t *ctx, char *at_cmd_buf );
328 
338 void c5gnbiot_set_sim_apn ( c5gnbiot_t *ctx, char *sim_apn );
339 
353 err_t c5gnbiot_send_text_message ( c5gnbiot_t *ctx, char *service_center_number,
354  char *phone_number, char *sms_text );
355 
356 #ifdef __cplusplus
357 }
358 #endif
359 #endif // _C5GNBIOT_H_
360  // End public_function group
363 
364 // ------------------------------------------------------------------------- END
DRV_RX_BUFFER_SIZE
#define DRV_RX_BUFFER_SIZE
Definition: c5gnbiot.h:106
c5gnbiot_t
Click ctx object definition.
Definition: c5gnbiot.h:120
c5gnbiot_t::on
digital_out_t on
Definition: c5gnbiot.h:123
c5gnbiot_cfg_t::baud_rate
uint32_t baud_rate
Definition: c5gnbiot.h:157
c5gnbiot_set_sim_apn
void c5gnbiot_set_sim_apn(c5gnbiot_t *ctx, char *sim_apn)
Set sim card APN.
c5gnbiot_cfg_t::data_bit
uart_data_bits_t data_bit
Definition: c5gnbiot.h:159
c5gnbiot_generic_read
err_t c5gnbiot_generic_read(c5gnbiot_t *ctx, char *data_buf, uint16_t max_len)
5G NB IoT data reading function.
c5gnbiot_send_cmd_with_parameter
void c5gnbiot_send_cmd_with_parameter(c5gnbiot_t *ctx, char *at_cmd_buf, char *param_buf)
Send command function with parameter.
c5gnbiot_cfg_t::parity_bit
uart_parity_t parity_bit
Definition: c5gnbiot.h:160
c5gnbiot_generic_write
err_t c5gnbiot_generic_write(c5gnbiot_t *ctx, char *data_buf, uint16_t len)
5G NB IoT data writing function.
c5gnbiot_cfg_setup
void c5gnbiot_cfg_setup(c5gnbiot_cfg_t *cfg)
5G NB IoT configuration object setup function.
c5gnbiot_t::cts
digital_in_t cts
Definition: c5gnbiot.h:128
c5gnbiot_cfg_t::uart_blocking
bool uart_blocking
Definition: c5gnbiot.h:158
c5gnbiot_return_value_t
c5gnbiot_return_value_t
5G NB IoT Click return value data.
Definition: c5gnbiot.h:170
c5gnbiot_send_cmd_parameter_check
void c5gnbiot_send_cmd_parameter_check(c5gnbiot_t *ctx, char *at_cmd_buf)
Check the command parameters.
c5gnbiot_get_cts
uint8_t c5gnbiot_get_cts(c5gnbiot_t *ctx)
CTS Pin Get function.
c5gnbiot_send_cmd
void c5gnbiot_send_cmd(c5gnbiot_t *ctx, char *cmd)
Send command function.
c5gnbiot_cfg_t
Click configuration structure definition.
Definition: c5gnbiot.h:143
c5gnbiot_set_rts
void c5gnbiot_set_rts(c5gnbiot_t *ctx, uint8_t state)
Sets state of the RTS pin.
c5gnbiot_send_text_message
err_t c5gnbiot_send_text_message(c5gnbiot_t *ctx, char *service_center_number, char *phone_number, char *sms_text)
5G NB IoT send SMS in PDU mode.
c5gnbiot_send_cmd_check
void c5gnbiot_send_cmd_check(c5gnbiot_t *ctx, char *at_cmd_buf)
Check the sent command.
c5gnbiot_init
err_t c5gnbiot_init(c5gnbiot_t *ctx, c5gnbiot_cfg_t *cfg)
5G NB IoT initialization function.
c5gnbiot_cfg_t::on
pin_name_t on
Definition: c5gnbiot.h:151
c5gnbiot_t::uart
uart_t uart
Definition: c5gnbiot.h:132
c5gnbiot_cfg_t::tx_pin
pin_name_t tx_pin
Definition: c5gnbiot.h:147
DRV_TX_BUFFER_SIZE
#define DRV_TX_BUFFER_SIZE
Definition: c5gnbiot.h:107
c5gnbiot_cfg_t::rx_pin
pin_name_t rx_pin
Definition: c5gnbiot.h:146
c5gnbiot_cfg_t::stop_bit
uart_stop_bits_t stop_bit
Definition: c5gnbiot.h:161
c5gnbiot_t::rts
digital_out_t rts
Definition: c5gnbiot.h:124
C5GNBIOT_ERROR
@ C5GNBIOT_ERROR
Definition: c5gnbiot.h:172
c5gnbiot_cfg_t::cts
pin_name_t cts
Definition: c5gnbiot.h:152
C5GNBIOT_OK
@ C5GNBIOT_OK
Definition: c5gnbiot.h:171
c5gnbiot_set_on
void c5gnbiot_set_on(c5gnbiot_t *ctx, uint8_t state)
Sets state of the ON pin.
c5gnbiot_power_on
void c5gnbiot_power_on(c5gnbiot_t *ctx)
5G NB IoT module power on.
c5gnbiot_cfg_t::rts
pin_name_t rts
Definition: c5gnbiot.h:153