Documentation ¶
Overview ¶
Package bcm283x exposes the BCM283x GPIO functionality.
This driver implements memory-mapped GPIO pin manipulation and leverages sysfs-gpio for edge detection.
If you are looking at the actual implementation, open doc.go for further implementation details.
Datasheet ¶
https://www.raspberrypi.org/wp-content/uploads/2012/02/BCM2835-ARM-Peripherals.pdf
Its crowd-sourced errata: http://elinux.org/BCM2835_datasheet_errata
BCM2836: https://www.raspberrypi.org/documentation/hardware/raspberrypi/bcm2836/QA7_rev3.4.pdf
Another doc about PCM and PWM: https://scribd.com/doc/127599939/BCM2835-Audio-clocks
Index ¶
- func Nanospin(t time.Duration)
- func Present() bool
- func ReadTime() time.Duration
- type Pin
- func (p *Pin) DefaultPull() gpio.Pull
- func (p *Pin) Function() string
- func (p *Pin) In(pull gpio.Pull, edge gpio.Edge) error
- func (p *Pin) Name() string
- func (p *Pin) Number() int
- func (p *Pin) Out(l gpio.Level) error
- func (p *Pin) Pull() gpio.Pull
- func (p *Pin) Read() gpio.Level
- func (p *Pin) String() string
- func (p *Pin) WaitForEdge(timeout time.Duration) bool
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Pin ¶
type Pin struct {
// contains filtered or unexported fields
}
Pin is a GPIO number (GPIOnn) on BCM238(5|6|7).
Pin implements gpio.PinIO.
var ( GPIO0 *Pin // I2C0_SDA GPIO1 *Pin // I2C0_SCL GPIO2 *Pin // I2C1_SDA GPIO3 *Pin // I2C1_SCL GPIO4 *Pin // GPCLK0 GPIO5 *Pin // GPCLK1 GPIO6 *Pin // GPCLK2 GPIO7 *Pin // SPI0_CS1 GPIO8 *Pin // SPI0_CS0 GPIO9 *Pin // SPI0_MISO GPIO10 *Pin // SPI0_MOSI GPIO11 *Pin // SPI0_CLK GPIO12 *Pin // PWM0_OUT GPIO13 *Pin // PWM1_OUT GPIO14 *Pin // UART0_TXD, UART1_TXD GPIO15 *Pin // UART0_RXD, UART1_RXD GPIO16 *Pin // UART0_CTS, SPI1_CS2, UART1_CTS GPIO17 *Pin // UART0_RTS, SPI1_CS1, UART1_RTS GPIO18 *Pin // PCM_CLK, SPI1_CS0, PWM0_OUT GPIO19 *Pin // PCM_FS, SPI1_MISO, PWM1_OUT GPIO20 *Pin // PCM_DIN, SPI1_MOSI, GPCLK0 GPIO21 *Pin // PCM_DOUT, SPI1_CLK, GPCLK1 GPIO22 *Pin // GPIO23 *Pin // GPIO24 *Pin // GPIO25 *Pin // GPIO26 *Pin // GPIO27 *Pin // GPIO28 *Pin // I2C0_SDA, PCM_CLK GPIO29 *Pin // I2C0_SCL, PCM_FS GPIO30 *Pin // PCM_DIN, UART0_CTS, UART1_CTS GPIO31 *Pin // PCM_DOUT, UART0_RTS, UART1_RTS GPIO32 *Pin // GPCLK0, UART0_TXD, UART1_TXD GPIO33 *Pin // UART0_RXD, UART1_RXD GPIO34 *Pin // GPCLK0 GPIO35 *Pin // SPI0_CS1 GPIO36 *Pin // SPI0_CS0, UART0_TXD GPIO37 *Pin // SPI0_MISO, UART0_RXD GPIO38 *Pin // SPI0_MOSI, UART0_RTS GPIO39 *Pin // SPI0_CLK, UART0_CTS GPIO40 *Pin // PWM0_OUT, SPI2_MISO, UART1_TXD GPIO41 *Pin // PWM1_OUT, SPI2_MOSI, UART1_RXD GPIO42 *Pin // GPCLK1, SPI2_CLK, UART1_RTS GPIO43 *Pin // GPCLK2, SPI2_CS0, UART1_CTS GPIO44 *Pin // GPCLK1, I2C0_SDA, I2C1_SDA, SPI2_CS1 GPIO45 *Pin // PWM1_OUT, I2C0_SCL, I2C1_SCL, SPI2_CS2 GPIO46 *Pin // )
All the pins supported by the CPU.
func (*Pin) DefaultPull ¶
DefaultPull returns the default pull for the pin.
Implements gpio.PinDefaultPull.
The CPU doesn't return the current pull.
func (*Pin) In ¶
In setups a pin as an input and implements gpio.PinIn.
Specifying a value for pull other than gpio.PullNoChange causes this function to be slightly slower (about 1ms).
For pull down, the resistor is 50KOhm~60kOhm For pull up, the resistor is 50kOhm~65kOhm
The pull resistor stays set even after the processor shuts down. It is not possible to 'read back' what value was specified for each pin.
Will fail if requesting to change a pin that is set to special functionality.
Using edge detection requires opening a gpio sysfs file handle. On Raspbian, make sure the user is member of group 'gpio'. The pin will be exported at /sys/class/gpio/gpio*/. Note that the pin will not be unexported at shutdown.
For edge detection, the processor samples the input at its CPU clock rate and looks for '011' to rising and '100' for falling detection to avoid glitches. Because gpio sysfs is used, the latency is unpredictable.
func (*Pin) Out ¶
Out sets a pin as output and implements gpio.PinOut.
Fails if requesting to change a pin that is set to special functionality.
func (*Pin) Pull ¶
Pull implemented gpio.PinIn.
bcm283x doesn't support querying the pull resistor of any GPIO pin.