GNSS MAX Click Board
GNSS MAX Click Board
The GNSS MAX Click Board™ is a compact add-on board that provides fast positioning capability. This board features the MAX-M10S, an ultra-low-power GNSS receiver for high-performance asset-tracking from u-blox. The MAX-M10S supports the concurrent reception of four GNSS (GPS, GLONASS, Galileo, and BeiDou), which maximizes the position availability, particularly under challenging conditions such as in deep urban canyons. It is built on the u-blox M10 GNSS platform, which provides exceptional sensitivity and acquisition times for all L1 GNSS systems. It also comes with a configurable host interface, and advanced jamming and spoofing detection. This Click board™ is ideal for professional (industrial and consumer) applications such as asset trackers without compromising GNSS performance.
The GNSS MAX Click Board™ is supported by a mikroSDK compliant library, which includes functions that simplify software development. This Click board™ comes as a fully tested product, ready to be used on a system equipped with the mikroBUS™ socket.
How Does The GNSS MAX Click Board™ Work?
The GNSS MAX Click Board™ is based on the MAX-M10S (MAX-M10S-00B-01), a high-performance GNSS module from u-blox. The MAX-M10S features the u-blox M10 standard precision GNSS platform and provides exceptional sensitivity and acquisition times for all L1 GNSS signals. It also supports concurrent reception of up to four GNSS (GPS, GLONASS, Galileo, and BeiDou), maximizing position availability, particularly under challenging conditions such as in deep urban canyons. The MAX-M10S offers high sensitivity and minimal acquisition times while maintaining low system power.
The MAX-M10S module integrates an LNA followed by a SAW filter in the RF path for maximum sensitivity. Also, it detects jamming and spoofing attempts and reports them to the host so that the system can react to such events. Advanced filtering algorithms mitigate the impact of RF interference and jamming, thus enabling the product to operate as intended. The u-blox Super-S technology offers great RF sensitivity that improves the dynamic position accuracy by up to 25% with small antennas or in a non-line-of-sight scenario.
The GNSS MAX Click Board™ comes with a configurable host interface that allows communication with MCU using the selected interface. The MAX-M10S can communicate with MCU using the UART interface with commonly used UART RX and TX pins as its default communication protocol operating at 9600bps to transmit and exchange data with the host MCU or using the I2C interface. I2C interface is compatible with the Fast-Mode allowing a maximum bit rate of 400kbit/s.
In addition to these features, it also uses several mikroBUS™ pins. An active-low reset signal routed on the RST pin of the mikroBUS™ socket activates a hardware reset of the system, while the EXT pin routed to the PWM pin on the mikroBUS™ socket represents an external interrupt used for the module Wake-Up function. It also uses a PPS signal routed on the INT pin of the mikroBUS™ socket alongside a blue LED indicator marked as STATUS used for time pulse signal information and indication.
The GNSS MAX Click Board™ possesses the SMA antenna connector on which an appropriate antenna connects that MikroE has in its offer for improved range and received signal strength. Also, in the case of the primary supply failure, the module can use a backup supply voltage from a connected battery if you need the Click board™ to be a standalone device.
The GNSS MAX Click Board™ can be operated only with a 3.3V logic voltage level. The board must perform appropriate logic voltage level conversion before using MCUs with different logic levels. However, the Click board™ comes equipped with a library containing functions and an example code that can be used, as a reference, for further development.
SPECIFICATIONS
Type | GPS/GNSS |
Applications | Can be used for professional (industrial and consumer) applications such as asset trackers |
On-board modules | MAX-M10S - standard precision GNSS module from u-blox |
Key Features | Low power consumption, maximum position availability with concurrent reception of 4 GNSS, proven excellent performance, advanced jamming and spoofing detection, selectable interface, and more |
Interface | I2C,UART |
Compatibility | mikroBUS |
Click board size | M (42.9 x 25.4 mm) |
Input Voltage | 3.3V |
PINOUT DIAGRAM
This table shows how the pinout on GNSS MAX Click Board™ corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).
Notes | Pin | Pin | Notes | ||||
---|---|---|---|---|---|---|---|
NC | 1 | AN | PWM | 16 | EXI | Wake-Up Interrupt | |
Reset | RST | 2 | RST | INT | 15 | PPS | Time Pulse Signal |
NC | 3 | CS | RX | 14 | TX | UART TX | |
NC | 4 | SCK | TX | 13 | RX | UART RX | |
NC | 5 | MISO | SCL | 12 | SCL | I2C Clock | |
NC | 6 | MOSI | SDA | 11 | SDA | I2C Data | |
Power Supply | 3.3V | 7 | 3.3V | 5V | 10 | NC | |
Ground | GND | 8 | GND | GND | 9 | GND | Ground |
ONBOARD SETTINGS AND INDICATORS
Label | Name | Default | Description |
---|---|---|---|
LD1 | PWR | - | Power LED Indicator |
LD2 | PPS | - | Time Pulse LED Indicator |
GNSS MAX CLICK ELECTRICAL SPECIFICATIONS
Description | Min | Typ | Max | Unit |
---|---|---|---|---|
Supply Voltage | - | 3.3 | - | V |
Horizontal Position Accuracy | - | 1.5 | - | m |
Tracking & Navigation Sensitivity | - | -167 | - | dBm |
Operating Temperature Range | -40 | +25 | +85 | °C |
Software Support
We provide a library for the GNSS MAX Click Board™ as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
The package can be downloaded/installed directly from NECTO Studio The package Manager (recommended), downloaded from our LibStock™ or found on MikroE Github account.
Library Description
This library contains API for GNSSMAX Click driver.
Key Functions
gnssmax_generic_read
- GNSS MAX data reading function.gnssmax_reset
- GNSS MAX reset function.gnssmax_get_pps
- GNSS MAX reads timestamp pin state.
Example Description
This example showcases device abillity to read data outputed from device and show it's coordinates and altitude when connected.
void application_task ( void ) { gnssmax_process(); err_t error_flag = gnssmax_element_parser( RSP_GNGGA, RSP_GNGGA_LATITUDE_ELEMENT, latitude_data ); error_flag |= gnssmax_element_parser( RSP_GNGGA, RSP_GNGGA_LONGITUDE_ELEMENT, longitude_data ); error_flag |= gnssmax_element_parser( RSP_GNGGA, RSP_GNGGA_ALTITUDE_ELEMENT, altitude_data ); if ( error_flag == GNSSMAX_OK ) { if ( last_error_flag != GNSSMAX_OK ) { log_printf( &logger, "rn" ); } log_printf( &logger, ">Latitude:rn - deg: %.2s rn - min: %srn", latitude_data, &latitude_data[ 2 ] ); log_printf( &logger, ">Longitude:rn - deg: %.3s rn - min: %srn", longitude_data, &longitude_data[ 3 ] ); log_printf( &logger, ">Altitude:rn - %smrn", altitude_data ); log_printf( &logger, "----------------------------------------rn" ); } else if ( error_flag < GNSSMAX_ERROR ) { if ( last_error_flag == GNSSMAX_OK ) { log_printf( &logger, "Waiting for data " ); } log_printf( &logger, "." ); } if ( error_flag != GNSSMAX_ERROR ) { last_error_flag = error_flag; gnssmax_clear_app_buf( ); } }
The full application code, and ready to use projects can be installed directly from NECTO Studio The package Manager (recommended), downloaded from our LibStock™ or found on MikroE Github account.
Other mikroE Libraries used in the example:
- MikroSDK.Board
- MikroSDK.Log
- Click.GNSSMAX
Additional Notes and Information
Depending on the development board you are using, you may needs a USB UART Click Board™, USB UART 2 Click Board™ or RS232 Click Board™ to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.
MIKROSDK
The GNSS MAX Click Board™ is supported with mikroSDK - MikroElektronika Software Development Kit. To ensure proper operation of mikroSDK compliant Click board™ demo applications, mikroSDK should be downloaded from the LibStock and installed for the compiler you are using.
Software Support
We provide a library for the GNSS MAX Click Board™ as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.
The package can be downloaded/installed directly from NECTO Studio The package Manager (recommended), downloaded from our LibStock™ or found on MikroE Github account.
Library Description
This library contains API for GNSSMAX Click driver.
Key Functions
gnssmax_generic_read
- GNSS MAX data reading function.gnssmax_reset
- GNSS MAX reset function.gnssmax_get_pps
- GNSS MAX reads timestamp pin state.
Example Description
This example showcases device abillity to read data outputed from device and show it's coordinates and altitude when connected.
void application_task ( void ) { gnssmax_process(); err_t error_flag = gnssmax_element_parser( RSP_GNGGA, RSP_GNGGA_LATITUDE_ELEMENT, latitude_data ); error_flag |= gnssmax_element_parser( RSP_GNGGA, RSP_GNGGA_LONGITUDE_ELEMENT, longitude_data ); error_flag |= gnssmax_element_parser( RSP_GNGGA, RSP_GNGGA_ALTITUDE_ELEMENT, altitude_data ); if ( error_flag == GNSSMAX_OK ) { if ( last_error_flag != GNSSMAX_OK ) { log_printf( &logger, "rn" ); } log_printf( &logger, ">Latitude:rn - deg: %.2s rn - min: %srn", latitude_data, &latitude_data[ 2 ] ); log_printf( &logger, ">Longitude:rn - deg: %.3s rn - min: %srn", longitude_data, &longitude_data[ 3 ] ); log_printf( &logger, ">Altitude:rn - %smrn", altitude_data ); log_printf( &logger, "----------------------------------------rn" ); } else if ( error_flag < GNSSMAX_ERROR ) { if ( last_error_flag == GNSSMAX_OK ) { log_printf( &logger, "Waiting for data " ); } log_printf( &logger, "." ); } if ( error_flag != GNSSMAX_ERROR ) { last_error_flag = error_flag; gnssmax_clear_app_buf( ); } }
The full application code, and ready to use projects can be installed directly from NECTO Studio The package Manager (recommended), downloaded from our LibStock™ or found on MikroE Github account.
Other mikroE Libraries used in the example:
- MikroSDK.Board
- MikroSDK.Log
- Click.GNSSMAX
Additional Notes and Information
Depending on the development board you are using, you may needs a USB UART Click Board™, USB UART 2 Click Board™ or RS232 Click Board™ to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.
MIKROSDK
The GNSS MAX Click Board™ is supported with mikroSDK - MikroElektronika Software Development Kit. To ensure proper operation of mikroSDK compliant Click board™ demo applications, mikroSDK should be downloaded from the LibStock and installed for the compiler you are using.
GNSS MAX Click Board
Frequently Asked Questions
Have a Question?
Be the first to ask a question about this.