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.
Diff: main.cpp
- Revision:
- 0:adae25491b93
- Child:
- 1:4fceb43e2dd3
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Mon Apr 18 01:14:36 2016 +0000 @@ -0,0 +1,15 @@ +#include "mbed.h" +#include "AoA_Est.h" +#include "Phase_Finder.h" + +int main() { + int x[2] = { 95, -82 }; + int y[2] = { 77, -110 }; + Phase_Finder phase(50000, 900); + Phase_Finder phase2(50000, 900); + Phase_Finder phase3(50000, 900); + AoA_Est AoA(2, x, y, 900); + while(1) { + + } +}