Hello !
I have a DEV KIT V4 ESP32 Wrover-B and a GY-GPS6MV2.
I found this tutorial online: https://shopofthings.ch/gy-neo6mv2-esp32-gps-beispiel/
And I noticed that they are using a ESP32 Wroom-32 and that they've connected the GPS RX to ESP32 TX2 and the GPS TX to ESP32 RX2.
I don't have RX2 and TX2 on my module. I have GPIO 16 and 17 that, from what I know, are disabled on this type of module.
My question is how do I connect the GPS ?
Can I connect it to the RX and TX pins instead ?
Where do I connect a GPS to a ESP32 Wrover Module if I don't have RX2 and TX2 ?
-
- Posts: 160
- Joined: Thu Jan 31, 2019 2:32 pm
Re: Where do I connect a GPS to a ESP32 Wrover Module if I don't have RX2 and TX2 ?
You must know by now that most peripherals can be remapped to any pin using the gpio matrix.
-
- Posts: 160
- Joined: Thu Jan 31, 2019 2:32 pm
Re: Where do I connect a GPS to a ESP32 Wrover Module if I don't have RX2 and TX2 ?
Yeah, I don't.
I have never seen, nor heard of GPIO Matrix.
Care to explain more, please ?
Also, I feel like I should mention this: I never used ESP-IDF. I only used Arduino IDE and PlatformIO IDE.
-
- Posts: 160
- Joined: Thu Jan 31, 2019 2:32 pm
Re: Where do I connect a GPS to a ESP32 Wrover Module if I don't have RX2 and TX2 ?
There is a whole section on it in the technical reference manual. Most peripheral drivers automatically support it either with a function that takes pin numbers as an input or a structure that has values for them. Even Arduino https://github.com/espressif/arduino-es ... rial.h#L58
-
- Posts: 160
- Joined: Thu Jan 31, 2019 2:32 pm
Re: Where do I connect a GPS to a ESP32 Wrover Module if I don't have RX2 and TX2 ?
Great reads.WiFive wrote: ↑Wed Jun 05, 2019 3:32 pmThere is a whole section on it in the technical reference manual. Most peripheral drivers automatically support it either with a function that takes pin numbers as an input or a structure that has values for them. Even Arduino https://github.com/espressif/arduino-es ... rial.h#L58
So, by my understanding, I only need to do the following to be able to use RX2 and TX2 on different pins ?
Code: Select all
#define RXD2 26
#define TXD2 27
HardwareSerial SerialGPS(1);
void setup() {
Serial.begin(115200);
SerialGPS.begin(9600, SERIAL_8N1, RXD2, TXD2);
}
EDIT:
I noticed that only HardwareSerial SerialGPS(1); works with my project.
HardwareSerial SerialGPS(0); and HardwareSerial SerialGPS(2); do not work and I don't really understand why because it shouldn't really matter what uart_nr I pass, because I'm also passing rxPin and txPin in SerialGPS.begin(9600, SERIAL_8N1, RX2, TX2);
For reference this is the code:
Code: Select all
#include <TinyGPS++.h>
#include <HardwareSerial.h>
#include "EEPROM.h"
// #define ESP32_PERIPHERAL_SIGNAL_U1TXD_OUT
/*
with EEPROM, data can be cached,
a small store, so to speak. Data is also after one
Reset even where they were written. To enter the
To be able to write memory must be a memory size
be specified. This is specified in bytes.
We use these to save the last GPS fix
so that it is read in the first start as the first. In order to
it is prevented that e.g. at a recording our position
First jumps to the 0.0 point, somewhere in the Atlantic
Ocean lies.
The memory of ESP32 can be between 4 and maximum 1984 bytes
*/
#define EEPROM_SIZE 128
#define RX2 26
#define TX2 27
/*
Next, the program object for the GPS is created, we call
the variable that points to it simply "gps"
*/
TinyGPSPlus gps;
/*
Now we have to create a serial connection to the GPS module
ESP32 supports up to 3 hardware serial connections.
That's why we also do not need to use the software serial library.
The number in parenthesis is the uart_nr. This will be the three possible
Distinguished connections. For ESP32 this value can be 0, 1 or 2
*/
HardwareSerial SerialGPS(1);
/*
Next, we create a template object where we get all the data
in a variable read by the GPS module
Afterwards we create a new variable, "gpsState"
*/
struct GpsDataState_t {
double originLat = 0;
double originLon = 0;
double originAlt = 0;
double distMax = 0;
double dist = 0;
double altMax = -999999;
double altMin = 999999;
double spdMax = 0;
double prevDist = 0;
};
GpsDataState_t gpsState = {};
/*
The following constant defines the output speed
in the serial monitor. This is specified in milliseconds.
Including the associated variables to achieve this restriction
*/
#define TASK_SERIAL_RATE 1000 // ms
uint32_t nextSerialTaskTs = 0;
uint32_t nextOledTaskTs = 0;
/*
Helper functions to simplify reading and writing memory
*/
template <class T> int EEPROM_writeAnything(int ee, const T& value)
{
const byte* p = (const byte*)(const void*)&value;
int i;
for (i = 0; i < sizeof(value); i++)
EEPROM.write(ee++, *p++);
return i;
}
template <class T> int EEPROM_readAnything(int ee, T& value)
{
byte* p = (byte*)(void*)&value;
int i;
for (i = 0; i < sizeof(value); i++)
*p++ = EEPROM.read(ee++);
return i;
}
/*
Setup function.
This is done once at system startup
Contains all initializations
*/
void setup() {
// Serial is the output in the Serial Monitor
Serial.begin(115200);
delay(1000);
Serial.println("Start of setup()");
/*
The connection with the GPS module. We
void begin (unsigned long baud, uint32_t config = SERIAL_8N1, int8_t rxPin = -1, int8_t txPin = -1, bool invert = false, unsigned long timeout_ms = 20000UL);
baud: baudrate according to the GPS module specification, in this case 9600
config: default value
rxPin: an RX pin e.g. 16
txPin: an TX pin e.g. 17
*/
SerialGPS.begin(9600, SERIAL_8N1, RX2, TX2);
Serial.println("Start of SerialGPS.begin(9600, SERIAL_8N1, 3, 1);");
/*
Initialize EEPROM memory if it does not exist
*/
while (!EEPROM.begin(EEPROM_SIZE)) {
true;
}
/*
The three axis directions x, y, z from the memory
read and deposit
*/
long readValue;
EEPROM_readAnything(0, readValue);
gpsState.originLat = (double)readValue / 1000000;
EEPROM_readAnything(4, readValue);
gpsState.originLon = (double)readValue / 1000000;
EEPROM_readAnything(8, readValue);
gpsState.originAlt = (double)readValue / 1000000;
}
/*
Loop function
This is executed every system clock
*/
void loop() {
static int p0 = 0;
// read GPS coordinates of module
gpsState.originLat = gps.location.lat();
gpsState.originLon = gps.location.lng();
gpsState.originAlt = gps.altitude.meters();
// gpsState.
// Write current position in nonvolatile ESP32 memory
long writeValue;
writeValue = gpsState.originLat * 1000000;
EEPROM_writeAnything(0, writeValue);
writeValue = gpsState.originLon * 1000000;
EEPROM_writeAnything(4, writeValue);
writeValue = gpsState.originAlt * 1000000;
EEPROM_writeAnything(8, writeValue);
EEPROM.commit(); // only with commit () the data is written
gpsState.distMax = 0;
gpsState.altMax = -999999;
gpsState.spdMax = 0;
gpsState.altMin = 999999;
/*
* Raw data from serial link to GPS module
* read. The data is processed using TinyGPS ++
* The data becomes conscious only after the assignment of the variables
* read so that we can simplify in the following
* Can do calculations.
*/
while (SerialGPS.available() > 0) {
gps.encode(SerialGPS.read());
}
/*
* Various calculations of maximum and minimum values and distance traveled
* These are only made if at least one fix with 4 satellites exists
* is, at most, the accuracy would not be given and it would be wrong
* Values are calculated.
*/
if (gps.satellites.value() >= 4) {
gpsState.dist = TinyGPSPlus::distanceBetween(gps.location.lat(), gps.location.lng(), gpsState.originLat, gpsState.originLon);
if (gpsState.dist > gpsState.distMax && abs(gpsState.prevDist - gpsState.dist) < 50) {
gpsState.distMax = gpsState.dist;
}
gpsState.prevDist = gpsState.dist;
if (gps.altitude.meters() > gpsState.altMax) {
gpsState.altMax = gps.altitude.meters();
}
if (gps.speed.kmph() > gpsState.spdMax) {
gpsState.spdMax = gps.speed.kmph();
}
if (gps.altitude.meters() < gpsState.altMin) {
gpsState.altMin = gps.altitude.meters();
}
}
/*
So that not too much data is output in the Serial Monitor,
let's limit the output to the number of milliseconds
which we saved in the constant "TASK_SERIAL_RATE"
*/
if (nextSerialTaskTs < millis()) {
Serial.print("LAT="); Serial.println(gps.location.lat(), 6);
Serial.print("LONG="); Serial.println(gps.location.lng(), 6);
Serial.print("ALT="); Serial.println(gps.altitude.meters());
Serial.print("Sats="); Serial.println(gps.satellites.value());
Serial.print("DST: ");
Serial.println(gpsState.dist, 1);
nextSerialTaskTs = millis() + TASK_SERIAL_RATE;
}
}
Who is online
Users browsing this forum: Baidu [Spider] and 104 guests