forked from gary/ems
2
0
Fork 0
sun_ems/ems_c/bsp/bsp_comm.h

28 lines
846 B
C

/*****************************************************************************
* @copyright Copyright (c) 2025-2055 Gary. All rights reserved.
* @file bsp_comm.h
* @brief xx功能
* @author Gary
* @date 2024-09-03
* @remark
*****************************************************************************/
#ifndef BSP_COMM_H
#define BSP_COMM_H
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "stdbool.h"
#include <MQTTClient.h>
#include "kit_data.h"
#define MAX_MQTT_MSG_LEN (1024*1024)
// 本机信息采集接口 直接写入共享内存
void getCpuAndMemUsages( uint8_t onoff);
// 初始化 本机信息采集 任务入口
void creatGetLocalParamTaskEntry( uint16_t time);
#endif // BSP_COMM_H