Skip to content

Commit

Permalink
fix(maps): Fix preload default map
Browse files Browse the repository at this point in the history
  • Loading branch information
jgauchia committed Nov 9, 2024
1 parent 85d434c commit ff2f01e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default_envs = ICENAV_BOARD
platform = espressif32
framework = arduino
version = 0.1.8_Alpha
revision = 78
revision = 79
monitor_speed = 115200
;monitor_rts = 0
;monitor_dtr = 0
Expand Down
5 changes: 4 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,13 @@ void setup()
}
else
{
// Get init Latitude and Longitude
gpsData.latitude = getLat();
gpsData.longitude = getLon();
tileSize = RENDER_TILE_SIZE;
generateRenderMap();
}

splashScreen();
initGpsTask();

Expand Down

0 comments on commit ff2f01e

Please sign in to comment.