GNSS 7 Click

Price:
Sale price A$68.64   Inc. GST
SKU:
MIKROE-3922
Out Of Stock

We will notify you when this product becomes available.

How it works?

GNSS 7 click carries the NEO-M9N an ultra-robust meter-level GNSS positioning receiver module from U-blox. The mentioned module features onboard serial flash memory, message integrity protection, anti-jamming, anti-spoofing, and many more, making this Click board™ meet even the most stringent requirements in versatile industrial and consumer applications, such as UAVs, vehicles and assets tracking.

For RF optimization, the NEO-M9N module features Advanced filtering algorithms mitigate the impact of RF interference and jamming, thus enabling the product to operate as intended. NEO-M9N click is designed mainly for using with NSS/GLONASS compatible active antennas. The NEO-M9 series utilizes concurrent reception of up to four GNSS (GPS, GLONASS, BeiDou, Galileo), recognizes multiple constellations simultaneously and provides outstanding positioning accuracy in scenarios where urban canyon or weak signals are involved.

gnss 7 click inner new img

Note: Button battery 1.55V is provided with the GNSS 7 click

The u-blox NEO-M9 modules can also benefit from the u-blox AssistNow assistance service. The Online service provides GNNS broadcast parameters, e.g. ephemeris, almanac plus time or rough position to reduce the receiver’s time to first fix significantly and improve acquisition sensitivity.

Hardware Backup Mode - If the main supply voltage fails, and a battery is connected to V_BCKP, parts of the receiver switch off, but the RTC still runs providing a timing reference for the receiver. This operating mode enables all relevant data to be saved in the backup RAM to allow a hot or warm start later.

The GNSS 7 click supports both SPI and I2C/UART communication protocol configurations. Therefore, this Click board™ have communication interface selection jumpers, in order to allow the user to set whether to use SPI communication or combination. A USB interface (micro USB port), which is compatible with the USB version 2.0 FS (Full Speed, 12 Mbit/s), can be used for communication as an alternative to the UART. The USB port can be used as a power supply as well if you need the click board™ to be a standalone device.

The Click board™ can operate with 3.3V MCUs only, it is set to work over the I2C and UART by default, and it is already equipped with the pull-up resistors. It is ready to be used as soon as it is inserted into a mikroBUS™ socket of the development system.

Specifications

 

TypeGPS/GNSS
ApplicationsAsset tracking, for navigation devices based on GPS and GLONASS, road navigation devices, public transport, wearable devices, etc.
On-board modulesThe NEO-M9N GNSS receiver module from u-blox with Active antena
Key FeaturesNEO-M9 series utilizes concurrent reception of up to four GNSS (GPS, GLONASS, BeiDou, Galileo)
InterfaceGPIO,I2C,SPI,UART,USB
CompatibilitymikroBUS
Click board sizeL (57.15 x 25.4 mm)
Input Voltage3.3V

 

Pinout diagram

This table shows how the pinout on GNSS 7 click corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).

NotesPinMikrobus logo.pngPinNotes
Interface SelectSEL1ANPWM16EXIExternal Interrupt 
Reset ModuleRST2RSTINT15PPSPulse-Per-Second (Time Pulse)
SPI Chip SelectCS3CSRX14RXUART Receive
SPI ClockSCK4SCKTX13TXUART Transmit
SPI Data OUTSDO5MISOSCL12SCLSCL I2C Clock
SPI Data INSDI6MOSISDA11SDASDA I2C Data
Power Supply3.3V73.3V5V10NC 
GroundGND8GNDGND9GNDGround

Onboard settings and indicators

LabelNameDefault Description
LD1PWRLEDPower LED Indicator
LD2PPSLEDPulse Per Second (by default) when the GNSS receiver has established a connection with the satellite constellation the LED starts blinking
JP1-JP2I2C/SPIUPCommunication Interface Sekection I2C/SPI: Upper position I2C, Lower position SPI
JP3-JP4UART/SPIUPCommunication Interface Sekection UART/SPI: Upper position UART, Lower position SPI


Software Support

We provide a library for the GNSS7 Click on our LibStock page, as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.

Library Description

Library carries generic command parser adopted for GPS-MNEA command based modules. Generic parser

Key functions:

  • gnss7_cmdSingle - Sends provided command to the module
  • gnss7_setHandle - Handler assignation to the provied command
  • gnss7_modulePower - Turn on module

Examples description

The application is composed of three sections :

  • System Initialization - Initializes all necessary GPIO pins, UART used for the communcation with GSM module and UART used for infromation logging
  • Application Initialization
  • Initializes driver, power on module and sends few command for the default module configuration
  • Application Task - running in parallel core state machine and checks for call flag. If call detected parser will hang up call.
void application_task ( ){    char *p_lat;    char *p_long;    char *p_alt;    char rsp_com[ 50 ] = {0};    gnss7_process( );    if ( timer_cnt > 5000 )    {        p_flag++;        if ( p_flag > 2 )        {            p_flag = 0;        }        timer_cnt = 0;        disp_flag = 1;    }    if ( ( p_flag == 0 ) && ( disp_flag == 1) )    {        mikrobus_logWrite( " ---------------------------------------- ", _LOG_LINE );        p_lat = gnss7_gps_parser( &demo_buf[ 0 ], &demo_cmd[ 0 ], 2 );        if ( p_lat == 0 )        {            mikrobus_logWrite( " Latitude : No data available!", _LOG_LINE );        }        else        {            strcpy( &rsp_com[ 0 ], p_lat );            mikrobus_logWrite( " Latitude : ", _LOG_TEXT );            mikrobus_logWrite( rsp_com, _LOG_LINE );        }        disp_flag = 0;        mikrobus_logWrite( " ---------------------------------------- ", _LOG_LINE );    }    if ( ( p_flag == 2 ) && ( disp_flag == 1) )    {        mikrobus_logWrite( " ---------------------------------------- ", _LOG_LINE );        p_alt = gnss7_gps_parser( &demo_buf[ 0 ], &demo_cmd[ 0 ], 9 );        if ( p_alt == 0 )        {            mikrobus_logWrite( " Altitude : No data available!", _LOG_LINE );        }        else        {            strcpy( &rsp_com[ 0 ], p_alt );            mikrobus_logWrite( " Altitude : ", _LOG_TEXT );            mikrobus_logWrite( rsp_com, _LOG_LINE );        }        disp_flag = 0;        mikrobus_logWrite( " ---------------------------------------- ", _LOG_LINE );    }    if ( ( p_flag == 1 ) && ( disp_flag == 1 ) )    {        mikrobus_logWrite( " ---------------------------------------- ", _LOG_LINE );        p_long = gnss7_gps_parser( &demo_buf[ 0 ], &demo_cmd[ 0 ], 4 );        if ( p_long == 0 )        {            mikrobus_logWrite( " Longitude : No data available!", _LOG_LINE );        }        else        {            strcpy( &rsp_com[ 0 ], p_long );            mikrobus_logWrite( " Longitude : ", _LOG_TEXT );            mikrobus_logWrite( rsp_com, _LOG_LINE );        }        disp_flag = 0;        mikrobus_logWrite( " ---------------------------------------- ", _LOG_LINE );    }}

All additional functions such as timer initialization and default handler.

Notes GPS:

  • The GPS module returns data in the form of NMEA responses
  • For example, we used the GGA response

For parsing, use the GPS Parser function to send the following form of arguments: The name of the NMEA response that you want to parse, the position of the data that you need. As a response - you will get a separate buffer with the requested data

The full application code, and ready to use projects can be found on our LibStock page.

Other mikroE Libraries used in the example:

  • UART
  • String
  • Conversions

Additional notes and informations

Depending on the development board you are using, you may need USB UART click, USB UART 2 click or RS232 click 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

This 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.

For more information about mikroSDK, visit the official page.

Shipping rates Australia wide and New Zealand

Please add the items in cart and proceed to checkout to calculate shipping cost. We have range of shipping options once goods are ready to dispatch. 
1. Regular shipping: Goods will be shipped using Australia post regular shipping service. 
2. Express shipping: Goods will be shipped using Australia post EXPRESS shipping service. 
3. Express split shipping: Local stock from Melbourne will be shipped ASAP (1 business day) using EXPRESS shipment while remaining items from overseas stock when arrived in Melbourne shipped using second EXPRESS shipment. 
4. Pick up from Thomastown, Melbourne is available on appointment between 9 am to 3 pm during business days. 

  

FAQ:

  • How do I estimate shipping for my order?
    • Add products in the shopping cart and head to the checkout page to estimate the shipping.

Dispatch time

Unless expressly agreed otherwise with you, we will not commence delivery of an order until we have received cleared payment of the purchase price in full.

All orders placed before 11 am AEST (Monday to Friday) will ordinarily be processed on the same day.

We will endeavour to ship the Products by the applicable time indicated on the website, but all times are indicative only.  All shipping times are dispatch times only, and actual delivery dates will depend on the shipping method chosen, delivery address and delivery service provider. 

Note- Please make a note during purchase if you require any item urgently. However we cannot guarantee that we will be able to comply with any request

*Go to Australia post delivery time calculation to get various Australia post service in your area please use our shipping postcode Thomastown, 3074 as the "from" address - https://auspost.com.au/parcels-mail/delivery-times.html?ilink=tools-open-deliv-times.

Shipping Destinations

We ship all products throughout mainland Australia, Tasmania and New Zealand - Including Darwin, Melbourne, Sydney, Tasmania, Adelaide, Brisbane, Perth, all metro and regional areas but do not deliver to areas in Australia where the Australia Post delivery network is not available. 

Check Express shipping delivery coverage area at - http://auspost.com.au/parcels-mail/delivery-areas.html

Receipt of deliveries

Deliveries to post office boxes are not permitted where delivery is by courier. If delivery is by courier and nobody is available at the delivery address to accept delivery when delivery is attempted then the courier may either:

  • leave the relevant parcel at the unattended address (the courier will do so if specified in your delivery requirements); or
  • re-attempt delivery at a later time or date, in which case we may charge you an additional re-delivery fee. 

Note that if a delivery is left unattended at the shipping address and is subsequently stolen then the theft is your responsibility, not ours.

Payment & Security

Apple Pay Google Pay Mastercard PayPal Shop Pay Visa

Your payment information is processed securely. We do not store credit card details nor have access to your credit card information.

You may also like