2025-02-12 17:28:30 +08:00
|
|
|
/******************************************************************************
|
|
|
|
* @file drv_eg25gminipice.h
|
|
|
|
* @brief drv_eg25gminipice drivers
|
|
|
|
* @version V1.0
|
|
|
|
* @author Gary
|
|
|
|
* @copyright
|
|
|
|
******************************************************************************/
|
|
|
|
#ifndef DRV_EG25GMINIPICE_H_
|
|
|
|
#define DRV_EG25GMINIPICE_H_
|
|
|
|
|
|
|
|
#include "drv_gpio.h"
|
|
|
|
#include "stm32f4xx.h"
|
|
|
|
#include "bsp_task.h"
|
|
|
|
|
|
|
|
#include "kit_time.h"
|
|
|
|
#include "kit_data.h"
|
|
|
|
#include "kit_debug.h"
|
|
|
|
|
|
|
|
#include "ucos_ii.h"
|
|
|
|
|
2025-02-12 17:33:08 +08:00
|
|
|
void drv_uart2_Init(void);
|
|
|
|
void drv_uart2_sendbyte(char c);
|
|
|
|
void drv_uart2_sendString(const char *str);
|
|
|
|
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);
|
2025-02-12 17:28:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //DRV_EG25GMINIPICE_H_
|