- Ifx_Types.h 에서 Platform_Types.h로 이동
- Platform_Types.h에서 자료형 추가
// Platform_Types.h
#define PlATFORM_SW_PATCH_VERSION ...
...
// 다음 줄부터 추가
typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef signed short int16_t;
typedef unsigned short uint16_t;
typedef signed long int32_t;
typedef unsigned long uint32_t;
typedef float float32_t;
typedef double float64_t;