17 lines
375 B
C
17 lines
375 B
C
/*
|
|
* bpstruct.h - STM32F407VET6 平台的 LwIP 字节打包结构体配置文件
|
|
*/
|
|
|
|
#ifndef __ARCH_BPSTRUCT_H__
|
|
#define __ARCH_BPSTRUCT_H__
|
|
|
|
/* ---------- 字节打包结构体配置 ---------- */
|
|
|
|
/* 打包结构体宏定义 */
|
|
#define PACK_STRUCT_BEGIN
|
|
#define PACK_STRUCT_STRUCT
|
|
#define PACK_STRUCT_END
|
|
#define PACK_STRUCT_FIELD(x) x
|
|
|
|
#endif /* __ARCH_BPSTRUCT_H__ */
|