Peter Dragun
6495a8318d
Merge branch 'monitor_multi_elf' into 'master'
...
feat(monitor): Add support for decoding output based on multiple ELF files
Closes IDF-11026
See merge request espressif/esp-idf!34858
2024-11-19 17:18:35 +08:00
David Cermak
4449c8bfa2
fix(lwip): Remove unused LWIP flags from test configs
2024-11-18 23:06:17 +08:00
Tomas Rezucha
66596b7f59
feat(hints/usb): Add a hint about too small control transfer size
2024-11-18 21:03:30 +08:00
Peter Dragun
28dcb9a889
feat(monitor): Add support for decoding output based on multiple ELF files
2024-11-18 12:35:45 +01:00
Frantisek Hrbata
cf3802a0ac
fix(test_apps): do not check line endings in dut.expect
...
The default newlib read/write syscalls automatically convert newline
endings from LF to CRLF on stdout. Therefore, the test should not
specifically check for LF in the expected output, as the standard
conversion for stdout is CRLF. While it is possible to change the
expected line ending in the test from LF to CRLF, it seems more
dependable to just avoid verifying line endings entirely.
Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
2024-11-18 15:42:29 +08:00
Anton Maklakov
16469297b4
Merge branch 'feature/update-gdb-to-15.2_20241112' into 'master'
...
feat(tools): update gdb version to 15.2_20241112
Closes IDF-11325
See merge request espressif/esp-idf!34859
2024-11-15 22:17:20 +08:00
Radek Tandler
8255ba29a6
Merge branch 'feature/storage_nvs_bootloader' into 'master'
...
feat(storage/nvs): NVS bootloader support
See merge request espressif/esp-idf!31753
2024-11-15 00:12:18 +08:00
radek.tandler
c445ec134b
feat(nvs_flash): Implemented basic nvs_flash support for bootloader
2024-11-14 11:56:45 +01:00
C.S.M
38b737511c
Merge branch 'feat/tsens_support_c61' into 'master'
...
feat(temperature_sensor): Add temperature sensor support on esp32c61
Closes IDF-9322
See merge request espressif/esp-idf!34326
2024-11-14 17:51:36 +08:00
Gao Xu
bbcfb35d67
Merge branch 'feat/h21_introduce_step1_target' into 'master'
...
feat(esp32h21): introduce target esp32h21 (stage 1/8) 😐
See merge request espressif/esp-idf!34542
2024-11-14 10:46:44 +08:00
Ivan Grokhotkov
c7f32f80f4
feat(tools): autocomplete @-arguments of idf.py with file names
2024-11-13 11:50:48 +01:00
C.S.M
bff20b5397
feat(temperature_sensor): Add temperature sensor support on esp32c61
2024-11-13 10:52:47 +08:00
Marius Vikhammer
f8ddcee8cd
Merge branch 'refactor/cache_err_panic' into 'master'
...
refactor(panic): refactor and unify cache panic errors
See merge request espressif/esp-idf!34382
2024-11-13 10:19:38 +08:00
Roland Dobai
30b13b132d
Merge branch 'update/deprecate_python38' into 'master'
...
feat: Drop Python 3.8 support
Closes IDF-7579
See merge request espressif/esp-idf!34419
2024-11-13 01:40:58 +08:00
Roland Dobai
5bae0b92ec
Merge branch 'fix/import_error_msg' into 'master'
...
fix(tools): re-raise ImportError without module name
Closes IDF-11648
See merge request espressif/esp-idf!34780
2024-11-13 00:07:05 +08:00
Roland Dobai
542a5d280c
Merge branch 'contrib/github_pr_14733' into 'master'
...
fix(cmake): Prevent overwriting of component properties in output file (GitHub PR)
Closes IDFGH-13891
See merge request espressif/esp-idf!34807
2024-11-12 22:48:54 +08:00
Alexey Lapshin
dca5d193fc
feat(tools): update gdb version to 15.2_20241112
2024-11-12 14:07:16 +00:00
Frantisek Hrbata
a4acbd2758
feat: Drop Python 3.8 support
...
Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
2024-11-12 17:02:26 +08:00
Frantisek Hrbata
e8fda6f776
fix(tools): re-raise ImportError without module name
...
The ImportError or ModuleNotFoundError might be raised without
specifying a module name. In this not so common situation, re-raise the
exception to print all the information that could assist in identifying
the problem.
Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
2024-11-12 17:01:46 +08:00
gaoxu
64bbb53b8f
feat(esp32h21): introduce target esp32h21(stage 1)
2024-11-12 15:42:27 +08:00
Roland Dobai
cf087cb8e5
Merge branch 'feat/size_unify_sections' into 'master'
...
feat(tools): unify sections in idf.py size reports for NG version
Closes IDF-11649
See merge request espressif/esp-idf!34788
2024-11-12 13:31:10 +08:00
Fu Hanxi
d03ead4cf8
Merge branch 'ci/improve_overall_logging' into 'master'
...
ci: target-test job skip installing toolchain, only install python env
See merge request espressif/esp-idf!34232
2024-11-08 23:27:04 +08:00
Mahavir Jain
b3bae69c5c
Merge branch 'fix/mfg_gen_csv_and_bin_prefix' into 'master'
...
feat(mfg_gen): Added file name serial count prefix for intermediate csv and bin...
See merge request espressif/esp-idf!34251
2024-11-08 23:22:58 +08:00
Frantisek Hrbata
798d35b2e1
feat(tools): unify sections in idf.py size reports for NG version
...
By default, esp-idf-size.ng displays all sections individually. This can
be confusing, especially if CONFIG_SOC_MEM_NON_CONTIGUOUS_SRAM is
enabled, resulting in sections like .dram0.data and .dram1.data being
abbreviated as two .data sections in the size report. To avoid confusion
for idf.py and cmake users, pass the --unify option to the underlying
esp_idf_size.ng by default.
Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
2024-11-08 15:44:19 +01:00
sanika.inamdar
99f1455199
feat(mfg_gen): provision for specifying prefix counter for csv/bin files
2024-11-08 18:52:00 +05:30
Fu Hanxi
2a5743c0c5
ci: target-test job skip installing toolchain, only install python env
...
also run with collapsed time section to better track run time
2024-11-08 11:17:57 +01:00
Fu Hanxi
3e2b56d114
feat: idf_tools.py export support env var "IDF_SKIP_TOOLS_CHECK"
2024-11-08 11:13:44 +01:00
Fu Hanxi
5a3f53a2b5
ci: print esp-coredump output when failed in panic tests
2024-11-08 11:13:43 +01:00
Fu Hanxi
f84f883ab4
ci: change logging level from debug to info for build jobs
2024-11-08 11:13:43 +01:00
Fu Hanxi
d137deed2a
ci: add timeout for build jobs
2024-11-08 11:13:43 +01:00
Fu Hanxi
dcb4bf4600
ci: stop print presigned url, since the credential is masked
2024-11-08 11:13:39 +01:00
Erhan Kurubas
a843827c8e
feat(sysview): update to version 3.56
2024-11-07 21:58:30 +01:00
Peter Macko
4fa6e03879
fix(macos): ccache: re-enable, show stats, set CCACHE_DIR, limit CCACHE_MAXSIZE
2024-11-07 22:22:28 +08:00
Marius Vikhammer
9c5dde5536
refactor(panic): refactor and unify cache panic errors
2024-11-07 11:39:40 +08:00
Mahavir Jain
4c6cda734d
Merge branch 'feature/mmu_page_size_from_app_bin' into 'master'
...
feat(bootloader): add support to use MMU page size from app binary
Closes IDF-8209
See merge request espressif/esp-idf!33989
2024-11-06 17:14:31 +08:00
Adam Múdry
b2e0bd9200
Merge branch 'fix/sdmmc_send_acmd22_after_multiple_write_cmd' into 'master'
...
fix(sdmmc): Send ACMD22 if CMD25 fails
Closes IDF-9630
See merge request espressif/esp-idf!34376
2024-11-06 04:34:06 +08:00
Mahavir Jain
765fe330ea
test: add configurable mmu page size test app
...
Test app to ensure that bootloader and application built with
different flash MMU page size are compatible. This is for the
SoCs that support configurable flash MMU page size.
2024-11-05 20:37:31 +05:30
Marek Fiala
26002e13fc
feat(tools): Imporve activate.py debug information
2024-11-05 13:53:00 +01:00
WanqQixiang
682a66d164
fix(tools/esp_prov): Fix hostname resolving for IPv6-only host
2024-11-05 15:24:23 +08:00
Adam Múdry
6bf2d91c4d
test(sdmmc): Add test_apps test for sdmmc component
2024-11-05 02:36:43 +01:00
Omar Chebib
775c65a6b7
feat(bootloader): add the possibility to specify extra components directories
2024-11-01 13:52:01 +08:00
xuxiao
901812c589
fix(ci): disable esp32c5 adc ci test
2024-10-29 12:00:39 +08:00
Ivan Grokhotkov
d998d76627
change(version): Update version to v5.5-dev
2024-10-28 10:17:21 +01:00
Fu Hanxi
502749d254
ci: remove gitlab api call while generating pytest target-test child pipeline
2024-10-25 14:16:51 +02:00
Fu Hanxi
bdc2998e4b
ci: generate new report if old one failed to be updated
2024-10-25 14:13:05 +02:00
Mahavir Jain
cace647843
Merge branch 'feat/enable_security_test_cases_for_c5_and_c61' into 'master'
...
feat: enable security related testcases for c5 and c61
Closes IDF-10043 and IDF-10102
See merge request espressif/esp-idf!34325
2024-10-25 16:56:45 +08:00
Xu Xiao
190939e206
Merge branch 'disable_esp32c5_ci_test' into 'master'
...
Disable esp32c5 ci test
See merge request espressif/esp-idf!34363
2024-10-24 20:07:13 +08:00
Song Ruo Jing
92d335548f
Merge branch 'feature/ledc_sleep_retention_support' into 'master'
...
feat(ledc): support ledc sleep mode selection
Closes IDFGH-12713, IDF-9740, IDF-9769, IDF-9909, IDF-10372, IDF-10394, IDF-8472, and IDFCI-2450
See merge request espressif/esp-idf!34097
2024-10-24 11:43:11 +08:00
Kevin (Lao Kaiyao)
c4d29ff031
Merge branch 'refactor/refactor_the_confusing_i2s_number' into 'master'
...
refactor(i2s): rename the confusing port number
See merge request espressif/esp-idf!34362
2024-10-24 11:02:55 +08:00
Aditya Patwardhan
6930dff98d
Merge branch 'feature/add_option_to_provide_flash_file_for_qemu' into 'master'
...
feat(tools): Added option to specify flash image in "idf.py qemu"
See merge request espressif/esp-idf!34031
2024-10-24 02:22:43 +08:00