Michael (XIAO Xufeng)
847a697c93
Driver(dac): fix DAC-DMA driver and unit test
2020-09-28 19:35:07 +08:00
Krzysztof Budzynski
81bbc8c88d
Merge branch 'doc/esp32s2_jtag_guide_v4.2' into 'release/v4.2'
...
docs: update JTAG debugging guide for ESP32-S2 (backport v4.2)
See merge request espressif/esp-idf!10311
2020-09-27 14:37:40 +08:00
Krzysztof Budzynski
4b10685fcc
Merge branch 'doc/remove_lts_versions_v4.2' into 'release/v4.2'
...
docs: Update Versions file in line with the latest Support Policy document (v4.2)
See merge request espressif/esp-idf!10599
2020-09-27 14:31:31 +08:00
martin.gano
50e2d0b32d
docs: add description of python-clean command
2020-09-27 00:03:38 +02:00
Angus Gratton
6443a96834
Merge branch 'backport/shared_stack4.2' into 'release/v4.2'
...
Backport/shared stack4.2
See merge request espressif/esp-idf!10303
2020-09-25 08:02:55 +08:00
Angus Gratton
dbdb1c1c23
docs: Update Versions file in line with the latest Support Policy document
2020-09-25 09:59:56 +10:00
Angus Gratton
e610df5870
Merge branch 'bugfix/esp32s2_panic_handler_iram_v4.2' into 'release/v4.2'
...
esp_common: allow placing panic handler into IRAM on ESP32-S2 (v4.2)
See merge request espressif/esp-idf!10295
2020-09-25 07:40:06 +08:00
Angus Gratton
6a711671c6
Merge branch 'bugfix/spinlock_coredump_regressions_v4.2' into 'release/v4.2'
...
Revert "Merge branch 'feature/gdb_stub_task_state' into 'master'" (backport v4.2)
See merge request espressif/esp-idf!10296
2020-09-25 07:33:05 +08:00
Angus Gratton
3b400767f3
Merge branch 'bugfix/idf_py_disable_cmake_warnings_default_v4.2' into 'release/v4.2'
...
idf.py: disable cmake uninitialized variable warnings by default (v4.2)
See merge request espressif/esp-idf!10201
2020-09-25 07:32:22 +08:00
Victor Lamoine
0831d06dee
Fix ccache documentation: environment variable is IDF_CCACHE_ENABLE
...
Merges https://github.com/espressif/esp-idf/pull/5753
2020-09-24 05:20:33 +00:00
Angus Gratton
722d67ea36
idf.py: Disable CMake --warn-uninitialized option by default
...
Can still be enabled by passing --cmake-warn-uninitialized on the command line
Prevents CMake warnings printed by default if IDF_PATH is underneath the CMake
project directory.
The reason for this is that CMake --warn-uninitialized only enables checks
inside the project directory (ie top-level CMakeLists.txt directory and
subdirectories), it doesn't enable for files included from other directories.
(The only way to enable warnings in other directories is to pass
--check-system-dirs and this looks like it's only useful for CMake's own
developers as it prints a lot of warnings from inside CMake otherwise - see
https://gitlab.kitware.com/cmake/cmake/-/issues/19645 )
Plan to follow up with a later commit to clean up most of the warnings (which
aren't problems for CMake execution), but we'll also disable this option by
default to avoid this unexpected triggering of IDF warnings.
2020-09-24 05:20:33 +00:00
Ivan Grokhotkov
8749c46284
esp_common: allow placing panic handler into IRAM on ESP32-S2
2020-09-18 15:35:48 +00:00
Felipe Neves
223f800dd7
expression_with_stack: added a tweak on TCB stackpointers to avoid false trigger of stack overflow
2020-09-17 20:46:02 +00:00
Felipe Neves
3e9637a893
test/shared_stack_printf: improved printf with shared stack function test
2020-09-17 20:46:02 +00:00
Ivan Grokhotkov
a6f0b15d3e
Revert "Merge branch 'feature/gdb_stub_task_state' into 'master'"
...
This reverts commit c41a0c1907
, reversing
changes made to 5c1d317766
.
2020-09-17 17:04:48 +00:00
Supreet Deshpande
b05213c327
Docs: Secure boot v2 support for ESP32-S2
2020-09-15 11:23:51 +05:30
Krzysztof Budzynski
ef19aac267
docs: Add missing target setting in step 7 of Getting Started documentation
2020-09-10 15:33:08 +08:00
Roland Dobai
4663b16779
Fix the setup instructions in the main README
2020-09-08 09:54:46 +02:00
morris
1f011c3b2a
docs: translate idf.py debug target
2020-09-04 21:59:05 +02:00
Ivan Grokhotkov
8f78db8073
docs: jtag-debugging: update Chinese version
2020-09-04 21:59:05 +02:00
Ivan Grokhotkov
7ae490d908
docs: jtag-debugging: fix ups in English version
2020-09-04 21:59:05 +02:00
Ivan Grokhotkov
b58d74da45
docs: add placeholders for {esp32,esp32s2}.inc in JTAG debugging guide
2020-09-04 21:59:05 +02:00
Ivan Grokhotkov
ead33e155d
docs: repurpose WROVER-KIT debugging guide for Kaluga-1
2020-09-04 21:59:05 +02:00
Ivan Grokhotkov
b7760cf269
docs: minor typos in JTAG debugging section
2020-09-04 21:59:05 +02:00
Ivan Grokhotkov
cfbd2566c1
docs: formatting fix in idf.py debugging section
2020-09-04 21:59:05 +02:00
Ivan Grokhotkov
b513dd11ce
docs: move target-specific parts of JTAG guide into include files
...
{esp32,esp32s2}.inc files contain most of the bits and code snippets
which are different between targets. These bits are included from the
rest of the source files.
Also included is an update to the section about OpenOCD configuration
variables and files. This section wasn't updated when some of the
files and variables got renamed.
2020-09-04 21:59:05 +02:00
Marius Vikhammer
5f09ffce96
docs: fix version specific note on local build
2020-08-24 16:10:28 +08:00
He Yin Ling
22221b073b
Merge branch 'test/merge_ble_mesh_node_and_provioner_in_console_v4.2' into 'release/v4.2'
...
Test:merge ble mesh node and provioner in console
See merge request espressif/esp-idf!9913
2020-08-21 19:59:21 +08:00
Lu Chang Jie
63d2a19925
Test: merge ble mesh node and provioner in console
2020-08-21 19:59:20 +08:00
Andrei Gramakov
010a825f48
docs: adds to build_docs.py an encoding check suitable for windows
2020-08-12 11:17:35 +02:00
Krzysztof Budzynski
e01cab4a71
Merge branch 'doc/version_specific_inc_bugfix_v4.2' into 'release/v4.2'
...
doc: fall back to CI_COMMIT_REF_NAME as a branch name (v4.2)
See merge request espressif/esp-idf!9863
2020-08-10 13:35:55 +08:00
Michael (XIAO Xufeng)
9dbff45229
Merge branch 'feature/twai_backport_v4.2' into 'release/v4.2'
...
TWAI: esp32s2 support and multiple bugfixes (backport v4.2)
See merge request espressif/esp-idf!9884
2020-08-03 11:13:20 +08:00
fuzhibo
885f8ce484
driver(adc): esp32s2 support API adc2_vref_to_gpio
2020-07-31 17:52:41 +08:00
Darian Leung
e6db25af9d
TWAI: Add ESP32-S2 support
...
This commit adds TWAI driver support for the
ESP32-S2. The following features were added:
- Expanded BRP support
- Expanded CLKOUT Divider Support
- Updated example READMEs
2020-07-30 22:09:39 +08:00
fuzhibo
f444d4d2dc
driver(adc): fix unit test for ADC-DMA (test_esp32s2.c); fix unit test for ADC-DMA (test_esp32s2.c); fix commit in adc dirver.
2020-07-30 19:38:23 +08:00
Marius Vikhammer
2802136595
doc: fall back to CI_COMMIT_REF_NAME as a branch name
...
In some cases gen_version_specific_includes.py would fail to find a branch/tag name for a commit
and would fall back to using commit SHA-1.
This should never happen in docs that should be published as we use the branch/tag name to generate
example commands for our users. E.g. "git clone -b $branch_name"
Closes https://github.com/espressif/esp-idf/issues/5657
2020-07-30 12:25:59 +08:00
Anton Maklakov
2d9325db1e
Merge branch 'bugfix/build_docs_check_link_v4.2' into 'release/v4.2'
...
build_docs: fix incorrect arguments for linkcheck (Backport v4.2)
See merge request espressif/esp-idf!9798
2020-07-28 14:00:55 +08:00
Krzysztof Budzynski
12dd6e5a85
Merge branch 'doc/freertos_backport_v4.2' into 'release/v4.2'
...
add a note about ESP-IDF FreeRTOS version (backport v4.2)
See merge request espressif/esp-idf!9810
2020-07-27 23:00:47 +08:00
yiying
76e7fcf0e4
update a link in the note
2020-07-27 17:27:31 +08:00
Marius Vikhammer
b081292e8e
build_docs: fix incorrect arguments for linkcheck
2020-07-27 15:14:59 +08:00
Marius Vikhammer
207cbabc51
doc: update chip features in getting started
...
Fixed number of cores for ESP32 and ESP32S2 being wrong.
Updated S2 to reflect that we have to ULP coprocessors
Closes IDFGH-3616
Closes https://github.com/espressif/esp-idf/issues/5556
2020-07-27 15:12:31 +08:00
yiying
dc06fd3c20
docs: change redirection link in get-started
...
This link is supposed to go to Step 3, but it goes to Step 2.
2020-07-22 16:49:00 +08:00
Angus Gratton
e1b03f08af
Merge branch 'bugfix/doc_macro_definitions_v4.2' into 'release/v4.2'
...
doc: Fix macro definitions for different targets (v4.2)
See merge request espressif/esp-idf!9566
2020-07-20 08:25:33 +08:00
Angus Gratton
21b123a925
Merge branch 'feature/sphinx_idf_theme_pip_v4.2' into 'release/v4.2'
...
docs: update build system to use sphinx_idf_theme pip package (v4.2)
See merge request espressif/esp-idf!9478
2020-07-10 12:56:43 +08:00
Angus Gratton
e3664e297b
docs: Redirect all of Doxygen stderr to the warnings log
...
Some errors (for example the errors caused by macro values, as fixed in previous
commit) get logged to stderr even if WARN_LOGFILE is set, but Doxygen succeeds.
2020-07-10 14:53:16 +10:00
Angus Gratton
db5d659762
docs: Log the full list of macros, remove code-style macros to prevent Doxygen errors
2020-07-10 14:53:15 +10:00
Angus Gratton
2b270bccbf
doc: Fix passing of build macros to Doxygen
...
Regression in fbb54184ef
, the dictionary
passed to generate_doxygen function was still the project_description
structure.
2020-07-10 14:53:15 +10:00
Krzysztof Budzynski
f7c5e49504
Merge branch 'doc/check_docs_multi_builder_v4.2' into 'release/v4.2'
...
docs: fix check_docs not working for multiple builders (v4.2)
See merge request espressif/esp-idf!9480
2020-07-08 23:50:36 +08:00
Angus Gratton
0cb87f67da
Merge branch 'feature/console_repl_over_uart_v4.2' into 'release/v4.2'
...
console_repl over UART (v4.2)
See merge request espressif/esp-idf!9422
2020-07-08 16:10:37 +08:00
Jiang Jiang Jian
ad5c4eb3f5
Merge branch 'mesh/bugfix_for_tbtt_update_v4.2' into 'release/v4.2'
...
fix the bug for tsf check (backport v4.2)
See merge request espressif/esp-idf!9279
2020-07-07 14:40:35 +08:00