Difference between revisions of "Microduino-NEO-6M"

From Microduino Wiki
Jump to: navigation, search
(Pin Description)
(Development)
 
(6 intermediate revisions by 3 users not shown)
Line 6: Line 6:
 
Microduino-NEO module maybe the most beautiful GPS module that you've seen. Its core module use UBLOX NEO-6M, high sensitivity, update rate up to 5Hz, using mini ceramic antenna with IPEX interface, and build-in a rechargeable battery backup.
 
Microduino-NEO module maybe the most beautiful GPS module that you've seen. Its core module use UBLOX NEO-6M, high sensitivity, update rate up to 5Hz, using mini ceramic antenna with IPEX interface, and build-in a rechargeable battery backup.
  
|-
 
|
 
 
==Feature==
 
==Feature==
 
*High sensitivity;
 
*High sensitivity;
Line 14: Line 12:
 
*PPS indicator,easily determine the current status of the module;
 
*PPS indicator,easily determine the current status of the module;
 
*Built-in rechargeable backup battery (to support warm start or hot start);
 
*Built-in rechargeable backup battery (to support warm start or hot start);
*Small, cheap, stackable, opened platform;  
+
*Small, cheap, stackable, opened platform;
 
*Open source hardware circuit design, compatible with the Arduino IDE development environment for programming; ;
 
*Open source hardware circuit design, compatible with the Arduino IDE development environment for programming; ;
*Define unified interface Microduino specification and contain rich peripheral modules. Set up the quick connection with other Microduino modules and sensors easily and flexibly.  
+
*Define unified interface Microduino specification and contain rich peripheral modules. Set up the quick connection with other Microduino modules and sensors easily and flexibly.
 
*2.54 pitch row female connector for easy integration into breadboard.
 
*2.54 pitch row female connector for easy integration into breadboard.
  
Line 48: Line 46:
 
**TTL,compatible 3.3V/5V microcontroller system
 
**TTL,compatible 3.3V/5V microcontroller system
 
**Serial communication baud rate:
 
**Serial communication baud rate:
***Microduino NEO-6M module supports several baud rate:4800、9600、38400(defult)、57600;
+
***Microduino NEO-6M module supports several baud rate:4800,9600,38400(defult),57600;
  
 
* Set the baud rate by two resistors (R3,R4,recommend value is 1k):
 
* Set the baud rate by two resistors (R3,R4,recommend value is 1k):
Line 72: Line 70:
 
|}
 
|}
  
[[File:NEO-6-Pinout-1.jpg|800px|thumb|center|Microduino-NEO-6-Pinout]]
+
 
[[File:NEO-6m-Pinout-1.jpg|800px|thumb|center|Microduino-NEO-6m-Pinout]]
+
[[File:NEO6M-Pinout-2.jpg|800px|thumb|center|Microduino-NEO6M-Pinout]]
 +
[[File:NEO6M-Pinout-1.jpg|800px|thumb|center|Microduino-NEO6M-Pinout]]
  
 
==Document==
 
==Document==
Line 82: Line 81:
 
*GPS module:UBLOX NEO-6M:'''[[File:NEO-6 DataSheet (GPS.G6-HW-09005).pdf]]'''
 
*GPS module:UBLOX NEO-6M:'''[[File:NEO-6 DataSheet (GPS.G6-HW-09005).pdf]]'''
 
*Super capacitor:XH414H '''[[File:XH414H.pdf]]'''
 
*Super capacitor:XH414H '''[[File:XH414H.pdf]]'''
*Antenna Socket:IPEX  '''[[File:IPEX.pdf]]'''
 
  
 
*NMEA-0183 protocol: '''[[File:NMEA-0183 CN.pdf]]''','''[[File:NMEA-0183 EN.pdf]]'''
 
*NMEA-0183 protocol: '''[[File:NMEA-0183 CN.pdf]]''','''[[File:NMEA-0183 EN.pdf]]'''
 
*u-center GPS evaluation software User Guide: '''[[File:U-center GPS evaluation software User Guide.pdf]]'''
 
*u-center GPS evaluation software User Guide: '''[[File:U-center GPS evaluation software User Guide.pdf]]'''
 
  
 
==Development==
 
==Development==
 
* Make sure the +3.3 v power supply current can reach 200ma, not recommended use FT232R debugging directly, because FT232R's output +3.3 v current is too small.
 
* Make sure the +3.3 v power supply current can reach 200ma, not recommended use FT232R debugging directly, because FT232R's output +3.3 v current is too small.
 +
 +
* We suggest to use Microduino Core 32u4 to debug this BT module:
 +
** 32u4 module can use the USB to simulate the serial 0, and BT uses the 32u4's serial 1 (RX0,TX1), so you don't need change the existing jumper (RX0,TX1) and it won't impact the program downloading and serial's function.
 +
* Microduino Shield BT4.0 uses the default serial RX0,TX1 to communicate with Core module, so can connect with Microduino FT232 directly.
 +
 +
===Use PC to debug===
 +
* Use serial directly:
 +
** No need superimpose the FT232 directly, cross connect the FT232 and NEO-6M's RX0,TX1.
 +
 +
===Use FT232R、Core download and debug===
 +
*Use default jumper (RX0、TX1):
 +
**Unplug the Microduino NEO-6M during download program;
 +
*If you want to change the jumper cables to meet your requirement:cut the connection between two intermediate of the pad and RX0/TX1, and then connect them to D2, D3.
 +
**If changed the jumper, need the change the serial connection between Microduino NEO-6M and Core module, change the connection "TX-RX0、RX-TX1" to following:
 +
***TX-D2、RX-D3 (For Core+'s Serial1)
  
 
===Arduino library and supported package===
 
===Arduino library and supported package===
Line 97: Line 109:
 
*[http://www.u-blox.com/en/evaluation-tools-a-software/u-center/u-center.html u-center-8.0]
 
*[http://www.u-blox.com/en/evaluation-tools-a-software/u-center/u-center.html u-center-8.0]
  
*Microduino NEO-6M uses RX0,TX1 to communicate with Core module, so can't superimposed with Microduino FT232R directly.
+
===How to use the library===
 
+
*For Adafruit_GPS library:
===Debugging with PC===
+
**Make sure the GPS baud rate is 38400 in function "void setup()",that is:GPS.begin(38400);
*Use serial port to debugging;
+
**If you don't change the jumper cable:
**Can't superimpose the FT232 module, connect the FT232 and NEO-6M using the RX0 and TX1.
+
***Unplug the Microduino NEO-6M module when downloading program;
 
+
***Use the Core or Core+ to debug, make sure include "Adafruit_GPS GPS(&Serial)" in program;
===Download and debug program with FT232R and Core Module===
+
**If you have changed the jumper cable:
*If you use default pin(RX0、TX1):
+
***When use Core+ to debug,make sure include "Adafruit_GPS GPS(&Serial1)" in program;
**Unplug the Microduino NEO-6M module when downloading program;
+
***When use Core to debug, make sure include "SoftwareSerial mySerial(3, 2)" and "Adafruit_GPS GPS(&mySerial)" in program;
*If you want to change the jumper cables to meet your requirement:切断两组的焊盘中间与RX0/TX1的连线,将焊盘中间与D2、D3焊上即可。
 
**If you changed the jumper cables,the serial connect between Microduino NEO-6M and Core should be changed to TX-D2、RX-D3 from connection TX-RX0、RX-TX1(corresponding to Core+'s Serial1)
 
  
 
===PPS State indicator===
 
===PPS State indicator===
Line 115: Line 125:
 
**Flicker,(100ms off,900ms on),indicates that module has achieved position successfully.
 
**Flicker,(100ms off,900ms on),indicates that module has achieved position successfully.
 
*Easy to identify the state of module by PPS indicator.
 
*Easy to identify the state of module by PPS indicator.
 
===Connection mode===
 
*If use Microduino FT232R to debug,can't superimpose them directly.Because FT232 and NEO-6M have the same RX、TX pin definition,while the normal serial communication should be connected to TX and RX crossover;
 
*Module and microcontroller connection requires only a minimum of four lines;
 
**VCC and GND for power supply to the module, the module's TXD, RXD connects to the microcontroller's RXD TXD;
 
**(Note:Pay attention to this,module's TXD 和 RXD can't connect to RS232 serial port on PC directly, must use the level converter chip (such as MAX232).
 
  
 
==Application==
 
==Application==
===Program Download===
+
===Download program===
Test Program:'''[[File:Program Test NEO-6M.zip]]'''
+
Tesp Program:'''[[File:Program Test NEO-6M.zip]]'''
  
===Test Microduino NEO-6M module===
+
===Test Microduino NEO-6M using FT232 and core module===
 
*Prepared hardware:Microduino FT232R、Microduino Core、Microduino OLED、Microduino NEO-6M;
 
*Prepared hardware:Microduino FT232R、Microduino Core、Microduino OLED、Microduino NEO-6M;
 
*Prepared software:Arduino IDE(1.0 release upper)、Adafruit_GPS library、Microduino provides test program(Arduino part);
 
*Prepared software:Arduino IDE(1.0 release upper)、Adafruit_GPS library、Microduino provides test program(Arduino part);
Line 132: Line 136:
 
*Put the downloaded library to the libraries folder of Arduino IDE installation fold;
 
*Put the downloaded library to the libraries folder of Arduino IDE installation fold;
 
*Start Arduino IED,open the test program,card type chooses "Microduino Core (Atmega328P@16M,5V)",download directly;
 
*Start Arduino IED,open the test program,card type chooses "Microduino Core (Atmega328P@16M,5V)",download directly;
 +
*Use the default jumper pin (RX0,TX1):
 +
**Unplug the Microduino NEO-6M module when downloading program;Microduino NEO-6M module has the same RX0/TX1 pin position with Microduino FT232R, if superimpose these two module directly, the download process will be impact.
 +
*After finished download, then superimpose the NE0 modult the core module and FT232 module again. 
 
*Observed the OLED after the download completed:
 
*Observed the OLED after the download completed:
 
**After half of minute,display data and time;
 
**After half of minute,display data and time;
 
**Go on waiting,when you see PPS indicators of Microduino NEO-6M flashing, then the speed, latitude and longitude indicators can be displayed,if not, please restart Microduino Core.
 
**Go on waiting,when you see PPS indicators of Microduino NEO-6M flashing, then the speed, latitude and longitude indicators can be displayed,if not, please restart Microduino Core.
 +
*Player changes the back jumper cable:Cut off the connection between the middle of bonding pad and RX0/TX1, then welding the middle of bonding pad to D2 and D3. The purpose of change jumper is download program easily. Once changed the jumper, you superimpose three board together to download program.
 +
**If you use the change jumper connection method, it will change the serial connection from TX-RX0,RX-TX1 to TX-D2,RX-D3 between Microduino NEO-6M and Core module.
  
 +
===Test Mocroduino NEO-6M using PC===
 +
====Connection method====
 +
There are two connection methods:
 +
1. Use the default pin (RX0、TX1):
 +
*You need the Microduino FT232R module to connect the PC, but can't superimpose the FT232R, NEO-6M and Core module directly. Because the FT232 and NEO-6M has the same RX/TX defination and position on board, but the normal serial communication should be cross connect RX/TX.
 +
**Superimpose the FT232 and microduino core, then conects to PC with microUSB to download program;
 +
**Using the jumper cable cross connect the RX0/TX1 for FT232 and NEO-6M, that is the RX0 of NEO-6M connects to the TX1 of FT232, and the TX1 of NEO-6M connects to RX0 of FT232.
 +
**Connect the 3V3 pin of NEO-6M module to 3V3 pin of FT232, and connects the GND together.
  
===How to use the library===
+
[[File:Neo-6m debugging.jpg|thumb|400px|center|crossover configuration]]
*For Adafruit_GPS library:
 
**Make sure the GPS baud rate is 38400 in function "void setup()",that is:GPS.begin(38400);
 
**If you don't change the jumper cable:
 
***Unplug the Microduino NEO-6M module when downloading program;
 
***Use the Core or Core+ to debug, make sure include "Adafruit_GPS GPS(&Serial)" in program;
 
**If you have changed the jumper cable:
 
***When use Core+ to debug,make sure include "Adafruit_GPS GPS(&Serial1)" in program;
 
***When use Core to debug, make sure include "SoftwareSerial mySerial(3, 2)" and "Adafruit_GPS GPS(&mySerial)" in program;
 
  
 +
2. Use the changed jumper mode
 +
If you have changed the jumper as upper described, you can supperipose FT232, NEO-6M and Core module together, then connect to PC to debug directly.
  
===Use u-center configuration module to update rage===
+
====Use u-center configuration module to update rage====
 
*Firstly, place the Microduino NEO-6M into an open area, and then connects to PC by Microduino FT232R;
 
*Firstly, place the Microduino NEO-6M into an open area, and then connects to PC by Microduino FT232R;
 
*Start "u-center" software:
 
*Start "u-center" software:
**set the baud rate:Menu:“Receiver”-“Baudrate”-“38400”;
+
**Set the baud rate:Menu:“Receiver”-“Baudrate”-“38400”;
 
[[File:U-center 01.jpg|thumb|703px|center|set baud rate]]
 
[[File:U-center 01.jpg|thumb|703px|center|set baud rate]]
 
**Open the serial to start the communication:Menu:“Receiver”-“Port”- choose the port that Microduino FT232R using.
 
**Open the serial to start the communication:Menu:“Receiver”-“Port”- choose the port that Microduino FT232R using.
Line 163: Line 174:
 
[[File:U-center 04.jpg|thumb|703px|center|Configure window]]
 
[[File:U-center 04.jpg|thumb|703px|center|Configure window]]
  
==Pictures==
+
==Bug==
 +
 
 +
==History==
 +
 
 +
==Picture==
 
:[[file:Microduino-NEO-t.jpg|thumb|600px|center|Microduino NEO Front]]
 
:[[file:Microduino-NEO-t.jpg|thumb|600px|center|Microduino NEO Front]]
 
<br style="clear: left"/>
 
<br style="clear: left"/>
Line 169: Line 184:
 
<br style="clear: left"/>
 
<br style="clear: left"/>
  
|-
+
==Video==
|
 
 
|}
 
|}

Latest revision as of 13:18, 10 May 2014

Language: English  • 中文
Microduino-NEO

Microduino-NEO module maybe the most beautiful GPS module that you've seen. Its core module use UBLOX NEO-6M, high sensitivity, update rate up to 5Hz, using mini ceramic antenna with IPEX interface, and build-in a rechargeable battery backup.

Feature

  • High sensitivity;
  • Update rate up to 5Hz;
  • With a powerful PC support:u-center;
  • PPS indicator,easily determine the current status of the module;
  • Built-in rechargeable backup battery (to support warm start or hot start);
  • Small, cheap, stackable, opened platform;
  • Open source hardware circuit design, compatible with the Arduino IDE development environment for programming; ;
  • Define unified interface Microduino specification and contain rich peripheral modules. Set up the quick connection with other Microduino modules and sensors easily and flexibly.
  • 2.54 pitch row female connector for easy integration into breadboard.

Specifications

  • Communication protocol:
    • Microduino NEO-6M module use NMEA-0183 protocol and output GPS data, using the UBX protocol to configure the module.
  • Reception characteristics
    • 50 channels,GPS L1(1575.42Mhz) C/A 码,SBAS:WAAS/EGNOS/MSAS
    • Capture tracking sensitivity:-161dBm
  • Positioning accuracy
    • 2.5 mCEP (SBAS:2.0mCEP)
  • Update rate
    • Maximum 5Hz
  • Capture time
    • cold start:27S(Fastest time)
    • warm start:27S
    • hot start:1S
  • Note:
    • Cold start means that module stored history information which GPS receiver has lost (corresponding to the main power supply and battery both lost power), then restart the module, called cold start.
    • Warm start means that the is the module saved the historical information, but this information is inconsistent with information of currently visible satellites, and under such conditions to start module, called warm start.
    • Hot start means that module stored GPS history information which consistent with the currently visible satellite's information, then restart the module, called a hot start.
  • Interface characteristics
    • TTL,compatible 3.3V/5V microcontroller system
    • Serial communication baud rate:
      • Microduino NEO-6M module supports several baud rate:4800,9600,38400(defult),57600;
  • Set the baud rate by two resistors (R3,R4,recommend value is 1k):
R3 R4 Protocol Baud rate
No welding No welding NMEA 9600
No welding welding NMEA 38400
welding No welding NMEA 4800
welding welding UBX 57600

Pin Description

NEO-6M Module Pin Microduino Pin Function
TX RX0(or D2) Module serial send pin (TTL level), connect to microcontroller's RXD
RX TX1(or D3) Module serial receive pin (TTL level), connect to microcontroller's MCU TXD


Microduino-NEO6M-Pinout
Microduino-NEO6M-Pinout

Document

Eagle PCB File:Microduino-NEO6M.zip


Main components

Development

  • Make sure the +3.3 v power supply current can reach 200ma, not recommended use FT232R debugging directly, because FT232R's output +3.3 v current is too small.
  • We suggest to use Microduino Core 32u4 to debug this BT module:
    • 32u4 module can use the USB to simulate the serial 0, and BT uses the 32u4's serial 1 (RX0,TX1), so you don't need change the existing jumper (RX0,TX1) and it won't impact the program downloading and serial's function.
  • Microduino Shield BT4.0 uses the default serial RX0,TX1 to communicate with Core module, so can connect with Microduino FT232 directly.

Use PC to debug

  • Use serial directly:
    • No need superimpose the FT232 directly, cross connect the FT232 and NEO-6M's RX0,TX1.

Use FT232R、Core download and debug

  • Use default jumper (RX0、TX1):
    • Unplug the Microduino NEO-6M during download program;
  • If you want to change the jumper cables to meet your requirement:cut the connection between two intermediate of the pad and RX0/TX1, and then connect them to D2, D3.
    • If changed the jumper, need the change the serial connection between Microduino NEO-6M and Core module, change the connection "TX-RX0、RX-TX1" to following:
      • TX-D2、RX-D3 (For Core+'s Serial1)

Arduino library and supported package

How to use the library

  • For Adafruit_GPS library:
    • Make sure the GPS baud rate is 38400 in function "void setup()",that is:GPS.begin(38400);
    • If you don't change the jumper cable:
      • Unplug the Microduino NEO-6M module when downloading program;
      • Use the Core or Core+ to debug, make sure include "Adafruit_GPS GPS(&Serial)" in program;
    • If you have changed the jumper cable:
      • When use Core+ to debug,make sure include "Adafruit_GPS GPS(&Serial1)" in program;
      • When use Core to debug, make sure include "SoftwareSerial mySerial(3, 2)" and "Adafruit_GPS GPS(&mySerial)" in program;

PPS State indicator

  • This indicator connects to TIMEPULSE port on UBLOX NEO-6M module, the output characteristic can be set by program;
  • PPS indicator has two state as default value without program setting:
    • Keeping on,indicates that module has started, but but have not yet achieved positioning;
    • Flicker,(100ms off,900ms on),indicates that module has achieved position successfully.
  • Easy to identify the state of module by PPS indicator.

Application

Download program

Tesp Program:File:Program Test NEO-6M.zip

Test Microduino NEO-6M using FT232 and core module

  • Prepared hardware:Microduino FT232R、Microduino Core、Microduino OLED、Microduino NEO-6M;
  • Prepared software:Arduino IDE(1.0 release upper)、Adafruit_GPS library、Microduino provides test program(Arduino part);
  • Test environment:Open area,don't test in root;
  • Put the downloaded library to the libraries folder of Arduino IDE installation fold;
  • Start Arduino IED,open the test program,card type chooses "Microduino Core (Atmega328P@16M,5V)",download directly;
  • Use the default jumper pin (RX0,TX1):
    • Unplug the Microduino NEO-6M module when downloading program;Microduino NEO-6M module has the same RX0/TX1 pin position with Microduino FT232R, if superimpose these two module directly, the download process will be impact.
  • After finished download, then superimpose the NE0 modult the core module and FT232 module again.
  • Observed the OLED after the download completed:
    • After half of minute,display data and time;
    • Go on waiting,when you see PPS indicators of Microduino NEO-6M flashing, then the speed, latitude and longitude indicators can be displayed,if not, please restart Microduino Core.
  • Player changes the back jumper cable:Cut off the connection between the middle of bonding pad and RX0/TX1, then welding the middle of bonding pad to D2 and D3. The purpose of change jumper is download program easily. Once changed the jumper, you superimpose three board together to download program.
    • If you use the change jumper connection method, it will change the serial connection from TX-RX0,RX-TX1 to TX-D2,RX-D3 between Microduino NEO-6M and Core module.

Test Mocroduino NEO-6M using PC

Connection method

There are two connection methods: 1. Use the default pin (RX0、TX1):

  • You need the Microduino FT232R module to connect the PC, but can't superimpose the FT232R, NEO-6M and Core module directly. Because the FT232 and NEO-6M has the same RX/TX defination and position on board, but the normal serial communication should be cross connect RX/TX.
    • Superimpose the FT232 and microduino core, then conects to PC with microUSB to download program;
    • Using the jumper cable cross connect the RX0/TX1 for FT232 and NEO-6M, that is the RX0 of NEO-6M connects to the TX1 of FT232, and the TX1 of NEO-6M connects to RX0 of FT232.
    • Connect the 3V3 pin of NEO-6M module to 3V3 pin of FT232, and connects the GND together.
crossover configuration

2. Use the changed jumper mode If you have changed the jumper as upper described, you can supperipose FT232, NEO-6M and Core module together, then connect to PC to debug directly.

Use u-center configuration module to update rage

  • Firstly, place the Microduino NEO-6M into an open area, and then connects to PC by Microduino FT232R;
  • Start "u-center" software:
    • Set the baud rate:Menu:“Receiver”-“Baudrate”-“38400”;
set baud rate
    • Open the serial to start the communication:Menu:“Receiver”-“Port”- choose the port that Microduino FT232R using.
set port
    • Now,you can see the data on the "u-center";
data
  • Update rate
    • Open menu:“View”-“Messages View”,display the "Messages" window;
    • Open“UBX”-“CFG(Config)”-“RATE(Rates)”,suppose you need 2HZ update rate, only need set the "Measurement Period" to 500ms;
    • After configured,click the "Send" button on the left bottom to send the configuration to Microduino NEO-6M module. If you see the data update quickly on other information window, that means the set successfully.
Configure window

Bug

History

Picture

Microduino NEO Front


Microduino NEO Back


Video