wuzhenghui
88c123f805
esp_rom: add esp_rom_software_reset and esp_rom_software_reset_cpu interface
2022-08-31 01:59:36 +00:00
Mahavir Jain
0a93ee1337
Merge branch 'bugfix/ctx_lock_wifi_prov' into 'master'
...
Fixed provisioning manager deinit
Closes IDFGH-8171
See merge request espressif/esp-idf!19828
2022-08-30 23:09:29 +08:00
Mahavir Jain
a8c8946766
Merge branch 'fix/mqtt_ssl_ds_remove_unwanted_readme_section' into 'master'
...
mqtt/ssl_ds: Remove unwanted readme section
See merge request espressif/esp-idf!19841
2022-08-30 22:30:22 +08:00
Simon
f923a835d2
Merge branch 'contrib/github_pr_9666' into 'master'
...
correct spelling of detect (GitHub PR)
Closes IDFGH-8170
See merge request espressif/esp-idf!19857
2022-08-30 18:58:30 +08:00
morris
c7696fb8ef
Merge branch 'docs/update_touch_sensor_esp32s2s3' into 'master'
...
docs: update touch sensor of esp32s2 and esp32s3
Closes DOC-3193
See merge request espressif/esp-idf!19696
2022-08-30 17:08:06 +08:00
Roland Dobai
cb81d14892
Merge branch 'bugfix/build_color_output_windows' into 'master'
...
tools: idf.py: use actual sys.stdout instead of the memoized one
See merge request espressif/esp-idf!19847
2022-08-30 16:31:42 +08:00
Marius Vikhammer
dfaaefe2ce
Merge branch 'bugfix/uart_sclk_freq' into 'master'
...
uart: fixed sclk_freq not init warning when compiling with asserts disabled
Closes IDFGH-8144
See merge request espressif/esp-idf!19792
2022-08-30 16:24:38 +08:00
Roland Dobai
61860832ac
Merge branch 'revert-02a19c6d' into 'master'
...
Revert "Merge branch 'feature/build_color_output' into 'master'"
See merge request espressif/esp-idf!19852
2022-08-30 16:05:51 +08:00
Ivan Grokhotkov
b548d9345e
Revert "Merge branch 'feature/build_color_output' into 'master'"
...
This reverts merge request !19330
2022-08-30 15:14:47 +08:00
morris
1ca3fad458
Merge branch 'bugfix/gpio_ut_usj' into 'master'
...
gpio: add a test case to test the ability of disabling USB D+ pin pull-up
See merge request espressif/esp-idf!19838
2022-08-30 14:09:45 +08:00
Aditya Patwardhan
6c7fd1edc0
mqtt/ssl_ds: Remove unwanted references to configure_ds.py, Also updated
...
the DS documentation
2022-08-30 10:54:15 +05:30
Gao Xu
0da21aca0d
Merge branch 'bugfix/fix_spi_hd_quad_issue_esp32c3' into 'master'
...
essl_spi: fix wrong dummy cycle under quad spi mode ant add a test to verify spi quad mod
Closes IDF-5182 and IDF-5181
See merge request espressif/esp-idf!18680
2022-08-30 10:53:11 +08:00
Simon
f8c3d093f0
Merge branch 'bugfix/btld_flash_ram' into 'master'
...
bootloader_flash: Some bootloader flash functions are not put in IRAM
See merge request espressif/esp-idf!19832
2022-08-30 10:51:52 +08:00
Ivan Grokhotkov
2c5b62f10e
tools: idf.py: use actual sys.stdout instead of the memoized one
...
This fixes the issue with build output not being colorized on Windows,
while the hints messages are colorized.
The issue occurred because sys.stdout and sys.stderr get overridden
by colorama.init() at runtime, but the default argument
output_stream=sys.stdout holds the reference to the"original"
sys.stdout.
colorama.init() (which, by the way, gets called via a curious chain
of imports, via idf_component_tools.manifest and tqdm package)
overrides standard streams, on Windows only. The overridden streams
contain logic to convert ANSI color codes into Windows Console API
calls to colorize the text.
Since read_and_write_stream function used the default value of
output_stream evaluated at module loading time, it was using the
original sys.stdout, not the one overridden by colorama.
One extra note is that while this does fix the coloring issue, the
solution is a bit fragile, as it relies on one of the following
(on Windows):
- colorama.init() is called (this can change if idf-component-manager
stops importing tqdm)
- Sufficiently new version of Windows 10 is used, and ANSI color codes
support is enabled in the Registry.
2022-08-30 01:30:32 +02:00
Ivan Grokhotkov
b7efde18c6
Merge branch 'bugfix/vfs_build_warning' into 'master'
...
vfs: use recommended `esp_cpu_dbgr_is_attached` API
See merge request espressif/esp-idf!19843
2022-08-30 07:18:40 +08:00
Fu Hanxi
4f3610f957
Merge branch 'ci/upload_elf_map_to_minio' into 'master'
...
ci: upload elf map file to s3 server to reduce artifacts size
Closes IDFCI-1385
See merge request espressif/esp-idf!19756
2022-08-30 01:06:11 +08:00
Mahavir Jain
8b8d525a6c
vfs: use recommended esp_cpu_dbgr_is_attached
API
...
This fixes deprecation warning with earlier API
`cpu_hal_is_debugger_attached`.
2022-08-29 22:15:11 +05:30
Jiang Jiang Jian
8d9c51f76d
Merge branch 'feature/add_txpwr_api_on_esp32c2' into 'master'
...
add set/get txpwr api for esp32c2
See merge request espressif/esp-idf!19520
2022-08-29 23:35:25 +08:00
Roland Dobai
1a006cb718
Merge branch 'feature/freertos_smp_sysview' into 'master'
...
sysview: Adds FreeRTOS SMP port
Closes IDF-4995
See merge request espressif/esp-idf!18615
2022-08-29 23:09:42 +08:00
Roland Dobai
84acc58d3c
Merge branch 'fix/disable_idf_py_moinitor_hints' into 'master'
...
Tools: Disable idf.py hints for IDF Monitor
Closes IDFGH-8110
See merge request espressif/esp-idf!19782
2022-08-29 22:51:55 +08:00
Roland Dobai
9d75833884
Merge branch 'contrib/github_pr_9656' into 'master'
...
upgrade ccache installed version to 4.6.2 (GitHub PR)
Closes IDFGH-8160 and IDFGH-6735
See merge request espressif/esp-idf!19834
2022-08-29 22:34:46 +08:00
Omar Chebib
239ca6a02c
Merge branch 'bugfix/fix_typo_get-started' into 'master'
...
docs: fix typo in get-started chapter
See merge request espressif/esp-idf!19762
2022-08-29 22:04:44 +08:00
Zhi Wei Jian
4a5662bc25
Merge branch 'feature/add_qa_test_funcs' into 'master'
...
Add QA test Functions for esp32
See merge request espressif/esp-idf!19735
2022-08-29 21:04:02 +08:00
Martin Vychodil
38acc3f7bf
Merge branch 'feature/vfs_driver_interface' into 'master'
...
esp/vfs: VFS semihosting interface support
Closes OCD-98
See merge request espressif/esp-idf!16932
2022-08-29 20:52:17 +08:00
Ivan Grokhotkov
02a19c6df5
Merge branch 'feature/build_color_output' into 'master'
...
build system, tools: enable compiler color diagnostics by default
Closes IDFGH-1965
See merge request espressif/esp-idf!19330
2022-08-29 20:32:42 +08:00
Song Ruo Jing
46886286c4
gpio: add a test case to test the ability of disabling USB D+ pin pull-up
2022-08-29 19:38:13 +08:00
Ivan Grokhotkov
4f0967d44c
Merge branch 'feature/update-gdb-to-11.2_20220823' into 'master'
...
tools: update gdb version to '11.2_20220823'
Closes IDFGH-4276 and IDF-842
See merge request espressif/esp-idf!19723
2022-08-29 19:34:40 +08:00
Isha Pardikar
b8fc63d658
wifi_provisioning: Fixed prov_ctx_lock of deinit provisioning manager
2022-08-29 16:08:56 +05:30
Cao Sen Miao
0de699532d
bootloader_flash: Some bootloader flash functions are not put in IRAM
2022-08-29 17:24:05 +08:00
Ivan Grokhotkov
990681764e
tools: cmake: upgrade from 3.23.1 to 3.24.0
2022-08-29 11:15:25 +02:00
Ivan Grokhotkov
712743d777
idf.py: ensure that build log is always sanitized from color sequences
...
The actual output from the build tool (CMake/Ninja) may or may not
contain color escape codes, depending on various factors. The output
written to the log file should never include color escape codes,
though. This is because color escape codes in files are usually not
rendered as "color" in editors, and complicate reading. Also escape
codes would break the regular expressions used to display hints for
compilation errors.
2022-08-29 11:15:16 +02:00
Ivan Grokhotkov
12abe1f316
tools: idf.py: enable CLICOLOR_FORCE for interactive builds
...
If stdout is a TTY (meaning that the output is not redirected), tell
the build tool (GNU Make or Ninja) to enable colorized output.
GNU Make and Ninja also check if their stdout is redirected and
strip color escape sequences in that case. CLICOLOR_FORCE environment
variable overrides this behavior.
With this change, if the compiler was launched with the
-fcolor-diagnostics flag and idf.py output is not redirected, the
final output in the terminal will be colorized.
(-fcolor-diagnostics is handled at CMake level by the previous commit)
2022-08-29 11:15:00 +02:00
morris
d36af75642
Merge branch 'feature/add_esp32c6_rom_header_file' into 'master'
...
esp_rom: add esp32c6 header files
See merge request espressif/esp-idf!19796
2022-08-29 17:14:09 +08:00
Ivan Grokhotkov
41cffbb2f2
cmake: enable CMAKE_COLOR_DIAGNOSTICS by default
...
Related to https://github.com/espressif/esp-idf/issues/4162
Setting this option informs CMake that it should pass
-fcolor-diagnostics flag to the compiler.
(Colorized build system output, like from GNU Make, is produced even
without this flag.)
Note that if the build is done using Ninja and the build output is
redirected (not a TTY), Ninja will still strip the escape codes from
the output. For the case of idf.py, this is handled in the next
commit.
2022-08-29 11:05:15 +02:00
Fu Hanxi
d6c3370535
ci: build apps only on shiny server
2022-08-29 16:57:31 +08:00
Fu Hanxi
1ffa222c23
ci: fix check_test_scripts_build_test_rules not install pytest error
2022-08-29 16:57:31 +08:00
Fu Hanxi
1ed5bf0bff
test: remove elf sha256 check from pytest_blink to qemu test
...
not upload elf file
2022-08-29 16:57:31 +08:00
Fu Hanxi
62c6a1d8b7
ci: adjust build jobs parallel count
2022-08-29 16:57:31 +08:00
Fu Hanxi
0d7f5b3d84
adc: skip linking static functions when not COMPILER_OPTIMIZATION_DEFAULT
2022-08-29 16:57:31 +08:00
Fu Hanxi
317f6bc024
esp_pm: fix esp32c2 no sleep_enable_memory_retention error
2022-08-29 16:57:31 +08:00
Fu Hanxi
2484e00a94
ci: move LDGEN_CHECK_MAPPING to configure_ci_environment.sh
2022-08-29 16:57:31 +08:00
Fu Hanxi
1267e826ca
ci: upload elf map file to s3 server to reduce artifacts size
...
f
2022-08-29 16:57:31 +08:00
Roland Dobai
94a2d9f16a
Merge branch 'bugfix/fix_hints_templates' into 'master'
...
tools: fix hints templates
See merge request espressif/esp-idf!19789
2022-08-29 16:43:14 +08:00
Aditya Patwardhan
187d3c2b40
Merge branch 'feature/use_esp_secure_cert_tool_for_ssl_ds_example' into 'master'
...
mqtt/ssl_ds example: Remove configure_ds.py script, use
Closes IDFGH-7353
See merge request espressif/esp-idf!19764
2022-08-29 16:37:31 +08:00
Roland Dobai
55b7b42724
Merge branch 'bugfix/fix_CN_letters_in_monitor' into 'master'
...
tools: fix multi-byte character appearance in idf.py monitor
See merge request espressif/esp-idf!19566
2022-08-29 16:36:01 +08:00
morris
b82d6ce928
md5_hash: fix copyright checker
2022-08-29 15:40:37 +08:00
wuzhenghui
fbeb6195c2
esp_rom: add esp32c6 header files
2022-08-29 15:40:37 +08:00
Aditya Patwardhan
41707d0f17
mqtt/ssl_ds: Add documentation on how to use esp-secure-cert-tool with
...
the example
2022-08-29 13:06:21 +05:30
Kapil Gupta
06db6c2098
Merge branch 'bugfix/wps_ssid_len_validation' into 'master'
...
wpa_supplicant: Add WPS ssid length validation
See merge request espressif/esp-idf!19486
2022-08-29 13:55:17 +08:00
Dai Zi Yan
ad800461c3
Merge branch 'docs/translate_for_bluetooth' into 'master'
...
docs: added CN translation for bluetooth-low-enery and bluetooth-classic
Closes DOC-3537
See merge request espressif/esp-idf!19752
2022-08-29 13:46:19 +08:00