14 lines
302 B
C
14 lines
302 B
C
#include <wiringPi.h>
|
|
#include <piFace.h>
|
|
#include <wiring_debug.h>
|
|
|
|
#include <drivers.h>
|
|
|
|
void
|
|
driver_piface_set(int pin, int value)
|
|
{
|
|
// disable "unused parameter" warning (happens when using wiring_debug)
|
|
(void)pin;
|
|
(void)value;
|
|
digitalWrite(DRIVER_PIFACE_GPIO_BASE + pin, value);
|
|
}
|