nrf_gps.h 401 B

1234567891011121314151617181920212223242526272829
  1. #ifndef NRF_GPS_H
  2. #define NRF_GPS_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include "boards.h"
  7. #include "_string.h"
  8. #include "nrf_uart.h"
  9. typedef void (*gps_rec_func)(bool stat);
  10. typedef struct{
  11. uint32_t latitude;
  12. uint32_t longiude;
  13. bool gps_act;
  14. gps_rec_func func;
  15. }nrf_gps_s;
  16. extern nrf_gps_s nrf_gps;
  17. void Gps_Data_Check(char *str);
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif // NRF_GPS_H