Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
RTOS-Threads/src/Task2.cpp@1:43f8ac7ca6d7, 2014-04-29 (annotated)
- Committer:
- pHysiX
- Date:
- Tue Apr 29 11:02:18 2014 +0000
- Revision:
- 1:43f8ac7ca6d7
- Child:
- 2:ab967d7b4346
Tidy file structure: threads in separate files for easy navigation
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
pHysiX | 1:43f8ac7ca6d7 | 1 | #include "Task2.h" |
pHysiX | 1:43f8ac7ca6d7 | 2 | #include "setup.h" |
pHysiX | 1:43f8ac7ca6d7 | 3 | |
pHysiX | 1:43f8ac7ca6d7 | 4 | /* Update ESC (333Hz) */ |
pHysiX | 1:43f8ac7ca6d7 | 5 | void Task2(void const *argument) |
pHysiX | 1:43f8ac7ca6d7 | 6 | { |
pHysiX | 1:43f8ac7ca6d7 | 7 | led2 = !led2; |
pHysiX | 1:43f8ac7ca6d7 | 8 | } |