13 lines
172 B
C
13 lines
172 B
C
|
#pragma once
|
||
|
|
||
|
#include <SPI.h>
|
||
|
#include <SD.h>
|
||
|
|
||
|
#include <TinyGPS++.h>
|
||
|
|
||
|
void store_init();
|
||
|
|
||
|
void store_reading(uint32_t id, TinyGPSLocation location);
|
||
|
|
||
|
void store_close();
|