Jamal
Dependencies: GPS MODSERIAL mbed-src
Fork of GPS_U-blox_NEO-6M_Test_Code by
main.h
- Committer:
- edodm85
- Date:
- 2014-08-22
- Revision:
- 1:acd907fbcbae
- Parent:
- 0:ea14ad6794af
File content as of revision 1:acd907fbcbae:
#pragma once #include "mbed.h" #include "MODSERIAL.h" MODSERIAL pc(USBTX,USBRX); #if defined(TARGET_LPC1768) MODSERIAL gps(p13, p14); #elif defined(TARGET_LPC4330_M4) MODSERIAL gps(UART0_TX, UART0_RX); #endif char cDataBuffer[500]; int i = 0; void Init(); void parse(char *cmd, int n);