From 36e4a071023a77083340c588f1d0b78ad9a33983 Mon Sep 17 00:00:00 2001 From: fastium Date: Tue, 31 Dec 2024 14:47:45 +0100 Subject: [PATCH] ADD run multi-tasking in README --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 68a50c1..4d7a5f6 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ mbed test -m DISCO_H747I -t GCC_ARM -n advdembsof_library-tests-sensors-hdc1000 On `.mbedignore` put at the end of the file ``` static_scheduling_with_event/* +multi_tasking/* ``` On main.cpp include `"static_scheduling/bike_system.hpp"` and use : @@ -39,6 +40,7 @@ bikeSystem.start(); On `.mbedignore` put at the end of the file : ``` static_scheduling_with_event/* +multi_tasking/* ``` On main.cpp include `"static_scheduling/bike_system.hpp"` and use : @@ -51,6 +53,20 @@ bikeSystem.startWithEventQueue(); On `.mbedignore` put at the end of the file ``` static_scheduling/* +static_scheduling_with_event/* +``` + +On main.cpp include `"multi_tasking/bike_system.hpp"` and use : +```cpp +multi_tasking::BikeSystem bikeSystem; +bikeSystem.start(); +``` + +## Run multi-tasking +On `.mbedignore` put at the end of the file +``` +static_scheduling/* +multi_tasking/* ``` On main.cpp include `"static_scheduling_with_event/bike_system.hpp"` and use :