Example #1
0
int main()
{
  gpio_pin_fsel(47, GPIO_FSEL_OUTPUT);

  while (1) {
    delay();
    gpio_pin_high(47);
    delay();
    gpio_pin_low(47);
  }

  return 0;
}
Example #2
0
File: sht.c Project: promovicz/rtos
static void scl_low(void)
{
    gpio_pin_low(0, SHT_SCL);
    wait();
}