Skip to content

Commit

Permalink
Updated v0.14.10
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelReyesCarmona committed Jan 31, 2022
1 parent 6c0dbc8 commit 43cba4c
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A simple track GPS to SD card logger.
<img alt="Location example." src="images/IMG_20211130_103242_wide.jpg" width="480" align=center>&nbsp;

<img alt="Location example." src="images/IMG_20220121_215427.jpg" width="240" align=center>&nbsp;
<img alt="Location example." src="images/IMG_20211221_124521.jpg" width="240" align=center>&nbsp;
<img alt="Location example." src="images/IMG_20220130_233038.jpg" width="240" align=center>&nbsp;

## Features

Expand Down Expand Up @@ -343,16 +343,18 @@ Dependency Graph
|-- <Vcc>
| |-- <EMA>
Building in release mode
Compiling .pio\build\LGT_ISP\src\Display.cpp.o
Linking .pio\build\LGT_ISP\firmware.elf
Checking size .pio\build\LGT_ISP\firmware.elf
Advanced Memory Usage is available via "PlatformIO Home > Project Inspect"
RAM: [======== ] 82.6% (used 1691 bytes from 2048 bytes)
Flash: [==========] 97.5% (used 31964 bytes from 32768 bytes)
=================================== [SUCCESS] Took 2.93 seconds ===================================
RAM: [======== ] 82.6% (used 1692 bytes from 2048 bytes)
Flash: [==========] 97.5% (used 31950 bytes from 32768 bytes)
=================================== [SUCCESS] Took 7.37 seconds ===================================

Environment Status Duration
------------- -------- ------------
LGT_ISP SUCCESS 00:00:02.933
=================================== 1 succeeded in 00:00:02.933 ===================================
LGT_ISP SUCCESS 00:00:07.369
=================================== 1 succeeded in 00:00:07.369 ===================================

Las tareas reutilizarán el terminal, presione cualquier tecla para cerrarlo.
```
Expand All @@ -364,7 +366,7 @@ For upload to Arduino use Platformio enviroment or use `platformio.exe run --tar
* Better performance showing battery level.
* Fixed error no save data when battery is low.
* Device not start when battery is low.
* Reduce the consuption of current. More battery live.
* When the battery is low, the battery level indicator will flash, with no other information displayed on the screen.
### V0.13
* Recode the function to save datalog information on SD card. Better performance. Used in v0.5.
Expand Down
Binary file modified images/Display_parts.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/Display_parts.pub
Binary file not shown.
Binary file added images/IMG_20220130_233038.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/TinyTrackGPS_font.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ const PROGMEM uint8_t TinyTrackGPS_font8x16[] = {
0x30, 0x38, 0x3c, 0xff, 0xff, 0x3c, 0x38, 0x30, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, // '['->altitud 91
0x3c, 0x02, 0x01, 0xd9, 0xd9, 0x01, 0x02, 0x3c, 0x00, 0xc0, 0xe0, 0xff, 0xff, 0xe0, 0xc0, 0x00, // '\'->antena 92
0x78, 0x7c, 0x6e, 0x66, 0x66, 0x6e, 0x7c, 0x78, 0x7c, 0xfc, 0xc0, 0xf8, 0x7c, 0x0c, 0xfc, 0xf8, // ']'->sd 93
// Chars as logo. Up 'abcd' down 'efgh'.
// Chars as logo.
0x00, 0x00, 0x80, 0xC0, 0x60, 0x10, 0x98, 0x4C, 0xF0, 0x1E, 0x03, 0xF0, 0x0C, 0x03, 0x81, 0x00, // char 94
0x64, 0x26, 0x12, 0x12, 0x0B, 0x09, 0x09, 0x49, 0x00, 0x00, 0x00, 0x00, 0x80, 0xC0, 0x60, 0xB0, // char 95
0x49, 0x09, 0x09, 0x0B, 0x12, 0x12, 0x26, 0x64, 0x10, 0x18, 0x08, 0xC4, 0x64, 0x1E, 0x07, 0x03, // char 96
Expand Down
1 change: 1 addition & 0 deletions src/TinyTrackGPS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,7 @@ void loop(void) {
gps.crack_datetime(&year_gps, &time_gps.Month, &time_gps.Day, &time_gps.Hour, &time_gps.Minute, &time_gps.Second, NULL, &age);
(age != TinyGPS::GPS_INVALID_AGE) ? gps_ok = true : gps_ok = false;
#if defined(DISPLAY_TYPE_SDD1306_128X64_lcdgfx)
semaphore.set();
#endif
if(!SDReady)
if(card.cardBegin(SD_CONFIG)) SDReady = card.begin(SD_CONFIG);
Expand Down

0 comments on commit 43cba4c

Please sign in to comment.