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.
main.cpp
- Committer:
- GaspardD
- Date:
- 2019-09-28
- Revision:
- 2:e9d928fd327a
- Parent:
- 1:8faddee0e52f
- Child:
- 3:1b7eb426247e
File content as of revision 2:e9d928fd327a:
#include "sm_esc.h" #include "sm_servo.h" int main() { initGPIOs(); init_interruptions(); //init state machines pc.printf("init state machines"); init_sm_esc(); init_sm_servo(); while(1) { update_sm_esc(); update_sm_servo(); output_sm_esc(); output_sm_servo(); } }