-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added ESPIDF manifest to include needed components (LittleFS and Arduino) - modified filesystem size - reconfigured default to LittleFS
- Loading branch information
1 parent
e0e1447
commit bcb4cc4
Showing
7 changed files
with
88 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,23 @@ | ||
dependencies: | ||
arduino: | ||
component_hash: e15adfd50cfde0e89cab8ba0e2fc54cc0b31e9357acd27d4a3e833165889d126 | ||
source: | ||
git: https://github.com/espressif/arduino-esp32.git | ||
path: . | ||
type: git | ||
version: 3670e2bf2aca822f2e1225fdb0e0796e490005a8 | ||
esp_littlefs: | ||
component_hash: b41b1c9d4a7237094d0d1d4518db4662e27c4c14450f49f79a665f4d6d0135a3 | ||
source: | ||
git: https://github.com/joltwallet/esp_littlefs.git | ||
path: . | ||
type: git | ||
version: b671069b1e9e279f357736e7b51402f46e39d1b5 | ||
idf: | ||
component_hash: null | ||
source: | ||
type: idf | ||
version: 4.4.4 | ||
manifest_hash: dcf4d39b94252de130019eadceb989d72b0dbc26b552cfdcbb50f6da531d2b92 | ||
manifest_hash: 9405d477551dd21ee290cffa71b99487cbfd561ba2fcba3520158d376ddb3778 | ||
target: esp32 | ||
version: 1.0.0 |
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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
dependencies: | ||
# Required IDF version | ||
idf: ">=4.4" | ||
|
||
esp_littlefs: | ||
git: https://github.com/joltwallet/esp_littlefs.git | ||
|
||
arduino: | ||
version: 2.0.9 | ||
git: https://github.com/espressif/arduino-esp32.git | ||
|
||
# arduino: | ||
# version: "^2.0.9" | ||
# git: https://github.com/espressif/arduino-esp32.git | ||
|
||
# nghttp: "^1.50.0" | ||
# esp_jpeg: "^1.0.4" | ||
# esp-dsp: "^1.2.0" | ||
# esp-sr: "^1.0.3" | ||
# esp32-camera: "^2.0.3" | ||
# esp-dl: | ||
# git: https://github.com/espressif/esp-dl.git | ||
# arduino: | ||
# path: components/arduino | ||
|
||
# # Defining a dependency from the registry: | ||
# # https://components.espressif.com/component/example/cmp | ||
# example/cmp: "^3.3.3" # Automatically update minor releases | ||
# | ||
# # Other ways to define dependencies | ||
# | ||
# # For components maintained by Espressif only name can be used. | ||
# # Same as `espressif/cmp` | ||
# component: "~1.0.0" # Automatically update bugfix releases | ||
# | ||
# # Or in a longer form with extra parameters | ||
# component2: | ||
# version: ">=2.0.0" | ||
# | ||
# # For transient dependencies `public` flag can be set. | ||
# # `public` flag doesn't have an effect for the `main` component. | ||
# # All dependencies of `main` are public by default. | ||
# public: true | ||
# | ||
# # For components hosted on non-default registry: | ||
# service_url: "https://componentregistry.company.com" | ||
# | ||
# # For components in git repository: | ||
# test_component: | ||
# path: test_component | ||
# git: ssh://[email protected]/user/components.git | ||
# | ||
# # For test projects during component development | ||
# # components can be used from a local directory | ||
# # with relative or absolute path | ||
# some_local_component: | ||
# path: ../../projects/component |
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