-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #181 from tobozo/1.2.5
1.2.5
- Loading branch information
Showing
25 changed files
with
273 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,22 @@ | ||
|
||
#include <Arduino.h> // wtf platformio | ||
#include <ESP32-targz.h> | ||
|
||
#if defined TEST_LGFX | ||
|
||
#include <SD.h> // WTF platformio lib_dep manager fails to resolve this ??? | ||
#include "../../../LGFX-SDLoader-Snippet/LGFX-SDLoader-Snippet.ino" | ||
//#include <stddef.h> | ||
|
||
#if defined TEST_LGFX | ||
#include "../../../LGFX-SDLoader-Snippet/LGFX-SDLoader-Snippet.ino" | ||
#elif defined TEST_M5Core2 | ||
|
||
#include "../../../M5Core2-SDLoader-Snippet/M5Core2-SDLoader-Snippet.ino" | ||
|
||
#elif defined TEST_M5Stack || defined TEST_S3Box | ||
|
||
#include "../../../M5Stack-SDLoader-Snippet/M5Stack-SDLoader-Snippet.ino" | ||
|
||
#elif defined TEST_M5StickC | ||
|
||
#include "../../../M5StickC-SPIFFS-Loader-Snippet/M5StickC-SPIFFS-Loader-Snippet.ino" | ||
|
||
#elif defined TEST_M5Unified | ||
|
||
#include <SD.h> // WTF platformio lib_dep manager fails to resolve this ??? | ||
#include "../../../M5Unified/M5Unified.ino" | ||
|
||
#elif defined TEST_SdFat | ||
#include "../../../SdFatUpdater/SdFatUpdater.ino" | ||
#else | ||
|
||
#error "No device to test" | ||
|
||
#endif | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,12 +48,12 @@ platform_packages = framework-arduinoespressif32 @ https://github.com/espressif/ | |
[lib_sdupdater] | ||
lib_deps = | ||
M5Stack-SD-Updater | ||
tobozo/ESP32-targz | ||
ESP32-targz | ||
|
||
[lib_lgfx] | ||
lib_deps = | ||
SPI(esp32) | ||
SD(esp32) | ||
SPI | ||
SD | ||
${lib_sdupdater.lib_deps} | ||
LovyanGFX | ||
build_flags = | ||
|
@@ -70,6 +70,7 @@ lib_deps = | |
|
||
[lib_m5unified] | ||
lib_deps = | ||
SD | ||
${lib_sdupdater.lib_deps} | ||
M5Unified | ||
|
||
|
@@ -89,6 +90,12 @@ lib_deps = | |
M5GFX | ||
Button2 | ||
|
||
[lib_sdfatupdater] | ||
lib_deps = | ||
SdFat | ||
M5Unified | ||
${lib_sdupdater.lib_deps} | ||
|
||
|
||
[lgfx] | ||
extends = lib_lgfx | ||
|
@@ -113,6 +120,12 @@ build_flags = -DTEST_M5Core2 | |
extends = lib_m5unified | ||
build_flags = -DTEST_M5Unified | ||
|
||
[M5Unifier-SdFat] | ||
board = esp32dev | ||
extends = lib_sdfatupdater | ||
build_flags = -DTEST_SdFat | ||
|
||
|
||
[S3Box] | ||
extends = lib_chimeracore | ||
board = esp32dev | ||
|
@@ -139,6 +152,20 @@ build_flags = | |
[env:lgfx] | ||
[env:s3box] | ||
[env:m5stack-atom] | ||
[env:sdfat-test] | ||
|
||
|
||
[env:[email protected]] | ||
board = esp32dev | ||
lib_deps = | ||
SdFat | ||
M5Unified | ||
M5Stack-SD-Updater | ||
ESP32-targz@^1.1.8 | ||
build_flags = -DTEST_SdFat | ||
|
||
extends = esp32_2_0_8, M5Unifier-SdFat | ||
|
||
|
||
; [env:[email protected]] | ||
; extends = esp32_2_0_5, M5Stack | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
name=M5Stack-SD-Updater | ||
version=1.2.4 | ||
version=1.2.5 | ||
author=tobozo <[email protected]> | ||
maintainer=tobozo <[email protected]> | ||
sentence=SD Card Loader for M5 Stack | ||
paragraph=Package your apps on an SD card and load them from a menu app, button or MQTT message. | ||
category=Uncategorized | ||
url=https://github.com/tobozo/M5Stack-SD-Updater/ | ||
architectures=esp32 | ||
depends=ArduinoJson | ||
depends=ESP32-targz,ArduinoJson |
Oops, something went wrong.