大学生
最后登录1970-1-1
在线时间 小时
注册时间2015-2-15
|
typedef enum
{ GPIO_Mode_AIN = 0x0,
GPIO_Mode_IN_FLOATING = 0x04,
GPIO_Mode_IPD = 0x28,
GPIO_Mode_IPU = 0x48,
GPIO_Mode_Out_OD = 0x14,
GPIO_Mode_Out_PP = 0x10,
GPIO_Mode_AF_OD = 0x1C,
GPIO_Mode_AF_PP = 0x18
}GPIOMode_TypeDef;
这是GPIO的模式枚举,请问这些红色数字怎么得出来的?
|
-
数据手册里面的GPIO的模式配置
|