Roland Dobai
2f62363cc6
Merge branch 'feature/add_utf_8_decoding_v5.2' into 'release/v5.2'
...
feat(tools): Enforced utf-8 encoding with Python open() functions (v5.2)
See merge request espressif/esp-idf!36127
2025-01-05 21:26:37 +08:00
Marek Fiala
3cca3da1d5
feat(tools): Enforce utf-8 encoding with open() function
2025-01-02 16:12:47 +01:00
Marius Vikhammer
94d9ab88bb
fix(interrupt): fixed wrongly reserved interrupt for wifi on H2
2025-01-02 16:49:11 +08:00
Jiang Jiang Jian
dbe1e41c6f
Merge branch 'ci/add_build_test_eco_versions_v5.2' into 'release/v5.2'
...
ci: add build test for eco versions (v5.2)
See merge request espressif/esp-idf!35820
2025-01-02 15:24:47 +08:00
Frantisek Hrbata
a4de7c8ac4
fix(hints): improve suggestion for missing header file
...
Currently, we are only suggesting that the header file is likely not
part of the component's INCLUDE_DIRS. However, the header file may be
missing also because of the configuration settings. For instance, the
component might be disabled in sdkconfig, or the feature that supplies
the header might not be enabled. Enhance the hint message to address
this scenario as well.
Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
2024-12-29 18:56:58 +01:00
Chen Yudong
1a95f45d3b
ci: add build test for eco versions
2024-12-19 21:02:57 +08:00
Roland Dobai
d7fe977e0f
fix(idf_tools.py): Upgrade pip and setuptools separately
...
This way the setuptools version dependency resolution will be done by
the upgraded pip.
2024-12-18 12:57:32 +01:00
Roland Dobai
af6aa414b2
Merge branch 'change/bump_up_kconfcheck_version' into 'release/v5.2'
...
ci(pre-commit): bump kconfig checker pre-commit version to 1.5.0
See merge request espressif/esp-idf!35402
2024-12-18 01:31:27 +08:00
Alexey Gerenkov
e82f6d2ce6
Merge branch 'fix/test_idf_gdb_v5.2' into 'release/v5.2'
...
test(system): mark gdb test runners properly (v5.2)
See merge request espressif/esp-idf!35588
2024-12-17 21:44:44 +08:00
Jan Beran
cc902394ef
ci(pre-commit): bump kconfig checker pre-commit version to 1.5.0
2024-12-17 14:33:28 +01:00
Island
aabe255f89
Merge branch 'bugfix/fix_hid_crash_v5.2' into 'release/v5.2'
...
fix(ble): Fix crash issue during logging (v5.2)
See merge request espressif/esp-idf!35509
2024-12-12 09:06:11 +08:00
Erhan Kurubas
f4e6591a89
change(cmake): use board configuration file for ftdi interface
2024-12-11 18:47:43 +01:00
Erhan Kurubas
d1d42a9b48
test(system): mark gdb test runners properly
2024-12-11 18:47:43 +01:00
Sarvesh Bodakhe
c3d4270d79
fix(esp_wifi): Add some bugfixes and cleanup in softAP
...
1. Fix wrong reason code in 'WIFI_EVENT_AP_STADISCONNECTED' event
2. cleanup in softAP for disconnecting connected station
3. Update examples to display reason while processing WIFI_EVENT_AP_STADISCONNECTED event
2024-12-10 20:22:51 +08:00
zhanghaipeng
88ae97e8be
feat(bt): Add support for converting BT HCI logs to btsnoop format
2024-12-09 17:54:20 +08:00
Alexey Lapshin
080f1a0b0d
feat(debugging): move gdbinit generation to CMake
...
This feature is useful for 3rd-party software to run GDB with predefined
options that described in project_description.json file
allow to pass custom options to "idf.py gdb":
--gdb-commands: command line arguments for gdb. (without changes)
-ex: pass command to gdb.
-x: pass gdbinit file to gdb. Alias for old --gdbinit command
2024-12-06 19:32:34 +07:00
igor.udot
e09fd7fce4
refactor: changed logic of unity_tester, replaced threads by generators
2024-12-03 09:43:15 +01:00
Erhan Kurubas
6f82c51403
fix(sysview): add prefix to the module desc to avoid stuck in Segger SystemView app
...
Closes https://github.com/espressif/esp-idf/issues/10483
2024-11-26 11:02:31 +01:00
Frantisek Hrbata
8113c1ab8c
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-21 09:47:06 +01:00
Jiang Jiang Jian
4360662325
Merge branch 'feat/lwip_more_sockets_v5.2' into 'release/v5.2'
...
change(lwip): bump max sockets in lwip Kconfig (GItHubPR) (v5.2)
See merge request espressif/esp-idf!34152
2024-11-18 11:17:08 +08:00
Jiang Jiang Jian
ac388268fd
Merge branch 'fix/kconfig-option-orphan_sections_warning_v5.2' into 'release/v5.2'
...
fix(build): fix orphan sections warning kconfig variable (v5.2)
See merge request espressif/esp-idf!33942
2024-11-18 11:15:15 +08:00
Aditya Patwardhan
5b0b23cfb3
Merge branch 'feature/add_compiler_no_merge_constants_v5.2' into 'release/v5.2'
...
feat: add compiler config for not merging const sections (v5.2)
See merge request espressif/esp-idf!34087
2024-11-15 15:32:51 +08:00
Rodrigo Silva
8f457cafa8
change: bump max sockets in lwip Kconfig
...
Tested under ESP32S3, running 50 tasks, each with a client, and a server
listening to one client, totalizing 150 sockets/files open, forwarding
data from PPP to Ethernet and vice versa.
Reasoning for 255 total sockets/files is VFS local_fd_t being a uint8_t.
Since FD_SETSIZE is defined at tool level, a CMakeLists user definition
is needed in cases above 64 (the default value).
Merges https://github.com/espressif/esp-idf/pull/13866
2024-11-13 15:20:42 +08:00
WanqQixiang
438fd1df62
fix(tools/esp_prov): Fix hostname resolving for IPv6-only host
2024-11-05 17:42:31 +08:00
Alexey Gerenkov
921133a133
Merge branch 'feature/update-openocd-to-v0.12.0-esp32-20241016_v5.2' into 'release/v5.2'
...
feat(tools): update openocd version to v0.12.0-esp32-20241016 (v5.2)
See merge request espressif/esp-idf!34394
2024-10-23 22:02:28 +08:00
Alexey Gerenkov
6735d9a9eb
feat(tools): update openocd version to v0.12.0-esp32-20241016
2024-10-23 10:05:20 +02:00
Roland Dobai
64452a7da3
fix(tools): Print message about GDBGUI being not supported with Python 3.13
2024-10-22 16:01:02 +02:00
Sergei Silnov
b79d811666
Merge branch 'feat/core_components_v5.2' into 'release/v5.2'
...
feat: add `COMPONENT_SOURCE` property to component targets (v5.2)
See merge request espressif/esp-idf!34185
2024-10-21 22:03:03 +08:00
radek.tandler
03d0870430
fix(storage/nvs): Fixed hadling of inconsistent values in NVS entry header
...
feat(storage/nvs): Added test cases for damaged entries with correct CRC
2024-10-18 10:55:19 +02:00
Jiang Jiang Jian
ad32630480
Merge branch 'fix/keep-got-sections-for-riscv_v5.2' into 'release/v5.2'
...
feat(esp_system): drop .got* sections and add hint (v5.2)
See merge request espressif/esp-idf!33371
2024-10-17 10:46:49 +08:00
Fu Hanxi
354233fc59
feat: add component_source property to component targets
2024-10-14 12:05:52 +02:00
Roland Dobai
bdcdd32bb7
Merge branch 'fix/ldgen_sort_v5.2' into 'release/v5.2'
...
fix(ldgen): enable default name SORT in linker fragment (v5.2)
See merge request espressif/esp-idf!34075
2024-10-14 15:20:41 +08:00
Mahavir Jain
01333b3172
feat: add compiler config for not merging const sections
...
Probably GCC-13.x and on-wards uses "-fmerge-constants" to merge
the const section (string/floating-point) across compilation units.
This makes it difficult to properly analyze the size output of rodata
section across libraries, the merged section (big in size) is showed
across a single library.
The config option added here can help to disable this compiler behavior
and help to provide better size analysis. It can be used during
development phase only as it increases rodata section size.
2024-10-10 15:35:54 +05:30
Marius Vikhammer
8ba7c287b0
Merge branch 'task/add_ldgen_exception_for_freertos_v5.2' into 'release/v5.2'
...
fix(freertos): Added freertos and ringbuf fragments to the exception list of ldgen mapping checks (v5.2)
See merge request espressif/esp-idf!33216
2024-10-10 16:27:15 +08:00
Frantisek Hrbata
d414eacc86
fix(ldgen): enable default name SORT in linker fragment
...
Currently, the `SORT` flag mandates the inclusion of at least the
`sort_by_first` argument in the grammar, despite the documentation[1]
indicating that `SORT` can be utilized without any arguments, defaulting
to sorting input sections by name. Fix this by modifying the grammar
to allow a default `SORT` and update a test accordingly.
[1] https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/
linker-script-generation.html
Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
2024-10-10 09:12:39 +02:00
Jan Beran
431923f23c
fix(uf2): Ignore ESPBAUD, ESPPORT when calling idf.py uf2[-app]
2024-10-01 13:47:19 +02:00
Erhan Kurubas
03e3c7c54b
test(esp-coredump): add test for the soft sha config
2024-10-01 10:07:23 +02:00
Alexey Lapshin
12e18c4524
fix(build): fix orphan sections warning kconfig variable
2024-10-01 12:19:04 +07:00
Roland Dobai
255d045cd7
Merge branch 'feat/update_tools_in_tools_json_v5.2' into 'release/v5.2'
...
feat(tools): Update tools: cmake, ninja, ccache (v5.2)
See merge request espressif/esp-idf!33531
2024-09-25 22:15:43 +08:00
Roland Dobai
736e287c51
Merge branch 'feature/tools_fix_arm64_arm32_detection_v5.2' into 'release/v5.2'
...
fix(idf_tools): Fix platform detection - arm64 hardware but it's running in arm32 environment (v5.2)
See merge request espressif/esp-idf!33395
2024-09-25 16:52:58 +08:00
Marek Fiala
bb8f9993d4
feat(tools): Exclude modified folders by rebuild
2024-09-25 16:52:32 +08:00
Marek Fiala
87210c5610
feat(tools): Update tools: cmake, ninja, ccache
...
cmake v3.24.0 -> v3.30.2
ninja v1.11.1 -> v1.12.1
ccache v4.8 -> v4.10.2
Closes https://github.com/espressif/esp-idf/pull/14376
2024-09-25 16:52:32 +08:00
Mahavir Jain
862ae0b8cd
Merge branch 'bugfix/check_bootloader_size_with_sign_v5.2' into 'release/v5.2'
...
fix(esptool_py): Check the size of the bootloader + signature block (v5.2)
See merge request espressif/esp-idf!33591
2024-09-25 15:35:55 +08:00
Ivan Grokhotkov
c9763f62dd
change(version): Update version to 5.2.3
2024-09-23 14:48:14 +02:00
Konstantin Kondrashov
d6f01e03d9
fix(examples): Increases partition table offset for SBV2+FE test
2024-09-18 09:58:29 +03:00
Alexey Lapshin
b746f6d6ef
feat(esp_system): drop .got* sections and add hint
...
Closes https://github.com/espressif/esp-idf/issues/14296
2024-09-06 18:48:39 +07:00
Anton Maklakov
76cfb388b3
fix(idf_tools): fix delimiter when the updater parsing, ' *' or ' '
2024-09-06 17:13:01 +07:00
Anton Maklakov
04b77f56f5
fix(idf_tools): Fix platform detection for arm64 machine but arm32 environment
2024-09-06 17:10:40 +07:00
Sudeep Mohanty
e90bb54f8b
test(freertos): Added build test for function in flash with -Os optimation
...
This commit adds a build test for when FreeRTOS and esp_ringbuf functions
are placed in flash and the compiler optimizes for code size.
2024-08-30 09:16:52 +02:00
Sudeep Mohanty
3dc035d8d6
fix(freertos): Added freertos fragments to the exception list of ldgen mapping checks
...
This commit adds freertos and esp_ringbuf linker fragment sections
to the exception list of the ldgen mappings checker script.
2024-08-30 09:16:50 +02:00