Added ble code
All checks were successful
Build & Publish / build (push) Successful in 8m13s

This commit is contained in:
2023-08-04 10:27:09 +02:00
parent cfe0381610
commit 2354da0722
9 changed files with 410 additions and 16 deletions

View File

@@ -9,4 +9,5 @@ find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(app LANGUAGES C)
target_sources(app PRIVATE src/main.c)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})

View File

@@ -6,9 +6,6 @@
#include <zephyr/kernel.h>
#include <app_version.h>
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(main, CONFIG_APP_LOG_LEVEL);
int main(void)
{
printk("Zephyr Example Application %s\n", APP_VERSION_STRING);