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.
Dependencies: mbed HeptaBattery SDFileSystem HeptaCamera_GPS
main.cpp
- Committer:
- HEPTA
- Date:
- 2019-08-19
- Revision:
- 20:6f12217d17bc
- Parent:
- 18:8b600cd66ec5
File content as of revision 20:6f12217d17bc:
#include "mbed.h"
#include "HeptaBattery.h"
#include "SDFileSystem.h"
#include "HeptaCamera_GPS.h"
Serial pc(USBTX,USBRX);
HeptaBattery battery(p16,p26);
SDFileSystem sd(p5, p6, p7, p8, "sd");
HeptaCamera_GPS cam_gps(p13, p14,p25,p24);
int main()
{
cam_gps.gps_setting();
pc.printf("GPS Raw Data Mode\r\n");
while(1) pc.putc(cam_gps.getc());
}