gpio_init_struct.gpio_drive_strength = GPIO_DRIVE_STRENGTH_STRONGER; // GPIO输出模式 GPIO_OUTPUT_PUSH_PULL 推挽输出 GPIO_OUTPUT_OPEN_DRAIN 开漏输出 gpio_init_struct.gpio_out_type = GPIO_OUTPUT_PUSH_PULL; // GPIO模式 GPIO_MODE_INPUT 输入 GPIO_MODE_OUTPUT 输出 GPIO_MODE_MUX IOMUX,至片上外...
gpio_init_struct.gpio_pull = GPIO_PULL_NONE; gpio_init_struct.gpio_out_type = GPIO_OUTPUT_OPEN_DRAIN; gpio_init_struct.gpio_drive_strength = GPIO_DRIVE_STRENGTH_STRONGER; gpio_init(GPIOB, &gpio_init_struct); 2020.9.30 第 23 页 版本 2.0.0 AT32F435/437 GPIO 使用指南 案例 LED 翻转...
* Open Drain (Pull-up, Pull-down or no Pull). * - Analog: required mode when a pin is to be used as ADC channel * or DAC output. * * 3- Peripherals alternate function: * - For ADC and DAC, configure the desired pin in analog mode using ...
GitHub Sponsors Fund open source developers The ReadME Project GitHub community articles Repositories Topics Trending Collections Pricing Search or jump to... Search code, repositories, users, issues, pull requests... Provide feedback We read every piece of feedback, and take your input ver...
#define GPIO_MODE_OUTPUT_OD ((uint32_t)0x00000011) /*!< Output Open Drain Mode */ #define GPIO_MODE_AF_PP ((uint32_t)0x00000002) /*!< Alternate Function Push Pull Mode */ #define GPIO_MODE_AF_OD ((uint32_t)0x00000012) /*!< Alternate Function Open Drai...
// GPIO输出模式 GPIO_OUTPUT_PUSH_PULL 推挽输出 GPIO_OUTPUT_OPEN_DRAIN 开漏输出 gpio_init_struct.gpio_out_type = GPIO_OUTPUT_PUSH_PULL; // GPIO模式 GPIO_MODE_INPUT 输入 GPIO_MODE_OUTPUT 输出 GPIO_MODE_MUX IOMUX,至片上外设 // GPIO_MODE_ANALOG 模拟输入/输出 ...