VU16类型的长度

2019-10-15 01:20发布

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 */

这些数据类型,前几个还好说,后面_ _IO,_ _I是什么意思?VS8,VSC8,UC8,VU8,VUC8这些长度都是多少?

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
3条回答
msq001
1楼-- · 2019-10-15 04:28
本帖最后由 msq001 于 2017-2-20 15:03 编辑

你再跳过去看一下就知道__IO是什么了,stm32库函数里面定义的是 volatile,
msq001
2楼-- · 2019-10-15 06:09
你问的那几个都是一个字节的
DongInker
3楼-- · 2019-10-15 11:06
__IO是定义的变量可以读写,__I为只读

一周热门 更多>