-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix piogen.py and regenerate platform.ini - Introduce an inline API for gpio drivers named "gpiol". - Add sample to be used with a button - Introduce CONFIG_KERNEL_SILENT_FAULTS - Introduce __fault_hook for debug purposes - Add samples for Arduino - Introduce function serial_init_baud() - Introduce led_get() - Introduce k_thread_set_priority() - Introduce CONFIG_SERIAL_USART_BAUDRATE - Add script to automatically generate Arduino samples for PIO ones - Add philosopher example for arduino - Add guards to prevent user to call k_yield_* from k_event or k_timer handlers. - Add CONFIG_KERNEL_SYSCLOCK_PERIOD_US and CONFIG_KERNEL_TIME_SLICE_US to arduino configuration - Add support for GPIO debug of kernel - Introduce new asserts - Shorten assertion failed message - Update readme.md - Remove .editorconfig - Improve Makefile - Add requirements.txt - Remove old arduino sample
- Loading branch information
1 parent
49e2821
commit dcf7dec
Showing
67 changed files
with
2,439 additions
and
687 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
{ | ||
// See http://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": [ | ||
"ms-vscode.cmake-tools", | ||
"twxs.cmake", | ||
"rockcat.avr-support", | ||
"mitaki28.vscode-clang", | ||
"ms-vscode.cpptools-extension-pack", | ||
], | ||
"unwantedRecommendations": [ | ||
"ms-vscode.cpptools", | ||
"platformio.platformio-ide", | ||
] | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright (c) 2022 Lucas Dietrich <[email protected]> | ||
* Copyright (c) 2023 Lucas Dietrich <[email protected]> | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
@@ -10,11 +10,13 @@ | |
|
||
void setup(void) | ||
{ | ||
led_init(); | ||
pinMode(LED_BUILTIN, OUTPUT); | ||
} | ||
|
||
void loop(void) | ||
{ | ||
led_toggle(); | ||
digitalWrite(LED_BUILTIN, HIGH); | ||
k_sleep(K_MSEC(200u)); | ||
digitalWrite(LED_BUILTIN, LOW); | ||
k_sleep(K_MSEC(200u)); | ||
} |
Oops, something went wrong.