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 //复用推挽 }GPIO...
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...
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; 3种最大输出速度: -2MHZ -10M...
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; 1. 2. 3. 4. 5. 6. 7. ...
//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 复用推挽 ...
GPIO_Mode_Out_PP = 0x10, // 推挽输出 GPIO_Mode_AF_OD = 0x1C, // 复用开漏输出 GPIO_Mode_AF_PP = 0x18 // 复用推挽输出 } GPIOMode_TypeDef; 3、输入和输出 输入模式 浮空输入模式:浮空输入状态下,IO 的电平状态是不确定的,完全由外部输入决定,如果在该引脚悬空的情况下,读取该端口的电平是不...
GPIO_Mode_Out_PP = 0x10, // 推挽输出 GPIO_Mode_AF_OD = 0x1C, // 复用开漏输出 GPIO_Mode_AF_PP = 0x18 // 复用推挽输出 }GPIOMode_TypeDef; *//* 成员属性GPIO_Pin的值 GPIO_Pin_x,其中x为0~15、All、None 当GPIO_Pin=GPIO_Pin_All 时表示选中全部引脚 ...
GPIO_Mode_Out_PP = 0x10, //推挽输出 GPIO_Mode_AF_OD = 0x1C, // 第二功能开漏输出 GPIO_Mode_AF_PP = 0x18 // 第二功能推挽输出}GPIOMode_TypeDef; 首先说说数字输入,其有三种状态:输入浮空/输入下拉/输入上拉,IO口配置为输入时,port口工作原理图如下: ...
GPIO_Mode_Out_OD 0x14 开漏输出 GPIO_Mode_Out_PP 0x10 推挽输出 推挽模式,写数据时,需要设置IO口为有模式 GPIO_Mode_AF_OD 0x1c 开漏复用 GPIO_Mode_AF_PP 0x18 推挽复用 5.输出速度可选择:2MHz,10MHz,50MHz。 6.IO口功能:通用I/O(GPIO)用,输入输出;单独的位设置或位清除;外部中断/唤醒线:端口...