本帖最后由 vfp8341 于 2011-4-4 10:45 编辑
stm32f10x_type.h在V3.4的固件库没有哦。他里面有些类型定义:
typedef signed long s32;
typedef signed short s16;
typedef signed char s8;
而3.4的固件库中用了些:
typedef int32_t s32;
typedef int16_t s16;
typedef int8_t s8;
typedef const int32_t sc32; /*!< Read Only */
typedef const int16_t sc16; /*!< Read Only */
typedef const int8_t sc8; /*!< Read Only */
typedef __IO int32_t vs32;
typedef __IO int16_t vs16;
typedef __IO int8_t vs8;
这样的定义。
请问:_IO int32_t是在哪儿定义的啊?实在是找不到~ |