Simple test program to get familiar with functionality of MBED RTOS on ST Nucleo-F411RE. Tasks for LED blinking, user button, temperature measurement with DS1620, temperature measurement with internal temperature sensor of ST32F411RE, ultrasonic distance measurement and displaying result on 16x2 TextLCD.
Dependencies: DS1620_improved TextLCD_improved mbed-rtos mbed
tsk_led.h@17:94c385ff2641, 2015-12-18 (annotated)
- Committer:
- dzoni
- Date:
- Fri Dec 18 15:23:21 2015 +0000
- Revision:
- 17:94c385ff2641
- Parent:
- 11:e89f89c0920b
- Child:
- 18:be0130c42925
Bugfixes. Works but freezes after some time. Button task requires rewrite (InterruptIn).
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
dzoni | 9:645f0e517017 | 1 | #ifndef TSK_LED_H |
dzoni | 9:645f0e517017 | 2 | #define TSK_LED_H |
dzoni | 9:645f0e517017 | 3 | |
dzoni | 9:645f0e517017 | 4 | struct led_flash_times_struct { |
dzoni | 9:645f0e517017 | 5 | uint32_t on_time; |
dzoni | 9:645f0e517017 | 6 | uint32_t off_time; |
dzoni | 9:645f0e517017 | 7 | }; |
dzoni | 9:645f0e517017 | 8 | |
dzoni | 9:645f0e517017 | 9 | extern struct led_flash_times_struct led_flash_times; |
dzoni | 9:645f0e517017 | 10 | |
dzoni | 17:94c385ff2641 | 11 | extern uint32_t initLed(void const *args); |
dzoni | 11:e89f89c0920b | 12 | extern void led_thread(void const *args); |
dzoni | 9:645f0e517017 | 13 | |
dzoni | 9:645f0e517017 | 14 | #endif |