Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bayrem-gharsallaoui committed Nov 2, 2022
1 parent bd3e04a commit 3dc9d04
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/arduino/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ monitor_speed = 9600
build_flags = -I include
lib_deps =
paulstoffregen/TimerOne@^1.1
kaizoku-oh/RTCOS@^1.3.3
kaizoku-oh/RTCOS@^1.3.4
2 changes: 1 addition & 1 deletion examples/stm32/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ debug_tool = stlink
upload_protocol = stlink
monitor_speed = 115200
monitor_flags = --raw
lib_deps = kaizoku-oh/RTCOS@^1.3.3
lib_deps = kaizoku-oh/RTCOS@^1.3.4
2 changes: 1 addition & 1 deletion include/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @file : config.h
* @author : Bayrem GHARSELLAOUI
* @version : 1.3.3
* @version : 1.3.4
* @date : April 2021
* @brief : RTCOS default configuration file (can be used as a template for RTCOSConfig.h)
*
Expand Down
10 changes: 9 additions & 1 deletion include/rtcos.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @file : rtcos.h
* @author : Bayrem GHARSELLAOUI
* @version : 1.3.3
* @version : 1.3.4
* @date : April 2021
* @brief : RTCOS header file
*
Expand All @@ -19,6 +19,14 @@
#include <stdbool.h>
#include "config.h"


/*-----------------------------------------------------------------------------------------------*/
/* Defines */
/*-----------------------------------------------------------------------------------------------*/
#ifndef NULL
#define NULL 0x00000000uL
#endif /* NULL */

/*-----------------------------------------------------------------------------------------------*/
/* Types */
/*-----------------------------------------------------------------------------------------------*/
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "RTCOS",
"version": "1.3.3",
"version": "1.3.4",
"description": "An event-driven RTC (Run To Completion) OS/scheduler dedicated to ultra constrained devices.",
"keywords": "cooperative, event, scheduler, os",
"repository":
Expand Down
2 changes: 1 addition & 1 deletion src/rtcos.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @file : rtcos.c
* @author : Bayrem GHARSELLAOUI
* @version : 1.3.3
* @version : 1.3.4
* @date : April 2021
* @brief : RTCOS source file
*
Expand Down

0 comments on commit 3dc9d04

Please sign in to comment.