All project

Dependencies:   MMA8452 MODSERIAL mbed-rtos mbed

Fork of GPS_U-blox_NEO-6M_Test_Code by Edoardo De Marchi

main.h

Committer:
yanay_amir
Date:
2016-06-27
Revision:
2:a01fc505b443
Parent:
1:acd907fbcbae

File content as of revision 2:a01fc505b443:

#pragma once 

#include "MODSERIAL.h"



#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);