44 bcm2835_gpio_fsel(pin, BCM2835_GPIO_FSEL_OUTP);
55 bcm2835_gpio_write(pin, level);
65 bcm2835_gpio_fsel(pin,BCM2835_GPIO_FSEL_INPT);
66 bcm2835_gpio_set_pud(pin, BCM2835_GPIO_PUD_DOWN);
78 bcm2835_gpio_ren(pin);
88 bcm2835_gpio_clr_ren(pin);
98 bcm2835_gpio_ren(pin);
108 bcm2835_gpio_clr_ren(pin);
118 bcm2835_gpio_ren(pin);
128 bcm2835_gpio_clr_ren(pin);
138 bcm2835_gpio_ren(pin);
148 bcm2835_gpio_clr_ren(pin);
158 bcm2835_gpio_aren(pin);
168 bcm2835_gpio_clr_aren(pin);
178 unsigned char event = bcm2835_gpio_eds(pin);
179 bcm2835_gpio_set_eds(pin);
void pinModeOutput(PIN_t pin)
Configures the given pin as output.
void DisableDetectRisingEdge(PIN_t pin)
Disables detection of rising edge.
void EnableDetectFallingEdge(PIN_t pin)
Enables detection of falling edge.
void DisableDetectFallinggEdge(PIN_t pin)
Dsiables detection of falling edge.
void DisableDetectRisingInterrupt(PIN_t pin)
Disables detection of rising edge interrupt.
void EnableDetectRisingEdge(PIN_t pin)
Enables detection of rising edge.
unsigned char CheckPinforEvent(PIN_t pin)
Checks fro even on given pin.
PinLevel_t ReadPinStatus(PIN_t pin)
Configures the pins as input and returns the pin status.
void EnableDetectLowLevel(PIN_t pin)
Enables detection of low level.
void DisableDetectHighLevel(PIN_t pin)
Disables detection of high level.
void delay_ms(unsigned int ms)
Delay in ms.
void digitalWrite(PIN_t pin, unsigned char level)
Write a logic level to the pin. The pin should be confgured as output.
void EnableDetectHighLevel(PIN_t pin)
Enables detection of high level on pin.
void DisableDetectLowLevel(PIN_t pin)
Disables detection of low level.
void EnableDetectRisingInterrupt(PIN_t pin)
Enables detection of rising edge interrupt.