aboutsummaryrefslogtreecommitdiff
path: root/nrf528xx/src
diff options
context:
space:
mode:
Diffstat (limited to 'nrf528xx/src')
-rw-r--r--nrf528xx/src/main.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/nrf528xx/src/main.c b/nrf528xx/src/main.c
deleted file mode 100644
index 649af38..0000000
--- a/nrf528xx/src/main.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#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(1000);
- }
-}