caa5a7ea07
- bump version to 1.71 - change home page and download URL to https Changelog (since 1.71): - 1.71, Added SMI bus support, courtesy of Benoit Bouchez, including new functions: bcm2835_smi_begin(), bcm2835_smi_end(), bcm2835_smi_set_timing(), bcm2835_smi_write(), bcm2835_smi_read(). Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
20 lines
787 B
Plaintext
20 lines
787 B
Plaintext
config BR2_PACKAGE_BCM2835
|
|
bool "bcm2835"
|
|
depends on BR2_arm
|
|
help
|
|
C library for Broadcom BCM 2835 as used in Raspberry Pi.
|
|
It provides access to GPIO and other IO functions on the
|
|
Broadcom BCM 2835 chip, allowing access to the GPIO pins
|
|
on the 26 pin IDE plug on the RPi board so you can control
|
|
and interface with various external devices.
|
|
|
|
WARNING: the opinion of the Buildroot developers is that
|
|
such library is a complete abomination as it entirely works
|
|
around the standard Linux interfaces to access GPIOs, I2C,
|
|
SPI busses or other IOs. The library directly remaps the
|
|
hardware registers in user-space, completely bypassing what
|
|
the kernel drivers are doing, and potentially conflicting
|
|
with them.
|
|
|
|
https://www.airspayce.com/mikem/bcm2835
|