This class adds HTTP, FTP and CellLocate client support for u-blox modules for the C027 and C030 boards (excepting the C030 N2xx flavour) from mbed 5.5 onwards. The HTTP, FTP and CellLocate operations are all hosted on the module, minimizing RAM consumption in the mbed MCU. It also sub-classes ublox-cellular-driver-gen to bring in SMS, USSD and modem file system support if you need to use these functions at the same time as the cellular interface.

Dependencies:   ublox-at-cellular-interface

Dependents:   example-ublox-at-cellular-interface-ext HelloMQTT ublox_new_driver_test example-ublox-at-cellular-interface-ext ... more

Embed: (wiki syntax)

« Back to documentation index

UbloxATCellularInterfaceExt::CellLocData Struct Reference

UbloxATCellularInterfaceExt::CellLocData Struct Reference

Cell Locate data. More...

#include <UbloxATCellularInterfaceExt.h>

Data Fields

volatile bool validData
 Flag for indicating if data is valid.
struct tm time
 GPS Timestamp.
volatile float longitude
 Estimated longitude, in degrees.
volatile float latitude
 Estimated latitude, in degrees.
volatile int altitude
 Estimated altitude, in meters^2.
volatile int uncertainty
 Maximum possible error, in meters.
volatile int speed
 Speed over ground m/s^2.
volatile int direction
 Course over ground in degrees.
volatile int verticalAcc
 Vertical accuracy, in meters^2.
volatile CellSensType sensor
 Sensor used for last calculation.
volatile int svUsed
 number of satellite used.

Detailed Description

Cell Locate data.

Definition at line 374 of file UbloxATCellularInterfaceExt.h.


Field Documentation

volatile int altitude

Estimated altitude, in meters^2.

Definition at line 379 of file UbloxATCellularInterfaceExt.h.

volatile int direction

Course over ground in degrees.

Definition at line 382 of file UbloxATCellularInterfaceExt.h.

volatile float latitude

Estimated latitude, in degrees.

Definition at line 378 of file UbloxATCellularInterfaceExt.h.

volatile float longitude

Estimated longitude, in degrees.

Definition at line 377 of file UbloxATCellularInterfaceExt.h.

volatile CellSensType sensor

Sensor used for last calculation.

Definition at line 384 of file UbloxATCellularInterfaceExt.h.

volatile int speed

Speed over ground m/s^2.

Definition at line 381 of file UbloxATCellularInterfaceExt.h.

volatile int svUsed

number of satellite used.

Definition at line 385 of file UbloxATCellularInterfaceExt.h.

struct tm time

GPS Timestamp.

Definition at line 376 of file UbloxATCellularInterfaceExt.h.

volatile int uncertainty

Maximum possible error, in meters.

Definition at line 380 of file UbloxATCellularInterfaceExt.h.

volatile bool validData

Flag for indicating if data is valid.

Definition at line 375 of file UbloxATCellularInterfaceExt.h.

volatile int verticalAcc

Vertical accuracy, in meters^2.

Definition at line 383 of file UbloxATCellularInterfaceExt.h.