diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-11-20 15:50:09 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-11-20 15:50:09 +0100 |
commit | a28d39af910bf5f7b750fa1b6f77fb219eb88769 (patch) | |
tree | 1f225ed486b3b251162505b599a7213e2e5aba76 | |
parent | a72b2ece0338905391538a78ea7b3df3a9a6f324 (diff) |
move main out of src folder
-rw-r--r-- | nrf528xx/CMakeLists.txt | 2 | ||||
-rw-r--r-- | nrf528xx/main.c (renamed from nrf528xx/src/main.c) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/nrf528xx/CMakeLists.txt b/nrf528xx/CMakeLists.txt index 5265fc3..d363edc 100644 --- a/nrf528xx/CMakeLists.txt +++ b/nrf528xx/CMakeLists.txt @@ -3,5 +3,5 @@ cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(NONE) -target_sources(app PRIVATE src/main.c) +target_sources(app PRIVATE main.c) diff --git a/nrf528xx/src/main.c b/nrf528xx/main.c index 649af38..22777f9 100644 --- a/nrf528xx/src/main.c +++ b/nrf528xx/main.c @@ -8,6 +8,6 @@ void main() { while (1) { gpio_pin_toggle_dt(&led); - k_msleep(1000); + k_msleep(500); } } |