Global web icon
stackexchange.com
https://electronics.stackexchange.com/questions/10…
Understanding GPIO analog and digital - Electrical Engineering Stack ...
I've seen a few reference to GPIO only being able to work with binary values, but other posts which say the value can be from 0-255. I'm assuming this is the difference between analog and digital GPIO.
Global web icon
raspberrypi.org
https://www.raspberrypi.org/documentation/usage/gp…
Raspberry Pi OS - Raspberry Pi Documentation
Raspberry Pi OS is a free, Debian-based operating system optimised for the Raspberry Pi hardware. Raspberry Pi OS supports over 35,000 Debian packages. We recommend Raspberry Pi OS for most Raspberry Pi use cases.
Global web icon
stackexchange.com
https://electronics.stackexchange.com/questions/44…
Is there a difference between PIO and GPIO pins?
These things are pretty much unrelated to each other. GPIO is a General Purpose IO - meaning these are not connected to a specialized interface. PIO is Programmable IO, meaning that it can be connected to any interface present on the chip. The latter present mostly on FPGAs, while GPIO is on microcontrollers and such.
Global web icon
zhihu.com
https://www.zhihu.com/question/509371097
stm32如果一个gpio口既需要输出也需要输入,应该怎么配置? - 知乎
GPIO (General Purpose Input/Output,通用输入输出接口),是单片机中最基础的外设,它直接表现为芯片的一个个引脚裸露在芯片外,是单片机与外部设备进行双向数据交换的必由之路。 下面分别介绍STM32的GPIO(基于STM32F1系列)的8中工作模式及其相关寄存器的配置。
Global web icon
raspberrypi.org
https://www.raspberrypi.org/blog/scratch-2-raspber…
Scratch 2.0: all-new features for your Raspberry Pi
Scratch 2.0 is now available on the Raspberry Pi. Control GPIO pins, webcams and microphones, edit images and sound and more!
Global web icon
raspberrypi.org
https://www.raspberrypi.org/documentation/hardware…
Raspberry Pi computer hardware - Raspberry Pi Documentation
A GPIO reference can be accessed on your Raspberry Pi by opening a terminal window and running the command pinout. This tool is provided by the GPIO Zero Python library, which is installed by default in Raspberry Pi OS.
Global web icon
stackexchange.com
https://electronics.stackexchange.com/questions/86…
gpio - What happens on the STM32 when two pins are configured to have ...
Reading through the STM32F051 manual, it looks like it's possible to configure the same alternate function on two pins; for example, you could have multiple USART1_TX pins at the same time. Or for
Global web icon
stackexchange.com
https://electronics.stackexchange.com/questions/59…
What is gpio bank? - Electrical Engineering Stack Exchange
GPIO pins on microcontrollers and FPGAs are often grouped together in what is sometimes referred to as a "Bank". All the pins within a bank will have their own power supply pin/s.
Global web icon
stackexchange.com
https://electronics.stackexchange.com/questions/28…
microcontroller - Push-pull/open drain; pull-up/pull-down - Electrical ...
Of all the GPIO registers available, I do not understand two: GPIO_PUPDR and GPIO_OTYPE which are respectively the "pull-up/pull-down register" and the "output type register".
Global web icon
stackexchange.com
https://electronics.stackexchange.com/questions/15…
microcontroller - STM32 Understanding GPIO Settings - Electrical ...
GPIO Speed is the maximum frequency the GPIO can produce. Lower settings can save power. Output type is whether the pin asserts highs and lows (push pull), or whether the output turns on the gate of a FET that is attached to the pin at the drain (Open drain). This can be convenient if you need any attached pin to be able to pull a bus low without short in out other pins. Pull up resistors ...