28 lines
1017 B
C
Raw Normal View History

2020-06-03 23:40:05 +01:00
// SPDX-FileCopyrightText: Sony Semiconductor Solutions Corporation
//
// SPDX-License-Identifier: MIT
2020-06-16 20:39:56 +02:00
#ifndef MICROPY_INCLUDED_SHARED_BINDINGS_GNSS_GNSS_H
#define MICROPY_INCLUDED_SHARED_BINDINGS_GNSS_GNSS_H
#include "common-hal/gnss/GNSS.h"
#include "shared-bindings/gnss/SatelliteSystem.h"
#include "shared-bindings/gnss/PositionFix.h"
2020-06-24 11:06:25 +02:00
#include "lib/timeutils/timeutils.h"
2020-06-16 20:39:56 +02:00
extern const mp_obj_type_t gnss_type;
2020-06-24 11:04:05 +02:00
void common_hal_gnss_construct(gnss_obj_t *self, unsigned long selection);
2020-06-16 20:39:56 +02:00
void common_hal_gnss_deinit(gnss_obj_t *self);
bool common_hal_gnss_deinited(gnss_obj_t *self);
void common_hal_gnss_update(gnss_obj_t *self);
mp_float_t common_hal_gnss_get_latitude(gnss_obj_t *self);
mp_float_t common_hal_gnss_get_longitude(gnss_obj_t *self);
mp_float_t common_hal_gnss_get_altitude(gnss_obj_t *self);
2020-06-24 11:06:25 +02:00
void common_hal_gnss_get_timestamp(gnss_obj_t *self, timeutils_struct_time_t *tm);
2020-06-16 20:39:56 +02:00
gnss_positionfix_t common_hal_gnss_get_fix(gnss_obj_t *self);
#endif // MICROPY_INCLUDED_SHARED_BINDINGS_GNSS_GNSS_H