aboutsummaryrefslogtreecommitdiff
path: root/nrf528xx/main.c
blob: 22777f9478525d042adc7a72bf02a63d3e9866ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <zephyr/zephyr.h>
#include <zephyr/drivers/gpio.h>

static const struct gpio_dt_spec led = GPIO_DT_SPEC_GET(DT_ALIAS(led0), gpios);

void main() {
  gpio_pin_configure_dt(&led, GPIO_OUTPUT_ACTIVE);

  while (1) {
    gpio_pin_toggle_dt(&led);
    k_msleep(500);
  }
}