mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 03:56:57 +03:00
Rolling - 202-12-03
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -4,6 +4,7 @@
|
|||||||
.code-workspace
|
.code-workspace
|
||||||
.helper/
|
.helper/
|
||||||
/sd-card/htm./.vscode/
|
/sd-card/htm./.vscode/
|
||||||
|
/code/build
|
||||||
|
|
||||||
CMakeLists.txt.user
|
CMakeLists.txt.user
|
||||||
CMakeCache.txt
|
CMakeCache.txt
|
||||||
|
|||||||
@@ -25,6 +25,14 @@ A 3d-printable housing can be found here: https://www.thingiverse.com/thing:4571
|
|||||||
|
|
||||||
**General remark:** Beside the `firmware.bin`, typically also the content of `/html` needs to be updated!
|
**General remark:** Beside the `firmware.bin`, typically also the content of `/html` needs to be updated!
|
||||||
|
|
||||||
|
##### Rolling - (2020-12-03)
|
||||||
|
|
||||||
|
* Move source code to `/main` to full compatibility between pure ESP-IDF and Platformio w/ espressif
|
||||||
|
|
||||||
|
* based on Main v4.1.1 (2020-12-02)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
##### 4.1.1 Configuration editor - (2020-12-02)
|
##### 4.1.1 Configuration editor - (2020-12-02)
|
||||||
|
|
||||||
* Bug fixing: internal improvement of file handling (reduce not responding)
|
* Bug fixing: internal improvement of file handling (reduce not responding)
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ endif()
|
|||||||
#######################################################################
|
#######################################################################
|
||||||
|
|
||||||
|
|
||||||
FILE(GLOB_RECURSE app_sources ${CMAKE_SOURCE_DIR}/src/*.*)
|
FILE(GLOB_RECURSE app_sources ${CMAKE_SOURCE_DIR}/main/*.*)
|
||||||
|
|
||||||
# idf_component_register(SRCS ${app_sources})
|
# idf_component_register(SRCS ${app_sources})
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
4
code/main/version.cpp
Normal file
4
code/main/version.cpp
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
const char* GIT_REV="c5059b4";
|
||||||
|
const char* GIT_TAG="";
|
||||||
|
const char* GIT_BRANCH="rolling";
|
||||||
|
const char* BUILD_TIME="2020-12-03 20:31";
|
||||||
@@ -9,6 +9,8 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
|
|
||||||
|
[platformio]
|
||||||
|
src_dir = main
|
||||||
|
|
||||||
|
|
||||||
[env:esp32cam]
|
[env:esp32cam]
|
||||||
@@ -17,12 +19,14 @@ board = esp32cam
|
|||||||
framework = espidf
|
framework = espidf
|
||||||
|
|
||||||
board_build.embed_files =
|
board_build.embed_files =
|
||||||
src/favicon.ico
|
main/favicon.ico
|
||||||
|
|
||||||
|
|
||||||
;board_build.partitions = partitions_singleapp.csv
|
;board_build.partitions = partitions_singleapp.csv
|
||||||
board_build.partitions = partitions.csv
|
board_build.partitions = partitions.csv
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
lib_deps =
|
lib_deps =
|
||||||
jomjol_helper
|
jomjol_helper
|
||||||
connect_wlan
|
connect_wlan
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
const char* GIT_REV="ffc15aa";
|
|
||||||
const char* GIT_TAG="";
|
|
||||||
const char* GIT_BRANCH="master";
|
|
||||||
const char* BUILD_TIME="2020-12-02 21:56";
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="ffc15aa";
|
const char* GIT_REV="c5059b4";
|
||||||
const char* GIT_TAG="";
|
const char* GIT_TAG="";
|
||||||
const char* GIT_BRANCH="master";
|
const char* GIT_BRANCH="rolling";
|
||||||
const char* BUILD_TIME="2020-12-02 21:55";
|
const char* BUILD_TIME="2020-12-03 20:27";
|
||||||
Reference in New Issue
Block a user