mirror of
https://github.com/oopuuu/zTC1.git
synced 2025-12-20 00:43:22 +08:00
修改了Web后台的部分界面,增加了HAmqtt中的总电量传感器,后台新增mqtt上报频率设置
This commit is contained in:
32
mico-os/libraries/filesystem/FatFs/ver0_11/src/integer.h
Normal file
32
mico-os/libraries/filesystem/FatFs/ver0_11/src/integer.h
Normal 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
|
||||
Reference in New Issue
Block a user