Skip to content

Commit d659c7d

Browse files
committed
Merge branch 'develop/v2.0' into 'master'
update to version 2.0 with new structure See merge request rd/esp-iot-solution!478
2 parents ca79bd2 + 6145936 commit d659c7d

File tree

1,975 files changed

+86928
-300615
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,975 files changed

+86928
-300615
lines changed

.gitignore

+12-7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ build/
77
*.old
88
*.cproject
99

10+
# gtags
11+
GTAGS
12+
GRTAGS
13+
GPATH
14+
1015
# vscode setting
1116
.vscode/
1217

@@ -17,13 +22,13 @@ build/
1722
.DS_Store
1823

1924
# Doc build artifacts
20-
docs/*/_build/
21-
docs/*/doxygen-warning-log.txt
22-
docs/*/sphinx-warning-log.txt
23-
docs/*/sphinx-warning-log-sanitized.txt
24-
docs/*/xml/
25-
docs/*/xml_in/
26-
docs/*/man/
25+
docs/**/_build/
26+
docs/**/doxygen-warning-log.txt
27+
docs/**/sphinx-warning-log.txt
28+
docs/**/sphinx-warning-log-sanitized.txt
29+
docs/**/xml/
30+
docs/**/xml_in/
31+
docs/**/man/
2732
docs/doxygen_sqlite3.db
2833

2934
# Example project files

.gitlab-ci.yml

+71-54
Original file line numberDiff line numberDiff line change
@@ -2,72 +2,89 @@ stages:
22
- build
33
- deploy
44

5+
variables:
6+
IOT_SOLUTION_PATH: "$CI_PROJECT_DIR"
7+
58
before_script:
6-
- export PATH="/opt/xtensa-esp32-elf/bin:$PATH"
7-
- export PATH="/opt/esp32ulp-elf-binutils/bin:$PATH"
8-
- export PATH="$CI_PROJECT_DIR/submodule/esp-idf/tools:$PATH"
9+
# add gitlab ssh key
910
- mkdir -p ~/.ssh
1011
- chmod 700 ~/.ssh
1112
- echo -n $GITLAB_KEY > ~/.ssh/id_rsa_base64
1213
- base64 --decode --ignore-garbage ~/.ssh/id_rsa_base64 > ~/.ssh/id_rsa
1314
- chmod 600 ~/.ssh/id_rsa
1415
- echo -e "Host gitlab.espressif.cn\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
15-
- git submodule update -f --init --recursive
16+
- git --version
17+
- git submodule update --init --recursive
1618

17-
variables:
18-
IDF_PATH: "$CI_PROJECT_DIR/submodule/esp-idf"
19-
IOT_SOLUTION_PATH: "$CI_PROJECT_DIR"
19+
.build_template: &build_template
20+
stage: build
21+
image: espressif/idf:release-v4.3
22+
tags:
23+
- build
24+
variables:
25+
BATCH_BUILD: "1"
26+
V: "0"
27+
28+
.build_examples_template: &build_examples_template
29+
<<: *build_template
30+
artifacts:
31+
when: always
32+
paths:
33+
- $BUILD_PATH/*/*/build/*.bin
34+
- $BUILD_PATH/*/*/build/*.elf
35+
- $BUILD_PATH/*/*/build/*.map
36+
- $BUILD_PATH/*/*/build/download.config
37+
- $BUILD_PATH/*/*/build/bootloader/*.bin
38+
- $LOG_PATH
39+
expire_in: 1 week
40+
variables:
41+
IDF_CI_BUILD: "1"
42+
LOG_PATH: "$CI_PROJECT_DIR/log_examples"
43+
BUILD_PATH: "$CI_PROJECT_DIR/build_examples"
44+
script:
45+
# it's not possible to build 100% out-of-tree and have the "artifacts"
46+
# mechanism work, but this is the next best thing
47+
- rm -rf ${BUILD_PATH}
48+
- mkdir ${BUILD_PATH}
49+
- mkdir -p ${LOG_PATH}
50+
# build some of examples
51+
- ${IOT_SOLUTION_PATH}/tools/ci/build_examples.sh "${CI_JOB_NAME}"
52+
53+
build_examples_00:
54+
<<: *build_examples_template
2055

21-
build:
56+
build_docs:
2257
stage: build
58+
image: $CI_DOCKER_REGISTRY/esp-idf-doc-env:v7
2359
tags:
24-
- iot
25-
image: $CI_DOCKER_REGISTRY/esp32-ci-env
60+
- build_docs
61+
artifacts:
62+
when: always
63+
paths:
64+
# English version of documentation
65+
- docs/en/doxygen-warning-log.txt
66+
- docs/en/sphinx-warning-log.txt
67+
- docs/en/sphinx-warning-log-sanitized.txt
68+
- docs/en/_build/html
69+
# Chinese version of documentation
70+
- docs/zh_CN/doxygen-warning-log.txt
71+
- docs/zh_CN/sphinx-warning-log.txt
72+
- docs/zh_CN/sphinx-warning-log-sanitized.txt
73+
- docs/zh_CN/_build/html
74+
expire_in: 1 mos
2675
script:
27-
- cd examples/check_pedestrian_flow
28-
- make defconfig
29-
- idf.py build
30-
- cd ../eth2wifi
31-
- make defconfig
32-
- idf.py build
33-
- cd ../oled_screen_module
34-
- make defconfig
35-
- idf.py build
36-
- cd ../smart_device/alink_smart_device_demo
37-
- make defconfig
38-
- idf.py build
39-
- cd ..
40-
- cd ../empty_project
41-
- make defconfig
42-
- idf.py build
43-
- cd ../hmi/ugfx_example
44-
- make defconfig
45-
- idf.py build
46-
- cd ../lvgl_example
47-
- make defconfig
48-
- idf.py build
49-
- cd ../
50-
- cd ../touch_pad_evb
51-
- make defconfig
52-
- idf.py build
53-
- cd ../ulp_examples/ulp_watering_device
54-
- make defconfig
55-
- make -j8
56-
- cd ../ulp_rtc_gpio
57-
- make defconfig
58-
- make -j8
59-
- cd ../ulp_tsens
60-
- make defconfig
61-
- make -j8
62-
- cd ../ulp_spi
63-
- make defconfig
64-
- make -j8
65-
- cd ../ulp_hall_sensor
66-
- make defconfig
67-
- make -j8
68-
- cd ../../../tools/unit-test-app
69-
- make defconfig
70-
- make IOT_TEST_ALL=1 -j8
76+
- source /opt/pyenv/activate && pyenv global 3.6.10
77+
- /opt/pyenv/pyenv-1.2.16/versions/3.6.10/bin/python -m pip install --user -r docs/requirements.txt
78+
- cd docs
79+
- ./check_lang_folder_sync.sh
80+
- cd en
81+
- make gh-linkcheck
82+
- make html
83+
- ../check_doc_warnings.sh
84+
- cd ../zh_CN
85+
- make gh-linkcheck
86+
- make html
87+
- ../check_doc_warnings.sh
7188

7289
push_to_github:
7390
stage: deploy

.gitmodules

+6-18
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,6 @@
1-
[submodule "submodule/esp-idf"]
2-
path = submodule/esp-idf
3-
url = https://github.com/espressif/esp-idf.git
4-
[submodule "components/network/mqtt/espmqtt"]
5-
path = components/network/mqtt/espmqtt
6-
url = https://github.com/tuanpmt/espmqtt.git
7-
[submodule "components/platforms/alink/esp32-alink"]
8-
path = components/platforms/alink/esp32-alink
9-
url = https://github.com/espressif/esp32-alink.git
10-
[submodule "Adafruit-GFX-Library"]
11-
path = components/spi_devices/lcd/Adafruit-GFX-Library
12-
url = https://github.com/adafruit/Adafruit-GFX-Library.git
13-
[submodule "components/hmi/ugfx_gui/ugfx"]
14-
path = components/hmi/ugfx_gui/ugfx
15-
url = http://git.ugfx.io/ugfx/ugfx.git
16-
[submodule "components/hmi/lvgl_gui/lvgl"]
17-
path = components/hmi/lvgl_gui/lvgl
18-
url = https://github.com/littlevgl/lvgl.git
1+
[submodule "components/gui/lvgl_gui/lvgl"]
2+
path = components/gui/lvgl_gui/lvgl
3+
url = https://github.com/lvgl/lvgl.git
4+
[submodule "examples/hmi/lvgl_example/components/lv_examples/lv_examples"]
5+
path = examples/hmi/lvgl_example/components/lv_examples/lv_examples
6+
url = https://github.com/littlevgl/lv_examples.git

.readthedocs.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# .readthedocs.yml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Optionally build your docs in additional formats such as PDF and ePub
9+
formats:
10+
- htmlzip
11+
- pdf
12+
13+
# Optionally set the version of Python and requirements required to build your docs
14+
python:
15+
version: 3.7
16+
install:
17+
- requirements: docs/requirements.txt

CMakeLists.txt

-8
This file was deleted.

CONTRIBUTING.md

-43
This file was deleted.

CONTRIBUTING.rst

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
Contributions Guide
2+
========================
3+
4+
We welcome contributions to the esp-iot-solution project!
5+
6+
How to Contribute
7+
--------------------
8+
9+
Contributions to esp-iot-solution - fixing bugs, adding features, adding documentation - are welcome. We accept contributions via `Github Pull Requests <https://help.github.com/articles/about-pull-requests>`_.
10+
11+
Before Contributing
12+
----------------------
13+
14+
Before sending us a Pull Request, please consider this list of points:
15+
16+
* Is the contribution entirely your own work, or already licensed under an Apache License 2.0 compatible Open Source License? If not then we unfortunately cannot accept it.
17+
18+
* Does any new code conform to the esp-idf : :doc:`Style Guide <style-guide>` ?
19+
20+
* Does the code documentation follow requirements in `Documenting-code <http://docs.espressif.com/projects/esp-idf/en/stable/contribute/documenting-code.html>`_ ?
21+
22+
* Is the code adequately commented for people to understand how it is structured?
23+
24+
* Are comments and documentation written in clear English, with no spelling or grammar errors?
25+
26+
* If the contribution contains multiple commits, are they grouped together into logical changes (one major change per pull request)? Are any commits with names like "fixed typo" `squashed into previous commits <http://eli.thegreenplace.net/2014/02/19/squashing-github-pull-requests-into-a-single-commit>`_?
27+
28+
* If you're unsure about any of these points, please open the Pull Request anyhow and then ask us for feedback.
29+
30+
Pull Request Process
31+
-----------------------
32+
33+
After you open the Pull Request, there will probably be some discussion in the comments field of the request itself.
34+
35+
Once the Pull Request is ready to merge, it will first be merged into our internal git system for in-house automated testing.
36+
37+
If this process passes, it will be merged onto the public github repository.
38+
39+
Legal Part
40+
------------
41+
42+
Before a contribution can be accepted, you will need to sign our `contributor-agreement <http://docs.espressif.com/projects/esp-idf/en/stable/contribute/contributor-agreement.html>`_. You will be prompted for this automatically as part of the Pull Request process.
43+
44+
Related Documents
45+
-----------------
46+
47+
.. toctree::
48+
:maxdepth: 1
49+
50+
style-guide
51+

Makefile

-8
This file was deleted.

0 commit comments

Comments
 (0)