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: MODSERIAL mbed-rtos mbed-src
Fork of UbloxGPSWithThread by
main.h
00001 #pragma once 00002 #include "mbed.h" 00003 #include "MODSERIAL.h" 00004 00005 MODSERIAL pc(USBTX,USBRX); 00006 00007 #if defined(TARGET_LPC1768) 00008 MODSERIAL gps(p13, p14); 00009 #elif defined(TARGET_LPC4330_M4) 00010 MODSERIAL gps(UART0_TX, UART0_RX); 00011 #endif 00012 00013 00014 char cDataBuffer[500]; 00015 int i = 0; 00016 00017 00018 void Init(); 00019 void splitString(char str[],char *delimiter); 00020 void parse(char *cmd, int n);
Generated on Sat Jul 30 2022 03:46:41 by
