TuyaOS
include
components
tal_lwip
include
lwip
arch
cpu.h
浏览该文件的文档.
1
8
#ifndef __CPU_H__
9
#define __CPU_H__
10
11
#include "tuya_iot_config.h"
12
13
#if !defined(BYTE_ORDER)
14
15
//LITTLE_END是TUYA配置宏,已在"tuya_iot_config.h"中定义
16
#if defined(LITTLE_END) && (LITTLE_END==1)
17
#define BYTE_ORDER LITTLE_ENDIAN
18
#else
19
#define BYTE_ORDER BIG_ENDIAN
20
#endif
21
22
#endif
23
24
#endif
/* __CPU_H__ */
制作者
1.9.4