Use C++ 23
Build / Build app and tests (ubuntu-24.04) (push) Failing after 2m28s
Documentation / Build (1.14.0) (push) Failing after 14s
Documentation / Build (1.9.6) (push) Successful in 11s
Documentation / Deploy (push) Has been skipped

This commit is contained in:
2026-04-22 22:06:15 -07:00
parent 168da24936
commit cefb043b7f
3 changed files with 8 additions and 3 deletions
+23
View File
@@ -0,0 +1,23 @@
/*
* Copyright (c) 2021 Nordic Semiconductor ASA
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/kernel.h>
#include <zephyr/logging/log.h>
#include <app_version.h>
LOG_MODULE_REGISTER(main, CONFIG_APP_LOG_LEVEL);
int main() {
printk("Zephyr Example Application %s\n", APP_VERSION_STRING);
printk("Build with C++ standard: %ldL\n", __cplusplus);
while (true) {
printk("Running...\n");
k_sleep(K_SECONDS(5));
}
return 0;
}