123456789101112131415161718192021222324 |
- /**********************************************************************************
- *Modem.h
- *
- ***********************************************************************************/
- #ifndef __GPS_H
- #define __GPS_H
- /***********************************************************************************/
- #define GPS_PWREN_PIN GPIO_Pin_9
- #define GPS_PWREN_PORT GPIOC
- #define GPS_PWREN_HIGH GPS_PWREN_PORT->BRR = GPS_PWREN_PIN
- #define GPS_PWREN_LOW GPS_PWREN_PORT->BSRR = GPS_PWREN_PIN
- char* GPSGetGPRMC(char *msg);
- #define GPS_DATA_SOCKET 1 //GPSÒµÎñʹÓõÄÄ£¿ésocketºÅ
- int GPSInit(void);
- #endif
- /***********************************************************************************/
|