mbed-os/features/cellular/framework/targets/UBLOX
mudassar-ublox 075a6fdd99 Override virtual get_ip_address funtion in ublox-api for targets UBLOX_C030_U201 and UBLOX_C027 2020-01-09 12:16:48 +05:00
..
AT Override virtual get_ip_address funtion in ublox-api for targets UBLOX_C030_U201 and UBLOX_C027 2020-01-09 12:16:48 +05:00
N2XX Cellular: Fix astyle 2020-01-06 22:35:53 -08:00
PPP Cellular: Add NIDD for Quectel/BC95 2020-01-06 22:35:18 -08:00
README.md Remove target dependency in ublox cellular APIs 2019-11-05 14:25:54 +05:00

README.md

Configuring Ublox Cellular Modems for custom targets

In order to use cellular APIs with custom targets, user needs to define ublox modem macros in mbed_app.json configuration file:

"target_overrides": {
    "*": {
        "mbed-trace.enable": true,
        "platform.stdio-convert-newlines": true,
        "platform.stdio-baud-rate": 115200,
        "platform.default-serial-baud-rate": 115200
    },
    "K64F": {
        "target.macros_add": ["UBX_MDM_SARA_R41XM", "UBX_MDM_SARA_R412M"]
    }
}

List of supported ublox modems and their respective macros are as follow:

Ublox mbed board Modem Name Family Macro Modem Macro
UBLOX_C027 SARA-G350 UBX_MDM_SARA_G3XX UBX_MDM_SARA_G350
UBLOX_C030_N211 SARA-N211 UBX_MDM_SARA_N2XX UBX_MDM_SARA_N211
UBLOX_C030_U201 SARA-U201 UBX_MDM_SARA_U2XX UBX_MDM_SARA_U201
UBLOX_C030_R410M SARA-R410M UBX_MDM_SARA_R41XM UBX_MDM_SARA_R410M
UBLOX_C030_R412M SARA-R412M UBX_MDM_SARA_R41XM UBX_MDM_SARA_R412M