diff --git a/app/stm32fxxx_app/app/comm_manager.c b/app/stm32fxxx_app/app/comm_manager.c index c862991..3e83ba3 100644 --- a/app/stm32fxxx_app/app/comm_manager.c +++ b/app/stm32fxxx_app/app/comm_manager.c @@ -15,6 +15,8 @@ #include "kit_debug.h" #include "bsp_hmi.h" #include "drv_w5500.h" +#include "drv_eg25gminipice.h" + #define APP_HMI_BUF_SIZE (1024 * 4) uint8_t hmi_buf[4][APP_HMI_BUF_SIZE] __attribute__((section (".CCM_RAM"))); @@ -171,6 +173,7 @@ static void exter_can_rx_it_call(kit_ret_e res, void *data) bsp_queue_push_instance(&exter_can_queue, data); OS_TRACE_ISR_EXIT(); } + /*********************************************MODBUS实例***************************************************/ extern EEpromItem eeprom_item; GATE_STATIC_INIT2_CCM(modbus_gate, 200, (kEep_GateDataEnd - kEep_GateDataStart)); @@ -235,6 +238,13 @@ static void inter_uart_rx_it_call(kit_ret_e res, void *data) OS_TRACE_ISR_EXIT(); } +static void sim_uart_rx_it_call(kit_ret_e res, void *data) +{ + OS_TRACE_ISR_ENTER(); + drv_sim_push_data(&sim_item, data, 1); + OS_TRACE_ISR_EXIT(); +} + static void exter_uart1_rx_it_call(kit_ret_e res, void *data) { OS_TRACE_ISR_ENTER(); @@ -249,6 +259,7 @@ static void exter_uart2_rx_it_call(kit_ret_e res, void *data) OS_TRACE_ISR_EXIT(); } + static void uart_tx_it_call(kit_ret_e res, void *data) { uint8_t dev = *(uint8_t *)data; @@ -300,6 +311,9 @@ void bms_init_comm(void) drv_uart_set_interrupt(INTER_UART_PORT, kUartInterrupt_Rx, APP_CFG_INT_PRIO_UART2_RX, inter_uart_rx_it_call); drv_uart_set_interrupt(EXTER_UART1_PORT, kUartInterrupt_Rx, APP_CFG_INT_PRIO_UART2_RX, exter_uart1_rx_it_call); drv_uart_set_interrupt(EXTER_UART2_PORT, kUartInterrupt_Rx, APP_CFG_INT_PRIO_UART2_RX, exter_uart2_rx_it_call); + + drv_uart_set_interrupt(SIM_UART_PORT, kUartInterrupt_Rx, APP_CFG_INT_PRIO_UART2_RX, sim_uart_rx_it_call);//#define SIM_UART_PORT kUartDev_2 + drv_can_init(INTER_CAN_PORT, 250, kGpioType_Can_Ch1_Rx, kGpioType_Can_Ch1_Tx); drv_can_set_interrupt(INTER_CAN_PORT, kcan_interrupt_e_Rx, APP_CFG_INT_PRIO_CAN1_RX, inter_can_rx_it_call); diff --git a/app/stm32fxxx_app/app/comm_manager.h b/app/stm32fxxx_app/app/comm_manager.h index c72ff8e..f35c3bf 100644 --- a/app/stm32fxxx_app/app/comm_manager.h +++ b/app/stm32fxxx_app/app/comm_manager.h @@ -14,9 +14,13 @@ extern "C" { //gary @update 调整顺序 #define INTER_CAN_PORT kcan_dev_e_1 #define EXTER_CAN_PORT kcan_dev_e_2 + #define INTER_UART_PORT kUartDev_1 #define EXTER_UART1_PORT kUartDev_3 #define EXTER_UART2_PORT kUartDev_4 +#define SIM_UART_PORT kUartDev_2 + + #define BMS_485_CHANNEL (3u) #define W5500_MODBUS_NUM (8u) diff --git a/app/stm32fxxx_app/prj/BCU_APP.uvprojx b/app/stm32fxxx_app/prj/BCU_APP.uvprojx index fb759b2..b3c12ba 100644 --- a/app/stm32fxxx_app/prj/BCU_APP.uvprojx +++ b/app/stm32fxxx_app/prj/BCU_APP.uvprojx @@ -1047,8 +1047,8 @@ STM32F407VGTx STMicroelectronics - Keil.STM32F4xx_DFP.2.14.0 - http://www.keil.com/pack/ + Keil.STM32F4xx_DFP.3.0.0 + https://www.keil.com/pack/ IRAM(0x20000000,0x00020000) IRAM2(0x10000000,0x00010000) IROM(0x08000000,0x00100000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE diff --git a/library/drv_peripheral/drv_eg25gminipice.c b/library/drv_peripheral/drv_eg25gminipice.c index dce1f1a..a382f3b 100644 --- a/library/drv_peripheral/drv_eg25gminipice.c +++ b/library/drv_peripheral/drv_eg25gminipice.c @@ -9,6 +9,25 @@ #include "drv_eg25gminipice.h" #define UART2_BAUDRATE 115200 +#define MAX_RETRY 3 + +//4Gʵ +static uint8_t sim_rec_buf[MAX_RECV_LEN] = {0}; +LTE4G_STATIC_INIT(sim_item, 1, 0, 0, 1024,sim_rec_buf); + + +void drv_sim_push_data(Lte4GItem* item, uint8_t *buf, uint16_t len) +{ + uint16_t i = 0; + + if((item != NULL) && (item->buf_pos + len < item->buf_size)) + { + for (i = 0; i < len; i++) + { + item->buf[item->buf_pos++] = buf[i]; + } + } +} void drv_uart2_Init(void) { @@ -39,18 +58,48 @@ void drv_send_at_cmd(const char *cmd, int delay_ms) { drv_uart2_sendString(cmd); drv_uart2_sendString("\r\n"); // AT ָ "\r\n" β - for (volatile int i = 0; i < delay_ms * 1000; i++); // ʱ + kit_time_dly_ms(30); } + + void drv_eg25g_init(void) { - drv_send_at_cmd("AT", 500); - drv_send_at_cmd("AT+CPIN?", 500); - drv_send_at_cmd("AT+CREG?", 500); - drv_send_at_cmd("AT+CGATT=1", 500); - drv_send_at_cmd("AT+SAPBR=3,1,\"CONTYPE\",\"GPRS\"", 500); - drv_send_at_cmd("AT+SAPBR=3,1,\"APN\",\"your_apn\"", 500); - drv_send_at_cmd("AT+SAPBR=1,1", 2000); + drv_send_at_cmd("AT", 500); // 1. AT ָ + drv_send_at_cmd("AT+CPIN?", 500); // 2. ѯ SIM ״̬ + drv_send_at_cmd("AT+COPS=0", 500); // 3. ģԶѡӪ + drv_send_at_cmd("AT+CEREG?", 1000); // 4. ѯ 4G ע״̬ + // drv_send_at_cmd("AT+CGDCONT=1,\"IP\",\"your_apn\"", 500); // 5. APN ֧ԶʶҪapn + drv_send_at_cmd("AT+CGACT=1,1", 1000); // 6. PDPȡ IP + drv_send_at_cmd("AT+CGPADDR=1", 500); // 7. ѯ IP ַ +} + +// AT ָȴֵ,ڴŻʼ +int drv_send_at_cmd2(const char *cmd, int delay_ms) +{ + for (int i = 0; i < MAX_RETRY; i++) // ʧ MAX_RETRY + { + drv_uart2_sendString(cmd); + drv_uart2_sendString("\r\n"); // AT ָ "\r\n" β + kit_time_dly_ms(30); + + if (sim_item.buf_pos > 0 && strstr((const char*)sim_item.buf, "OK")) // ֵ + { + return 1; // ɹ + } + } + return 0; // ʧ +} + +void drv_eg25g_init2(void) +{ + if (!drv_send_at_cmd2("AT", 500)) return; // 1. AT ָ + if (!drv_send_at_cmd2("AT+CPIN?", 500)) return; // 2. ѯ SIM ״̬ + if (!drv_send_at_cmd2("AT+COPS=0", 500)) return; // 3. ģԶѡӪ + if (!drv_send_at_cmd2("AT+CEREG?", 1000)) return; // 4. ѯ 4G ע״̬ + if (!drv_send_at_cmd2("AT+CGDCONT=1,\"IP\",\"your_apn\"", 500)) return; // 5. APN + if (!drv_send_at_cmd2("AT+CGACT=1,1", 1000)) return; // 6. PDPȡ IP + if (!drv_send_at_cmd2("AT+CGPADDR=1", 500)) return; // 7. ѯ IP ַ } void drv_mqtt_connect(void) @@ -67,7 +116,9 @@ void drv_mqtt_publish(const char *topic, const char *message) drv_send_at_cmd(cmd, 500); } + /* + int main(void) { SystemInit(); drv_uart2_Init(); @@ -80,5 +131,6 @@ int main(void) { for (volatile int i = 0; i < 10000000; i++); // ͼ } } + */ diff --git a/library/drv_peripheral/drv_eg25gminipice.h b/library/drv_peripheral/drv_eg25gminipice.h index ed0b911..add306b 100644 --- a/library/drv_peripheral/drv_eg25gminipice.h +++ b/library/drv_peripheral/drv_eg25gminipice.h @@ -17,7 +17,33 @@ #include "kit_debug.h" #include "ucos_ii.h" +#include "string.h" +#define MAX_RECV_LEN 1024 + + +//ģ4Gṹ +typedef struct _Lte4GItem +{ + uint8_t addr; + uint8_t comm_dev; + uint16_t buf_pos; + uint16_t buf_size; + uint8_t *buf; +} Lte4GItem; + +#define LTE4G_STATIC_INIT(_name, _addr, _comm_dev, _buf_pos, _buf_size,_recv) \ + Lte4GItem _name = \ + { \ + (_addr), \ + (_comm_dev), \ + (_buf_pos),\ + (_buf_size),\ + (_recv),\ + } + +extern Lte4GItem sim_item; + void drv_uart2_Init(void); void drv_uart2_sendbyte(char c); void drv_uart2_sendString(const char *str); @@ -25,8 +51,10 @@ void drv_send_at_cmd(const char *cmd, int delay_ms); void drv_eg25g_init(void); void drv_mqtt_connect(void); void drv_mqtt_publish(const char *topic, const char *message); +void drv_sim_push_data(Lte4GItem* item, uint8_t *buf, uint16_t len); - -#endif //DRV_EG25GMINIPICE_H_ \ No newline at end of file +#endif //DRV_EG25GMINIPICE_H_ + + \ No newline at end of file