Broadcom BCM 2835 extension for Rebol3.
Using Mike McCauley's C code taken from: https://www.airspayce.com/mikem/bcm2835/
This extension is useful only on Raspberry PI or devices with the Broadcom chip. So far tested only with RPi Relay Board.
bcm: import 'bcm2835
pins: [5 6 13 16 19 20 21 26] ;; BCM pin numbers
with bcm [
;; Set all pins to an output mode
forall pins [
gpio_fsel pins/1 GPIO_FSEL_OUTP
]
;; Set all pins on:
forall pins [ gpio_clr pins/1 ]
delay 1000
;; Blink some pins
loop 10 [
pin: pins/(random 8)
gpio_clr :pin
delay 150
gpio_set :pin
delay 50
]
;; Set all pins off:
forall pins [ gpio_set pins/1 ]
]
Sets the Function Select register for the given pin, which configures the pin as Input, Output or one of the 6 alternate functions.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*mode
[integer!]
Mode to set the pin to, one of GPIO_FSEL_*
Sets the specified pin output to HIGH.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Sets the specified pin output to LOW.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Sets any of the first 32 GPIO output pins specified in the mask to HIGH.
mask
[integer!]
Mask of pins to affect. Use eg: (1 << RPI_GPIO_P1_03) | (1 << RPI_GPIO_P1_05)
Sets any of the first 32 GPIO output pins specified in the mask to LOW.
mask
[integer!]
Mask of pins to affect. Use eg: (1 << RPI_GPIO_P1_03) | (1 << RPI_GPIO_P1_05)
Reads the current level on the specified pin and returns either HIGH or LOW. Works whether or not the pin is an input or an output.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Event Detect Status. Tests whether the specified pin has detected a level or edge as requested by gpio_ren, gpio_fen, gpio_hen, gpio_len, gpio_aren, gpio_afen. Clear the flag for a given pin by calling gpio_set_eds
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Same as gpio_eds but checks if any of the pins specified in the mask have detected a level or edge.
mask
[integer!]
Mask of pins to affect. Use eg: (1 << RPI_GPIO_P1_03) | (1 << RPI_GPIO_P1_05)
Sets the Event Detect Status register for a given pin to 1, which has the effect of clearing the flag. Use this afer seeing an Event Detect Status on the pin.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Same as bcm2835_gpio_set_eds() but clears the flag for any pin which is set in the mask.
mask
[integer!]
Mask of pins to affect. Use eg: (1 << RPI_GPIO_P1_03) | (1 << RPI_GPIO_P1_05)
Enable Rising Edge Detect Enable for the specified pin. When a rising edge is detected, sets the appropriate pin in Event Detect Status.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Disable Rising Edge Detect Enable for the specified pin.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Enable Falling Edge Detect Enable for the specified pin. When a falling edge is detected, sets the appropriate pin in Event Detect Status.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Disable Falling Edge Detect Enable for the specified pin.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Enable High Detect Enable for the specified pin. When a HIGH level is detected on the pin, sets the appropriate pin in Event Detect Status.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Disable High Edge Detect Enable for the specified pin.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Enable Low Detect Enable for the specified pin. When a LOW level is detected on the pin, sets the appropriate pin in Event Detect Status.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Disable Low Edge Detect Enable for the specified pin.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Enable Asynchronous Rising Edge Detect Enable for the specified pin. When a rising edge is detected, sets the appropriate pin in Event Detect Status.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Disable Asynchronous Rising Edge Detect Enable for the specified pin.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Enable Asynchronous Falling Edge Detect Enable for the specified pin. When a falling edge is detected, sets the appropriate pin in Event Detect Status.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Disable Asynchronous Falling Edge Detect Enable for the specified pin.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Sets the Pull-up/down register for the given pin. This is used with gpio_pudclk to set the Pull-up/down resistor for the given pin.
pud
[integer!]
The desired Pull-up/down mode. One of GPIO_PUD_*
Clocks the Pull-up/down value set earlier by gpio_pud into the pin.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*on
[integer!]
HIGH to clock the value from gpio_pud into the pin.
Reads and returns the Pad Control for the given GPIO group. Caution: requires root access.
group
[integer!]
The GPIO pad group number, one of PAD_GROUP_GPIO_*
Sets the Pad Control for the given GPIO group. Caution: requires root access.
group
[integer!]
The GPIO pad group number, one of PAD_GROUP_GPIO_*control
[integer!]
Mask of bits from BCM2835_PAD_*
Sets the output state of the specified pin.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*on
[integer!]
HIGH sets the output to HIGH and LOW to LOW.
Sets any of the first 32 GPIO output pins specified in the mask to the state given by on.
mask
[integer!]
Mask of pins to affect. Use eg: (1 << RPI_GPIO_P1_03) | (1 << RPI_GPIO_P1_05)on
[integer!]
HIGH sets the output to HIGH and LOW to LOW.
Sets the first 32 GPIO output pins specified in the mask to the value given by value.
value
[integer!]
Values required for each bit masked in by mask.mask
[integer!]
Mask of pins to affect. Use eg: (1 << RPI_GPIO_P1_03) | (1 << RPI_GPIO_P1_05)
Sets the Pull-up/down mode for the specified pin. This is more convenient than clocking the mode in with gpio_pud and gpio_pudclk.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*pud
[integer!]
The desired Pull-up/down mode. One of GPIO_PUD_*
On the BCM2711 based RPI 4, gets the current Pull-up/down mode for the specified pin.
pin
[integer!]
GPIO number, or one of RPI_GPIO_P1_*
Sets all pins to GPIO_PUD_OFF and GPIO_FSEL_INPT
Start SPI operations.
End SPI operations.
Set the bit order to be used for transmit and receive. The bcm2835 SPI0 only supports SPI_BIT_ORDER_MSB, so if you select SPI_BIT_ORDER_LSB, the bytes will be reversed in software.
order
[integer!]
The desired bit order, one of SPI_BIT_ORDER_*
Sets the SPI clock divider and therefore the SPI clock speed.
divider
[integer!]
The desired SPI clock divider, one of SPI_CLOCK_DIVIDER_*
Sets the SPI clock divider by converting the speed parameter to the equivalent SPI clock divider.
speed_hz
[integer!]
The desired SPI clock speed in Hz
Sets the clock polariy and phase.
mode
[integer!]
The desired data mode, one of SPI_MODE*
Sets the chip select pin(s). When an spi_transfer is made, the selected pin(s) will be asserted during the transfer.
cs
[integer!]
Specifies the CS pins(s) that are used to activate the desired slave. One of SPI_CS*
Sets the chip select pin polarity for a given pin. When an spi_transfer occurs, the currently selected chip select pin(s) will be asserted to the value given by active. When transfers are not happening, the chip select pin(s) return to the complement (inactive) value.
cs
[integer!]
Specifies the CS pins(s) that are used to activate the desired slave. One of SPI_CS*active
[integer!]
Whether the chip select pin is to be active HIGH.
Transfers one byte to and from the currently selected SPI slave. Asserts the currently selected CS pins (as previously set by bcm2835_spi_chipSelect) during the transfer. Clocks the 8 bit value out on MOSI, and simultaneously clocks in data from MISO. Returns the read data byte from the slave.
value
[integer! char! binary!]
The 8 bit data byte to write to MOSI, or buffer
Transfers any number of bytes to the currently selected SPI slave.
data
[binary! integer! char!]
Buffer of bytes to send or the 8 bit data byte to write to MOSI
Returns the bcm2835 version.
Prevents access to the kernel memory, and does not do any peripheral access. Instead it prints out what it would do if debug were 0.
state
[logic! integer!]
Delays for the specified number of milliseconds.
millis
[integer!]
Delay in milliseconds
Delays for the specified number of microseconds
micros
[integer!]
Delay in microseconds
;; RPiGPIOPin:
RPI_GPIO_P1_03: 0 ;; Version 1, Pin P1-03
RPI_GPIO_P1_05: 1 ;; Version 1, Pin P1-05
RPI_GPIO_P1_07: 4 ;; Version 1, Pin P1-07
RPI_GPIO_P1_08: 14 ;; Version 1, Pin P1-08, defaults to alt function 0 UART0_TXD
RPI_GPIO_P1_10: 15 ;; Version 1, Pin P1-10, defaults to alt function 0 UART0_RXD
RPI_GPIO_P1_11: 17 ;; Version 1, Pin P1-11
RPI_GPIO_P1_12: 18 ;; Version 1, Pin P1-12, can be PWM channel 0 in ALT FUN 5
RPI_GPIO_P1_13: 21 ;; Version 1, Pin P1-13
RPI_GPIO_P1_15: 22 ;; Version 1, Pin P1-15
RPI_GPIO_P1_16: 23 ;; Version 1, Pin P1-16
RPI_GPIO_P1_18: 24 ;; Version 1, Pin P1-18
RPI_GPIO_P1_19: 10 ;; Version 1, Pin P1-19, MOSI when SPI0 in use
RPI_GPIO_P1_21: 9 ;; Version 1, Pin P1-21, MISO when SPI0 in use
RPI_GPIO_P1_22: 25 ;; Version 1, Pin P1-22
RPI_GPIO_P1_23: 11 ;; Version 1, Pin P1-23, CLK when SPI0 in use
RPI_GPIO_P1_24: 8 ;; Version 1, Pin P1-24, CE0 when SPI0 in use
RPI_GPIO_P1_26: 7 ;; Version 1, Pin P1-26, CE1 when SPI0 in use
;; RPi Version 2
RPI_V2_GPIO_P1_03: 2 ;; Version 2, Pin P1-03
RPI_V2_GPIO_P1_05: 3 ;; Version 2, Pin P1-05
RPI_V2_GPIO_P1_07: 4 ;; Version 2, Pin P1-07
RPI_V2_GPIO_P1_08: 14 ;; Version 2, Pin P1-08, defaults to alt function 0 UART0_TXD
RPI_V2_GPIO_P1_10: 15 ;; Version 2, Pin P1-10, defaults to alt function 0 UART0_RXD
RPI_V2_GPIO_P1_11: 17 ;; Version 2, Pin P1-11
RPI_V2_GPIO_P1_12: 18 ;; Version 2, Pin P1-12, can be PWM channel 0 in ALT FUN 5
RPI_V2_GPIO_P1_13: 27 ;; Version 2, Pin P1-13
RPI_V2_GPIO_P1_15: 22 ;; Version 2, Pin P1-15
RPI_V2_GPIO_P1_16: 23 ;; Version 2, Pin P1-16
RPI_V2_GPIO_P1_18: 24 ;; Version 2, Pin P1-18
RPI_V2_GPIO_P1_19: 10 ;; Version 2, Pin P1-19, MOSI when SPI0 in use
RPI_V2_GPIO_P1_21: 9 ;; Version 2, Pin P1-21, MISO when SPI0 in use
RPI_V2_GPIO_P1_22: 25 ;; Version 2, Pin P1-22
RPI_V2_GPIO_P1_23: 11 ;; Version 2, Pin P1-23, CLK when SPI0 in use
RPI_V2_GPIO_P1_24: 8 ;; Version 2, Pin P1-24, CE0 when SPI0 in use
RPI_V2_GPIO_P1_26: 7 ;; Version 2, Pin P1-26, CE1 when SPI0 in use
RPI_V2_GPIO_P1_29: 5 ;; Version 2, Pin P1-29
RPI_V2_GPIO_P1_31: 6 ;; Version 2, Pin P1-31
RPI_V2_GPIO_P1_32: 12 ;; Version 2, Pin P1-32
RPI_V2_GPIO_P1_33: 13 ;; Version 2, Pin P1-33
RPI_V2_GPIO_P1_35: 19 ;; Version 2, Pin P1-35, can be PWM channel 1 in ALT FUN 5
RPI_V2_GPIO_P1_36: 16 ;; Version 2, Pin P1-36
RPI_V2_GPIO_P1_37: 26 ;; Version 2, Pin P1-37
RPI_V2_GPIO_P1_38: 20 ;; Version 2, Pin P1-38
RPI_V2_GPIO_P1_40: 21 ;; Version 2, Pin P1-40
;; RPi Version 2, new plug P5
RPI_V2_GPIO_P5_03: 28 ;; Version 2, Pin P5-03
RPI_V2_GPIO_P5_04: 29 ;; Version 2, Pin P5-04
RPI_V2_GPIO_P5_05: 30 ;; Version 2, Pin P5-05
RPI_V2_GPIO_P5_06: 31 ;; Version 2, Pin P5-06
;; RPi B+ J8 header, also RPi 2 40 pin GPIO header
RPI_BPLUS_GPIO_J8_03: 2 ;; B+, Pin J8-03
RPI_BPLUS_GPIO_J8_05: 3 ;; B+, Pin J8-05
RPI_BPLUS_GPIO_J8_07: 4 ;; B+, Pin J8-07
RPI_BPLUS_GPIO_J8_08: 14 ;; B+, Pin J8-08, defaults to alt function 0 UART0_TXD
RPI_BPLUS_GPIO_J8_10: 15 ;; B+, Pin J8-10, defaults to alt function 0 UART0_RXD
RPI_BPLUS_GPIO_J8_11: 17 ;; B+, Pin J8-11
RPI_BPLUS_GPIO_J8_12: 18 ;; B+, Pin J8-12, can be PWM channel 0 in ALT FUN 5
RPI_BPLUS_GPIO_J8_13: 27 ;; B+, Pin J8-13
RPI_BPLUS_GPIO_J8_15: 22 ;; B+, Pin J8-15
RPI_BPLUS_GPIO_J8_16: 23 ;; B+, Pin J8-16
RPI_BPLUS_GPIO_J8_18: 24 ;; B+, Pin J8-18
RPI_BPLUS_GPIO_J8_19: 10 ;; B+, Pin J8-19, MOSI when SPI0 in use
RPI_BPLUS_GPIO_J8_21: 9 ;; B+, Pin J8-21, MISO when SPI0 in use
RPI_BPLUS_GPIO_J8_22: 25 ;; B+, Pin J8-22
RPI_BPLUS_GPIO_J8_23: 11 ;; B+, Pin J8-23, CLK when SPI0 in use
RPI_BPLUS_GPIO_J8_24: 8 ;; B+, Pin J8-24, CE0 when SPI0 in use
RPI_BPLUS_GPIO_J8_26: 7 ;; B+, Pin J8-26, CE1 when SPI0 in use
RPI_BPLUS_GPIO_J8_29: 5 ;; B+, Pin J8-29
RPI_BPLUS_GPIO_J8_31: 6 ;; B+, Pin J8-31
RPI_BPLUS_GPIO_J8_32: 12 ;; B+, Pin J8-32
RPI_BPLUS_GPIO_J8_33: 13 ;; B+, Pin J8-33
RPI_BPLUS_GPIO_J8_35: 19 ;; B+, Pin J8-35, can be PWM channel 1 in ALT FUN 5
RPI_BPLUS_GPIO_J8_36: 16 ;; B+, Pin J8-36
RPI_BPLUS_GPIO_J8_37: 26 ;; B+, Pin J8-37
RPI_BPLUS_GPIO_J8_38: 20 ;; B+, Pin J8-38
RPI_BPLUS_GPIO_J8_40: 21 ;; B+, Pin J8-40
;; bcm2835FunctionSelect:
GPIO_FSEL_INPT: 0 ;; Input 0b000
GPIO_FSEL_OUTP: 1 ;; Output 0b001
GPIO_FSEL_ALT0: 4 ;; Alternate function 0 0b100
GPIO_FSEL_ALT1: 5 ;; Alternate function 1 0b101
GPIO_FSEL_ALT2: 6 ;; Alternate function 2 0b110
GPIO_FSEL_ALT3: 7 ;; Alternate function 3 0b111
GPIO_FSEL_ALT4: 3 ;; Alternate function 4 0b011
GPIO_FSEL_ALT5: 2 ;; Alternate function 5 0b010
GPIO_FSEL_MASK: 7 ;; Function select bits mask 0b111
;; bcm2835PUDControl:
GPIO_PUD_OFF: 0 ;; Off ? disable pull-up/down 0b00
GPIO_PUD_DOWN: 1 ;; Enable Pull Down control 0b01
GPIO_PUD_UP: 2 ;; Enable Pull Up control 0b10
;; bcm2835PadGroup:
PAD_GROUP_GPIO_0_27: 0 ;; Pad group for GPIO pads 0 to 27
PAD_GROUP_GPIO_28_45: 1 ;; Pad group for GPIO pads 28 to 45
PAD_GROUP_GPIO_46_53: 2 ;; Pad group for GPIO pads 46 to 53
;; bcm2835SPIBitOrder:
SPI_BIT_ORDER_LSBFIRST: 0 ;; LSB First
SPI_BIT_ORDER_MSBFIRST: 1 ;; MSB First
;; bcm2835SPIMode:
SPI_MODE0: 0 ;; CPOL = 0, CPHA = 0
SPI_MODE1: 1 ;; CPOL = 0, CPHA = 1
SPI_MODE2: 2 ;; CPOL = 1, CPHA = 0
SPI_MODE3: 3 ;; CPOL = 1, CPHA = 1
;; bcm2835SPIChipSelect:
SPI_CS0: 0 ;; Chip Select 0
SPI_CS1: 1 ;; Chip Select 1
SPI_CS2: 2 ;; Chip Select 2 (ie pins CS1 and CS2 are asserted)
SPI_CS_NONE: 3 ;; No CS, control it yourself
HIGH: 1 ;; This means pin HIGH, true, 3.3volts on a pin.
LOW: 0 ;; This means pin LOW, false, 0volts on a pin.