修改了Web后台的部分界面,增加了HAmqtt中的总电量传感器,后台新增mqtt上报频率设置

This commit is contained in:
OOP
2025-03-03 21:49:41 +08:00
parent e1e00b60ce
commit 9f9d4c7a56
4468 changed files with 1473046 additions and 10728 deletions

View File

@@ -0,0 +1,32 @@
/*-------------------------------------------*/
/* Integer type definitions for FatFs module */
/*-------------------------------------------*/
#ifndef _FF_INTEGER
#define _FF_INTEGER
#include <stdint.h>
#ifdef _WIN32 /* FatFs development platform */
#include <windows.h>
#include <tchar.h>
#ifndef _INC_TCHAR
#define _INC_TCHAR
#endif
#endif
/* This type MUST be 8 bit */
typedef uint8_t FATFS_BYTE;
/* These types MUST be 16 bit */
typedef uint16_t FATFS_WORD;
typedef uint16_t FATFS_WCHAR;
/* These types MUST be 16 bit or 32 bit */
typedef unsigned int FATFS_UINT;
/* These types MUST be 32 bit */
typedef uint32_t FATFS_DWORD;
#endif