Go to the documentation of this file.
35 #include "drv_digital_out.h"
36 #include "drv_digital_in.h"
59 #define G2C3G_CMD_AT "AT" // Communication test
60 #define G2C3G_CMD_GMR "AT+GMR" // Firmware version
61 #define G2C3G_CMD_ATE1 "ATE1" // Enable echo
62 #define G2C3G_CMD_ATE0 "ATE0" // Disable echo
63 #define G2C3G_CMD_GMSTA "AT+GMSTA" // LED status
64 #define G2C3G_CMD_RST "AT+RST" // Reset device
65 #define G2C3G_CMD_CRST "AT+CRST" // Connector module reset
66 #define G2C3G_CMD_CEN "AT+CEN" // Enable connector module
67 #define G2C3G_CMD_GPEN "AT+GPEN" // Enable GPIO outputs
68 #define G2C3G_CMD_W "AT+W" // Store configuration
69 #define G2C3G_CMD_R "AT+R" // Restore configuration
70 #define G2C3G_CMD_NWCR "AT+NWCR" // Network credentials
71 #define G2C3G_CMD_NWC "AT+NWC" // Connect to network
72 #define G2C3G_CMD_BRCR "AT+BRCR" // Broker credentials
73 #define G2C3G_CMD_BRC "AT+BRC" // Connect to broker
74 #define G2C3G_CMD_LRSP "AT+LRSP" // Long response
75 #define G2C3G_CMD_DSET "AT+DSET" // Data set
76 #define G2C3G_CMD_PUB "AT+PUB" // Publish data
82 #define G2C3G_RSP_OK "OK"
83 #define G2C3G_RSP_ERROR "ERROR"
84 #define G2C3G_RSP_DEVICE_READY "DEVICE READY"
85 #define G2C3G_RSP_ERR "+ERR"
86 #define G2C3G_RSP_ACT "+ACT"
87 #define G2C3G_RSP_G2C3G "+G2C3G"
88 #define G2C3G_RSP_G2C3G_RSP "+G2C3G_RSP"
95 #define G2C3G_TX_DRV_BUFFER_SIZE 300
96 #define G2C3G_RX_DRV_BUFFER_SIZE 300
114 #define G2C3G_MAP_MIKROBUS( cfg, mikrobus ) \
115 cfg.tx_pin = MIKROBUS( mikrobus, MIKROBUS_TX ); \
116 cfg.rx_pin = MIKROBUS( mikrobus, MIKROBUS_RX ); \
117 cfg.gp0 = MIKROBUS( mikrobus, MIKROBUS_AN ); \
118 cfg.rst = MIKROBUS( mikrobus, MIKROBUS_RST ); \
119 cfg.cts = MIKROBUS( mikrobus, MIKROBUS_CS ); \
120 cfg.gp1 = MIKROBUS( mikrobus, MIKROBUS_PWM ); \
121 cfg.rts = MIKROBUS( mikrobus, MIKROBUS_INT );
@ G2C3G_ERROR_UNKNOWN
Definition: g2c3g.h:186
G2C 3G Click context object.
Definition: g2c3g.h:131
G2C 3G Click configuration object.
Definition: g2c3g.h:155
void g2c3g_send_cmd(g2c3g_t *ctx, uint8_t *cmd)
G2C 3G send command function.
void g2c3g_set_rst_pin(g2c3g_t *ctx, uint8_t state)
G2C 3G set rst pin function.
pin_name_t rx_pin
Definition: g2c3g.h:157
err_t g2c3g_generic_write(g2c3g_t *ctx, uint8_t *data_in, uint16_t len)
G2C 3G data writing function.
bool uart_blocking
Definition: g2c3g.h:169
digital_in_t gp0
Definition: g2c3g.h:137
uint32_t baud_rate
Definition: g2c3g.h:168
pin_name_t rts
Definition: g2c3g.h:165
pin_name_t tx_pin
Definition: g2c3g.h:158
uint8_t g2c3g_get_gp1_pin(g2c3g_t *ctx)
G2C 3G get gp1 pin function.
uart_parity_t parity_bit
Definition: g2c3g.h:171
void g2c3g_set_broker_creds(g2c3g_t *ctx, uint8_t *dev_key, uint8_t *password)
G2C 3G set broker credentials.
digital_out_t cts
Definition: g2c3g.h:134
uint8_t g2c3g_get_rts_pin(g2c3g_t *ctx)
G2C 3G get rts pin function.
digital_in_t gp1
Definition: g2c3g.h:138
uart_t uart
Definition: g2c3g.h:142
#define G2C3G_TX_DRV_BUFFER_SIZE
G2C 3G driver buffer size.
Definition: g2c3g.h:95
digital_in_t rts
Definition: g2c3g.h:139
uart_data_bits_t data_bit
Definition: g2c3g.h:170
void g2c3g_send_cmd_par_check(g2c3g_t *ctx, uint8_t *at_cmd_buf)
G2C 3G check the command parameters.
void g2c3g_cfg_setup(g2c3g_cfg_t *cfg)
G2C 3G configuration object setup function.
pin_name_t cts
Definition: g2c3g.h:163
err_t g2c3g_init(g2c3g_t *ctx, g2c3g_cfg_t *cfg)
G2C 3G initialization function.
digital_out_t rst
Definition: g2c3g.h:133
@ G2C3G_ERROR
Definition: g2c3g.h:183
#define G2C3G_RX_DRV_BUFFER_SIZE
Definition: g2c3g.h:96
void g2c3g_send_cmd_check(g2c3g_t *ctx, uint8_t *at_cmd_buf)
G2C 3G check the sent command.
void g2c3g_set_net_creds(g2c3g_t *ctx, uint8_t *sim_apn, uint8_t *username, uint8_t *password)
G2C 3G set network credentials.
pin_name_t gp0
Definition: g2c3g.h:161
g2c3g_return_value_t
G2C 3G Click return value data.
Definition: g2c3g.h:181
pin_name_t gp1
Definition: g2c3g.h:164
@ G2C3G_ERROR_CMD
Definition: g2c3g.h:185
void g2c3g_reset_device(g2c3g_t *ctx)
G2C 3G reset device function.
void g2c3g_set_cts_pin(g2c3g_t *ctx, uint8_t state)
G2C 3G set cts pin function.
@ G2C3G_OK
Definition: g2c3g.h:182
uint8_t g2c3g_get_gp0_pin(g2c3g_t *ctx)
G2C 3G get gp0 pin function.
pin_name_t rst
Definition: g2c3g.h:162
@ G2C3G_ERROR_TIMEOUT
Definition: g2c3g.h:184
uart_stop_bits_t stop_bit
Definition: g2c3g.h:172
err_t g2c3g_generic_read(g2c3g_t *ctx, uint8_t *data_out, uint16_t len)
G2C 3G data reading function.
void g2c3g_send_cmd_with_par(g2c3g_t *ctx, uint8_t *at_cmd_buf, uint8_t *param_buf)
G2C 3G send command function with parameter.