diff options
Diffstat (limited to 'nrf528xx')
| -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);    }  } |