ADD run multi-tasking in README

This commit is contained in:
fastium 2024-12-31 14:47:45 +01:00
parent 957860b2ff
commit 36e4a07102

View File

@ -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 :