2020-06-16 14:41:02 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright 2020 Sony Semiconductor Solutions Corporation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
2020-06-24 05:06:25 -04:00
|
|
|
#include <string.h>
|
2020-06-16 14:41:02 -04:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
#include "py/runtime.h"
|
|
|
|
|
|
|
|
#include "shared-bindings/gnss/GNSS.h"
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
const char* devpath;
|
|
|
|
int fd;
|
|
|
|
} gnss_dev_t;
|
|
|
|
|
|
|
|
STATIC gnss_dev_t gnss_dev = {"/dev/gps", -1};
|
|
|
|
|
|
|
|
static gnss_positionfix_t fix_to_positionfix_type(uint8_t fix) {
|
|
|
|
switch (fix) {
|
|
|
|
case CXD56_GNSS_PVT_POSFIX_2D:
|
|
|
|
return POSITIONFIX_2D;
|
|
|
|
case CXD56_GNSS_PVT_POSFIX_3D:
|
|
|
|
return POSITIONFIX_3D;
|
|
|
|
case CXD56_GNSS_PVT_POSFIX_INVALID:
|
|
|
|
default:
|
|
|
|
return POSITIONFIX_INVALID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-24 05:04:05 -04:00
|
|
|
void common_hal_gnss_construct(gnss_obj_t *self, unsigned long selection) {
|
2020-06-16 14:41:02 -04:00
|
|
|
if (gnss_dev.fd < 0) {
|
|
|
|
gnss_dev.fd = open(gnss_dev.devpath, O_RDONLY);
|
|
|
|
if (gnss_dev.fd < 0) {
|
|
|
|
mp_raise_ValueError(translate("Could not initialize GNSS"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self->satellite_system = 0;
|
|
|
|
self->fix = POSITIONFIX_INVALID;
|
2020-06-24 05:04:05 -04:00
|
|
|
|
|
|
|
unsigned long sel = 0;
|
|
|
|
|
|
|
|
if (selection & SATELLITESYSTEM_GPS) {
|
|
|
|
sel |= CXD56_GNSS_SAT_GPS;
|
|
|
|
} else if (selection & SATELLITESYSTEM_GLONASS) {
|
|
|
|
sel |= CXD56_GNSS_SAT_GLONASS;
|
|
|
|
} else if (selection & SATELLITESYSTEM_SBAS) {
|
|
|
|
sel |= CXD56_GNSS_SAT_SBAS;
|
|
|
|
} else if (selection & SATELLITESYSTEM_QZSS_L1CA) {
|
|
|
|
sel |= CXD56_GNSS_SAT_QZ_L1CA;
|
|
|
|
} else if (selection & SATELLITESYSTEM_QZSS_L1S) {
|
|
|
|
sel |= CXD56_GNSS_SAT_QZ_L1S;
|
|
|
|
}
|
|
|
|
|
|
|
|
ioctl(gnss_dev.fd, CXD56_GNSS_IOCTL_SELECT_SATELLITE_SYSTEM, sel);
|
|
|
|
ioctl(gnss_dev.fd, CXD56_GNSS_IOCTL_START, CXD56_GNSS_STMOD_COLD);
|
2020-06-16 14:41:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_gnss_deinit(gnss_obj_t *self) {
|
|
|
|
if (common_hal_gnss_deinited(self)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
close(gnss_dev.fd);
|
|
|
|
gnss_dev.fd = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool common_hal_gnss_deinited(gnss_obj_t *self) {
|
|
|
|
return gnss_dev.fd < 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_gnss_update(gnss_obj_t *self) {
|
|
|
|
struct cxd56_gnss_positiondata_s positiondata;
|
|
|
|
|
|
|
|
read(gnss_dev.fd, &positiondata, sizeof(struct cxd56_gnss_positiondata_s));
|
|
|
|
|
|
|
|
if (positiondata.receiver.pos_dataexist) {
|
|
|
|
self->fix = positiondata.receiver.pos_fixmode;
|
|
|
|
self->latitude = positiondata.receiver.latitude;
|
|
|
|
self->longitude = positiondata.receiver.longitude;
|
|
|
|
self->altitude = positiondata.receiver.altitude;
|
2020-06-24 05:06:25 -04:00
|
|
|
memcpy(&self->date, &positiondata.receiver.date, sizeof(struct cxd56_gnss_date_s));
|
|
|
|
memcpy(&self->time, &positiondata.receiver.time, sizeof(struct cxd56_gnss_time_s));
|
2020-06-16 14:41:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_float_t common_hal_gnss_get_latitude(gnss_obj_t *self) {
|
|
|
|
return (mp_float_t) self->latitude;
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_float_t common_hal_gnss_get_longitude(gnss_obj_t *self) {
|
|
|
|
return (mp_float_t) self->longitude;
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_float_t common_hal_gnss_get_altitude(gnss_obj_t *self) {
|
|
|
|
return (mp_float_t) self->altitude;
|
|
|
|
}
|
|
|
|
|
2020-06-24 05:06:25 -04:00
|
|
|
void common_hal_gnss_get_timestamp(gnss_obj_t *self, timeutils_struct_time_t *tm) {
|
|
|
|
tm->tm_year = self->date.year;
|
|
|
|
tm->tm_mon = self->date.month;
|
|
|
|
tm->tm_mday = self->date.day;
|
|
|
|
tm->tm_hour = self->time.hour;
|
|
|
|
tm->tm_min = self->time.minute;
|
|
|
|
tm->tm_sec = self->time.sec;
|
|
|
|
}
|
|
|
|
|
2020-06-16 14:41:02 -04:00
|
|
|
gnss_positionfix_t common_hal_gnss_get_fix(gnss_obj_t *self) {
|
|
|
|
return fix_to_positionfix_type(self->fix);
|
|
|
|
}
|