gpx.h 284 B

12345678910111213
  1. #pragma once
  2. #include "ff.h"
  3. #define GPX_POINTS_PROCESSING_ENABLE 0
  4. extern FIL gpx_file;
  5. unsigned char gpx_init(FIL *file);
  6. unsigned char gpx_write(struct location_s *loc, FIL *file);
  7. unsigned char gpx_close(FIL *file);
  8. void gpx_process_point(struct location_s *loc, FIL *file);