![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
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@11:e89f89c0920b, 2015-12-14 (annotated)
- Committer:
- dzoni
- Date:
- Mon Dec 14 17:15:29 2015 +0000
- Revision:
- 11:e89f89c0920b
- Parent:
- 9:645f0e517017
- Child:
- 17:94c385ff2641
Compiles OK, ready for testing.
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 | 11:e89f89c0920b | 11 | extern void led_thread(void const *args); |
dzoni | 9:645f0e517017 | 12 | |
dzoni | 9:645f0e517017 | 13 | #endif |