mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
- Expose HAL Configuration's `UiScale` - Updated docs - Fix for `tt_timer_alloc()` - Changed `enum class` to regular C `enum` - Renamed enums (add prefix) - Include `<stdbool.h>` where needed
24 lines
293 B
C
24 lines
293 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#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
|