-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Includes fix to isr gpio service handling between wheel and camera
- Loading branch information
1 parent
4fb8176
commit 5ae5db4
Showing
9 changed files
with
148 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||
idf_build_set_property(DEPENDENCIES_LOCK dependencies.lock.${IDF_TARGET}) | ||
project(jade) |
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 was deleted.
Oops, something went wrong.
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: | ||
espressif/button: | ||
component_hash: 1f5297fe16f0ee988dbb14b6f4c91782fe2baf85025bb15cc1e0093edd3fb2ee | ||
source: | ||
service_url: https://api.components.espressif.com/ | ||
type: service | ||
version: 3.2.0 | ||
espressif/cbor: | ||
component_hash: 440f4ee4504841cc9b4f3a8ef755776a612ac9dace355514c68b999868f990ff | ||
source: | ||
service_url: https://api.components.espressif.com/ | ||
type: service | ||
version: 0.6.0~1 | ||
espressif/cmake_utilities: | ||
component_hash: 351350613ceafba240b761b4ea991e0f231ac7a9f59a9ee901f751bddc0bb18f | ||
source: | ||
service_url: https://api.components.espressif.com/ | ||
type: service | ||
version: 0.5.3 | ||
espressif/esp32-camera: | ||
component_hash: e00e75c24164b5d097bf98f325938558697916a0cb6b68872b9927587b46882a | ||
source: | ||
service_url: https://api.components.espressif.com/ | ||
type: service | ||
version: 2.0.8 | ||
espressif/esp_lcd_touch: | ||
component_hash: d4d8f2dc33205797169a97a02e0d89a8982f59fe0509129b54422052b8522f59 | ||
source: | ||
service_url: https://api.components.espressif.com/ | ||
type: service | ||
version: 1.1.1 | ||
espressif/esp_lcd_touch_ft5x06: | ||
component_hash: 97759953d9436a365e9427078c5b04ecce4e6a50f50cf62c68cd6bfa229b812c | ||
source: | ||
service_url: https://api.components.espressif.com/ | ||
type: service | ||
version: 1.0.6 | ||
espressif/libsodium: | ||
component_hash: f6e982479a2389cb6868e8fb761cf23aba6c355a8090b3e906299807775f58a3 | ||
source: | ||
service_url: https://api.components.espressif.com/ | ||
type: service | ||
version: 1.0.20~1 | ||
espressif/nghttp: | ||
component_hash: 5e55c2fc982f7ddd257818be86f50d60705f3fd3a39d709c399434e81d458e1e | ||
source: | ||
service_url: https://api.components.espressif.com/ | ||
type: service | ||
version: 1.58.0 | ||
idf: | ||
component_hash: null | ||
source: | ||
type: idf | ||
version: 5.1.3 | ||
manifest_hash: 86a960cf40f1aaed226ad32e8af9725f0288f1f6a7f38e3d89bfda8196794ba0 | ||
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 |
---|---|---|
@@ -1,9 +1,26 @@ | ||
dependencies: | ||
espressif/button: "==3.0.1" | ||
espressif/nghttp: "==1.52.0" | ||
espressif/button: "==3.2.0" | ||
espressif/nghttp: "==1.58.0" | ||
espressif/cbor: "==0.6.0~1" | ||
espressif/libsodium: "==1.0.20" | ||
espressif/esp32-camera: "==2.0.3" | ||
espressif/cmake_utilities: "==0.5.2" | ||
espressif/libsodium: "==1.0.20~1" | ||
espressif/cmake_utilities: "==0.5.3" | ||
espressif/esp32-camera: | ||
version: "==2.0.8" | ||
espressif/esp_lcd_touch_ft5x06: | ||
version: "==1.0.6" | ||
espressif/esp_lcd_touch: | ||
version: "==1.1.1" | ||
espressif/esp_tinyusb: | ||
version: "==1.4.4" | ||
rules: | ||
- if: "target in [esp32s3]" | ||
espressif/tinyusb: | ||
version: "==0.15.0~9" | ||
rules: | ||
- if: "target in [esp32s3]" | ||
espressif/usb_host_msc: | ||
version: "==1.1.2" | ||
rules: | ||
- if: "target in [esp32s3]" | ||
idf: | ||
version: "==5.1.3" |
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