mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
22 lines
271 B
C
22 lines
271 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool tt_gps_has_coordinates();
|
|
|
|
bool tt_gps_get_coordinates(
|
|
float& longitude,
|
|
float& latitude,
|
|
float& speed,
|
|
float& course,
|
|
int& day,
|
|
int& month,
|
|
int& year
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|