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/inc/Task4.h
- Committer:
- pHysiX
- Date:
- 2014-05-02
- Revision:
- 14:267368c83b6a
- Parent:
- 2:ab967d7b4346
- Child:
- 19:bd88749c8db4
File content as of revision 14:267368c83b6a:
#include "mbed.h" #include "rtos.h" #include "tasks.h" #ifndef _TASK4_H_ #define _TASK4_H_ #define TASK4_PERIOD 1000/TASK4_FREQUENCY extern int ESCpower[4]; extern bool armed; /* Update ESC */ /* 200Hz <= PWM frequency <= 400Hz */ void Task4(void const *argument); #endif