added poll api passthrough

This commit is contained in:
2026-03-11 20:34:44 +01:00
commit 9f05489b3a
13 changed files with 218 additions and 0 deletions

13
CMakeLists.txt Normal file
View File

@@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 3.20.0)
list(APPEND ZEPHYR_EXTRA_MODULES ${CMAKE_CURRENT_SOURCE_DIR}/modules/uart-interrupt-poll-bridge)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(zephyr-uart-polling-interrupt-bridge C CXX)
set(CMAKE_BUILD_TYPE Debug)
target_compile_options(app PRIVATE -O0 -g)
target_sources(app PRIVATE
src/main.cpp
)