blob: 80e661b373b50337dbed97d596f743dbcc8b16b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef app_h
#define app_h
#include "../../lib/config.h"
/**
* Run the application
*/
void runApp(Config config);
/**
* Save the GPS position
*/
void saveGPSPosition();
#endif
|