HomeSort by relevance Sort by last modified time
    Searched refs:Gpio (Results 1 - 25 of 61) sorted by null

1 2 3

  /device/google/contexthub/firmware/inc/platform/stm32f4xx/
usart.h 25 #include <gpio.h>
29 struct Gpio *tx;
30 struct Gpio *rx;
syscfg.h 20 #include <plat/inc/gpio.h>
21 #include <gpio.h>
27 void syscfgSetExtiPort(const struct Gpio *__restrict gpio);
exti.h 23 #include <plat/inc/gpio.h>
24 #include <gpio.h>
71 static inline void extiEnableIntGpio(const struct Gpio *__restrict gpioHandle, enum ExtiTrigger trigger)
78 static inline void extiDisableIntGpio(const struct Gpio *__restrict gpioHandle)
85 static inline bool extiIsPendingGpio(const struct Gpio *__restrict gpioHandle)
93 static inline void extiClearPendingGpio(const struct Gpio *__restrict gpioHandle)
  /hardware/bsp/intel/peripheral/libupm/src/rgbringcoder/
rgbringcoder.h 31 #include <mraa/gpio.hpp>
40 * @ingroup seeed gpio led
50 * @con pwm gpio
71 * @param en Enables GPIO
72 * @param latch Latch GPIO
73 * @param clear Clears GPIO
74 * @param clk Clock GPIO
75 * @param dat Data out GPIO
76 * @param sw Push button switch GPIO
77 * @param encA Encoder A GPIO
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/src/
mraa.i 23 #include "gpio.hpp"
45 %ignore Gpio::nop(uv_work_t* req);
46 %ignore Gpio::v8isr(uv_work_t* req);
47 %ignore Gpio::v8isr(uv_work_t* req, int status);
48 %ignore Gpio::uvwork(void *ctx);
49 %ignore Gpio::isr(Edge mode, void (*fptr)(void*), void* args);
51 %include "gpio.hpp"
  /hardware/bsp/intel/peripheral/libmraa/examples/java/
BlinkOnboard.java 2 import mraa.Gpio;
45 Gpio gpio, gpio_in; local
47 gpio = new Gpio(3);
49 gpio = new Gpio(21);
51 gpio = new Gpio(13);
56 gpio.dir(Dir.DIR_OUT)
    [all...]
Isr.java 27 import mraa.Gpio;
41 Gpio gpio = new Gpio(6); local
45 gpio.isr(Edge.EDGE_RISING, callback);
GpioMmapped.java 27 import mraa.Gpio;
48 Gpio gpio = new Gpio(1); local
50 gpio.useMmap(true);
53 gpio.write(1);
55 gpio.write(0);
GpioRead6.java 28 import mraa.Gpio;
45 Gpio gpio = new Gpio(6); local
47 gpio.dir(Dir.DIR_IN);
50 System.out.format("Gpio is %d\n", gpio.read());
BlinkIO.java 30 import mraa.Gpio;
57 Gpio gpio = new Gpio(iopin); local
58 Result result = gpio.dir(Dir.DIR_OUT);
65 gpio.write(1);
67 gpio.write(0);
HelloEdison.java 28 import mraa.Gpio;
55 * which is hardware GPIO 130 and not 182
57 * gpio from sysfs in mraa_gpio_close meaning it will stay as an output and
62 Gpio gpio182 = new Gpio(IntelEdison.INTEL_EDISON_GP182.swigValue(), false);
67 System.out.println(String.format("GPIO%d (mraa pin %d) was: %d, will set to %d\n", 182,
  /device/google/contexthub/firmware/inc/
gpio.h 64 struct Gpio;
66 /* Requests a GPIO and allocates the gpio handle/struct/etc */
67 struct Gpio* gpioRequest(uint32_t gpioNum);
68 void gpioRelease(struct Gpio* __restrict gpio);
70 /* Configures the direction and pull type of a GPIO */
71 void gpioConfigInput(const struct Gpio* __restrict gpio, int32_t gpioSpeed, enum GpioPullMode pull);
72 void gpioConfigOutput(const struct Gpio* __restrict gpio, int32_t gpioSpeed, enum GpioPullMode pull, enum GpioOpenDrainMode odrMode, bool (…)
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/examples/python/
hello_gpio.py 28 x = mraa.Gpio(13)
blink-io8.py 28 x = mraa.Gpio(8)
hello_isr.py 39 x = mraa.Gpio(6)
  /hardware/bsp/intel/peripheral/libmraa/examples/c++/
Isr-pin6.cpp 41 mraa::Gpio* x = new mraa::Gpio(6);
  /hardware/bsp/intel/peripheral/libmraa/examples/javascript/
isr.js 9 x = new m.Gpio(14)
GPIO_DigitalWrite.js 28 var myDigitalPin = new m.Gpio(5); //setup digital read on pin 5
29 myDigitalPin.dir(m.DIR_OUT); //set the gpio direction to output
Blink-IO.js 28 var myLed = new m.Gpio(13); //LED hooked up to digital pin 13 (or built in pin on Galileo Gen1 & Gen2)
29 myLed.dir(m.DIR_OUT); //set the gpio direction to output
GPIO_DigitalRead.js 28 var myDigitalPin = new m.Gpio(6); //setup digital read on pin 6
29 myDigitalPin.dir(m.DIR_IN); //set the gpio direction to input
36 console.log('Gpio is ' + myDigitalValue); //write the read value out to the console
  /hardware/bsp/intel/peripheral/libupm/src/ad8232/
ad8232.h 29 #include <mraa/gpio.hpp>
40 * @ingroup sparkfun gpio medical
50 * @con gpio aio
101 mraa::Gpio m_gpioLOPlus;
102 mraa::Gpio m_gpioLOMinus;
  /hardware/bsp/intel/peripheral/libmraa/src/python/docs/
mraa.rst 19 Gpio
21 .. autoclass:: mraa.Gpio
52 :exclude-members: Gpio, Aio, Uart, Spi, I2c, Pwm, uint8Array, uint8Array_frompointer
  /hardware/bsp/intel/peripheral/libupm/src/lcd/
lcm1602.h 39 #include <mraa/gpio.hpp>
52 * @con i2c gpio
61 * parallel GPIO connections directly to the HD44780 in case you are not using
82 * Lcm1602 alternate constructor, used for GPIO based HD44780
249 // true if using i2c, false otherwise (gpio)
252 // gpio operation
253 mraa::Gpio* m_gpioRS;
254 mraa::Gpio* m_gpioEnable;
255 mraa::Gpio* m_gpioD0;
256 mraa::Gpio* m_gpioD1
    [all...]
  /hardware/bsp/intel/peripheral/libupm/src/my9221/
my9221.h 30 #include <mraa/gpio.hpp>
45 * @ingroup seeed display gpio eak
55 * @con gpio
96 mraa::Gpio m_clkPinCtx;
97 mraa::Gpio m_dataPinCtx;
  /device/google/contexthub/firmware/src/platform/stm32f4xx/
apInt.c 18 #include <gpio.h>
20 #include <plat/inc/gpio.h>
25 static struct Gpio *apIntWkup;
27 static struct Gpio *apIntNonWkup;

Completed in 1041 milliseconds

1 2 3