#早期版本的数据类型:
#ifndef __STM32F10x_TYPE_H
#define __STM32F10x_TYPE_H
typedef signed long
typedef signed short s16;
typedef signed char
typedef signed long
typedef signed short const sc16;
typedef signed char
typedef volatile signed long
typedef volatile signed short vs16;
typedef volatile signed char
typedef volatile signed long
typedef volatile signed short const vsc16;
typedef volatile signed char
typedef unsigned long
typedef unsigned short u16;
typedef unsigned char
typedef unsigned long
typedef unsigned short const uc16;
typedef unsigned char
typedef volatile unsigned long
typedef volatile unsigned short vu16;
typedef volatile unsigned char
typedef volatile unsigned long
typedef volatile unsigned short constvuc16;
typedef volatile unsigned char
typedef enum {FALSE = 0, TRUE = !FALSE} bool;
typedef enum {RESET = 0, SET = !RESET} FlagStatus, ITStatus;
typedef enum {DISABLE = 0, ENABLE = !DISABLE}FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) ||((STATE) == ENABLE))
typedef enum {ERROR = 0, SUCCESS = !ERROR} ErrorStatus;
#defineU8_MAX
#defineS8_MAX
#defineS8_MIN
#defineU16_MAX
#defineS16_MAX
#defineS16_MIN
#defineU32_MAX
#defineS32_MAX
#defineS32_MIN
#endif
#新的固件库使用CMSIS标准的类型命名(对早期的版本仍然兼容):
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;
typedef __I int32_t vsc32; /*!< Read Only */
typedef __I int16_t vsc16; /*!< Read Only */
typedef __I int8_t vsc8; /*!< Read Only */
typedef uint32_t u32;
typedef uint16_t u16;
typedef uint8_t u8;
typedef const uint32_t uc32; /*!< Read Only */
typedef const uint16_t uc16; /*!< Read Only */
typedef const uint8_t uc8; /*!< Read Only */
typedef __IO uint32_t vu32;
typedef __IO uint16_t vu16;
typedef __IO uint8_t vu8;
typedef __I uint32_t vuc32; /*!< Read Only */
typedef __I uint16_t vuc16; /*!< Read Only */
typedef __I uint8_t vuc8; /*!< Read Only */
typedef enum {RESET = 0, SET = !RESET} FlagStatus, ITStatus;
typedef enum {DISABLE = 0, ENABLE = !DISABLE} FunctionalState;
#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))
typedef enum {ERROR = 0, SUCCESS = !ERROR} ErrorStatus;