File tree 4 files changed +56
-6
lines changed
4 files changed +56
-6
lines changed Original file line number Diff line number Diff line change
1
+ ----------------------------------------------------------------------------------------------------------------------------------------------------
2
+ This entire section can be deleted if all items are checked.
3
+
4
+ * By completing this PR sufficiently, you help us to improve the quality of Release Notes*
5
+
6
+ ### Checklist
7
+
8
+ 1 . [ ] Please provide specific title of the PR describing the change, including the component name (eg."Update of Documentation link on Readme.md")
9
+ 2 . [ ] Please provide related links (eg. Issue, other Project, submodule PR..)
10
+ ----------------------------------------------------------------------------------------------------------------------------------------------------
11
+
12
+ ## Summary
13
+ Please describe your proposed PR and what it contains.
14
+
15
+ ## Impact
16
+ Please describe impact of your PR and it's function.
Original file line number Diff line number Diff line change
1
+ name : ReadTheDocs CI
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ - release/*
8
+ paths :
9
+ - ' docs/**'
10
+ - ' .github/workflows/docs.yml'
11
+ pull_request :
12
+ paths :
13
+ - ' docs/**'
14
+ - ' .github/workflows/docs.yml'
15
+
16
+ jobs :
17
+
18
+ build-docs :
19
+ name : Build ReadTheDocs
20
+ runs-on : ubuntu-latest
21
+ defaults :
22
+ run :
23
+ shell : bash
24
+ steps :
25
+ - uses : actions/checkout@v2
26
+ with :
27
+ submodules : true
28
+ - uses : actions/setup-python@v2
29
+ with :
30
+ python-version : ' 3.x'
31
+ - name : Build
32
+ run : |
33
+ sudo apt update
34
+ sudo apt install python3-pip python3-setuptools
35
+ # GitHub CI installs pip3 and setuptools outside the path.
36
+ # Update the path to include them and run.
37
+ PATH=/home/runner/.local/bin:$PATH pip3 install --user -r ./docs/requirements.txt
38
+ cd ./docs && PATH=/home/runner/.local/bin:$PATH SPHINXOPTS="-W" make html
Original file line number Diff line number Diff line change 30
30
#include "stdlib_noniso.h"
31
31
#include "esp_system.h"
32
32
33
- #if !CONFIG_DSP_ANSI && !CONFIG_DSP_OPTIMIZED
34
- void reverse (char * begin , char * end ) {
33
+ static void reverse (char * begin , char * end ) {
35
34
char * is = begin ;
36
35
char * ie = end - 1 ;
37
36
while (is < ie ) {
@@ -42,9 +41,6 @@ void reverse(char* begin, char* end) {
42
41
-- ie ;
43
42
}
44
43
}
45
- #else
46
- void reverse (char * begin , char * end );
47
- #endif
48
44
49
45
char * ltoa (long value , char * result , int base ) {
50
46
if (base < 2 || base > 16 ) {
Original file line number Diff line number Diff line change 56
56
# a list of builtin themes.
57
57
#
58
58
html_theme = 'default'
59
- html_logo = 'logo_espressif.png'
59
+ html_logo = '_static/ logo_espressif.png'
60
60
61
61
# Add any paths that contain custom static files (such as style sheets) here,
62
62
# relative to this directory. They are copied after the builtin static files,
You can’t perform that action at this time.
0 commit comments