Android satellites info

This commit is contained in:
Florin9doi 2020-01-25 22:34:50 +02:00
parent c824fabd53
commit 2b57d2365f
8 changed files with 70 additions and 18 deletions

View file

@ -1357,11 +1357,3 @@ void NativeShutdown() {
// Previously we did exit() here on Android but that makes it hard to do things like restart on backend change.
// I think we handle most globals correctly or correct-enough now.
}
void SetGpsData(float latitude, float longitude, float altitude, float speed, float bearing, long long time) {
GPS::setGpsData(latitude, longitude, altitude, speed, bearing, time);
}
void PushCameraImage(long long length, unsigned char* image) {
Camera::pushCameraImage(length, image);
}