Purpose: Simple application example with 2 threads communicating 32-bit integers through a Queue event-object.
Dependencies: IHM_V2
Fork of mbed-os-example-mbed5-blinky by
Title : mbed-os-q-32-bits-tx-rx
Purpose: Simple application example with 2 threads communicating 32-bit integers through a Queue event-object. Target: L432KC / Nboard (from IUT-Cachan) Tested: YES (2019-01-09) Author: Jacques-Olivier Klein - IUT de CACHAN Date: 2018-02-10 rev. 2019-01-09 OS_STACK_SIZE=4096 Libraries: mbed-os rev5345:c966348(03jan2019) + IHMV2 (from IUT-Cachan) rev6:ad91067
Revision 28:5ac42b4bb038, committed 2019-01-09
- Comitter:
- jacquesolivierklein
- Date:
- Wed Jan 09 12:26:40 2019 +0000
- Parent:
- 27:1fa50737793f
- Commit message:
- update for mbed-os-5.11 (and IHM-V2)
Changed in this revision
diff -r 1fa50737793f -r 5ac42b4bb038 IHM_V1.lib --- a/IHM_V1.lib Sat Feb 10 21:52:20 2018 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -http://developer.mbed.org/teams/NBoard/code/IHM_V1/#a9e51ac904e2
diff -r 1fa50737793f -r 5ac42b4bb038 IHM_V2.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/IHM_V2.lib Wed Jan 09 12:26:40 2019 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/teams/NBoard/code/IHM_V2/#ad91067e3f6d
diff -r 1fa50737793f -r 5ac42b4bb038 main.cpp --- a/main.cpp Sat Feb 10 21:52:20 2018 +0000 +++ b/main.cpp Wed Jan 09 12:26:40 2019 +0000 @@ -1,6 +1,6 @@ // Title : mbed-os-q-32-bits-tx-rx // Author: Jacques-Olivier Klein - IUT de CACHAN -// Date: 2018-02-10 +// Date: 2018-02-10 rev. 2019-01-06 #include "mbed.h" #include "IHM.h" @@ -25,15 +25,15 @@ { ihm.LCD_clear(); ihm.LCD_printf("q-32b-tx-rx-%s %s",__DATE__,__TIME__); printf("mbed-os-q-32-bits-tx-rx-%s %s\n\r",__DATE__,__TIME__); - printf("DEFAULT_STACK_SIZE:%d\n\r", DEFAULT_STACK_SIZE); + printf("OS_STACK_SIZE:%d\n\r", OS_STACK_SIZE); thread_tx_q.start(tx_q); thread_rx_q.start(rx_q); while(1){ - Thread::wait(3000); + wait(3.000); L0=!L0; - printf("* [pid-%d]Main \n\r",Thread::gettid()); + printf("* [pid-%d]Main \n\r",osThreadGetId()); } } @@ -43,7 +43,7 @@ L1 = ! L1; printf(" * Tx_q data:%d\n\r", j); the_queue.put((int*)j++); - Thread::wait(1000); + wait(1.000); } }
diff -r 1fa50737793f -r 5ac42b4bb038 mbed-os.lib --- a/mbed-os.lib Sat Feb 10 21:52:20 2018 +0000 +++ b/mbed-os.lib Wed Jan 09 12:26:40 2019 +0000 @@ -1,1 +1,1 @@ -https://github.com/ARMmbed/mbed-os/#bcf7085d85b2811b5d68bdda192c754eadfb8f88 +https://github.com/ARMmbed/mbed-os/#c966348d3f9ca80843be7cdc9b748f06ea73ced0
diff -r 1fa50737793f -r 5ac42b4bb038 readme.txt --- a/readme.txt Sat Feb 10 21:52:20 2018 +0000 +++ b/readme.txt Wed Jan 09 12:26:40 2019 +0000 @@ -3,8 +3,12 @@ Purpose: Simple application example with 2 threads communicating 32-bit integers through a Queue event-object. Target: L432KC / Nboard (from IUT-Cachan) -Tested: yes +Tested: YES (2019-01-09) Author: Jacques-Olivier Klein - IUT de CACHAN -Date: 2018-02-10 -DEFAULT_STACK_SIZE=2048 -Libraries: mbed-os rev2741:bcf7085(26feb-2017) + IHMV1 (from IUT-Cachan) rev4:a9e51ac +Date: 2018-02-10 rev. 2019-01-09 +OS_STACK_SIZE=4096 +Libraries: mbed-os rev5345:c966348(03jan2019) + IHMV2 (from IUT-Cachan) rev6:ad91067 + +2019-01-06 : update mbed-os, IHMV1->V2, Thread::wait(int ms)-> wait(float s), +ThreadGettid->osThreadGetId, DEFLAULT_STACK_SIZE -> OS_STACK_SIZE, +L432KC Firmare update (ST-LINK) -> test OK. \ No newline at end of file