28 lines
831 B
C
28 lines
831 B
C
/*****************************************************************************
|
|
* @copyright 1997-2010, . POWER SUPPLY CO., LTD.
|
|
* @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
|