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.
2gcs.h
00001 #define FCC_DATA_SIZE 52 //39 Direct from IMU 00002 00003 void toGCS(){ 00004 00005 00006 fcc.US++;// = 11; 00007 if(fcc.US>1000) fcc.US = 0; 00008 00009 char *FtoG = (char *)&fcc, i; //&IMU 00010 00011 00012 radio.putc(0xFF); 00013 radio.putc(0xFF); 00014 for (i=0;i<FCC_DATA_SIZE;i++) radio.putc(*FtoG++); 00015 radio.putc(0x0D); 00016 00017 myled = !myled; 00018 }
Generated on Fri Jul 15 2022 07:04:28 by
1.7.2