Shu Chen
54f2536222
Merge branch 'backport/router_forwarding_flag_set_v51' into 'release/v5.1'
...
feat(lwip): support NA router farwording flag set(Backport V5.1)
See merge request espressif/esp-idf!27630
2023-12-08 12:24:38 +08:00
Mahavir Jain
ca02c6d274
Merge branch 'fix/rng_register_prefix_discrepency_newer_targets_v5.1' into 'release/v5.1'
...
Fix: RNG register prefix discrepancy for ESP32C6 and ESP32H2 (v5.1)
See merge request espressif/esp-idf!27684
2023-12-08 12:01:36 +08:00
Jiang Jiang Jian
d52d82ee83
Merge branch 'doc/change_deepsleep_example_readme_v5.1' into 'release/v5.1'
...
Doc/change deepsleep example readme v5.1
See merge request espressif/esp-idf!27447
2023-12-08 11:20:50 +08:00
Jiang Jiang Jian
4caaabec9e
Merge branch 'bugfix/lwip_dns_docs_v5.1' into 'release/v5.1'
...
fix(lwip): Document DNS limitation in lwIP (v5.1)
See merge request espressif/esp-idf!27562
2023-12-08 11:20:13 +08:00
Guillaume Souchere
27a78278a6
fix(heap): Patch tlsf_check_pool in ROM heap
...
The integrity_walker now calls the integrity check hook to control
free AND used blocks of memory in the TLSF pool. This integrity walker
function is called from tlsf_check_pool.
This commit creates a patch of integrity_walker function to update the
outdated implementation in the ROM.
2023-12-08 03:19:04 +00:00
Guillaume Souchere
6ac25c9324
fix(heap): Fixed integrity check on used blocks by the tlsf component
...
This commit updates the tlsf submodule to include the modification made in the component
aiming to perform integrity check on all blocks (not only the free ones).
Added test to test the fix in test_apps/heap_tests.
Fixes https://github.com/espressif/esp-idf/issues/12231
2023-12-08 03:19:04 +00:00
Jiang Jiang Jian
bc3a75d5ba
Merge branch 'fix/esp_netif_lock_v5.1' into 'release/v5.1'
...
fix(esp_netif): Lock netif list with TCPIP context (v5.1)
See merge request espressif/esp-idf!26710
2023-12-08 11:18:09 +08:00
Jiang Jiang Jian
c3de87083f
Merge branch 'fix/remove_deprecated_bt_example_sdkfonfigs_v5.1' into 'release/v5.1'
...
ci(bt/bluedroid): remove configs that are not in effect (backport v5.1)
See merge request espressif/esp-idf!27282
2023-12-08 11:17:18 +08:00
morris
5e29bd5370
Merge branch 'bugfix/fix_adc_continuous_do_not_rst_apb_clk_v5.1' into 'release/v5.1'
...
fix(adc): fix adc continuous get less results beacuse do not reset apb clk (v5.1)
See merge request espressif/esp-idf!27604
2023-12-07 21:27:05 +08:00
Jiang Jiang Jian
fb511f4ec6
Merge branch 'bugfix/nan_sd_dp_timer_fixes_v5.1' into 'release/v5.1'
...
Fix NAN service discovery, datapath and timer bugs (Backport v5.1)
See merge request espressif/esp-idf!27522
2023-12-07 21:17:31 +08:00
Jiang Jiang Jian
493ecf59d4
Merge branch 'bugfix/fix_dhcp_subnet_option_api_dos_not_work_issue_5.1' into 'release/v5.1'
...
Fix(dhcps):fix dhcp subnet option api dos not work issue 5.1
See merge request espressif/esp-idf!27675
2023-12-07 21:09:38 +08:00
Jiang Jiang Jian
977098edca
Merge branch 'feature/support_ext1_clear_spec_pins_v5.1' into 'release/v5.1'
...
fix(pm/ext1): fix c6 h2 lp_aon_ll_ext1_set_wakeup_pins func
See merge request espressif/esp-idf!27552
2023-12-07 21:07:54 +08:00
Frantisek Hrbata
db25ec2a37
feat: use esp-idf-sbom pre-commit plugin
...
Currently sbom manifest is checked only in .gitmodules and
this check is done in pre-commit and also in CI. Meaning it's running
three times(pre-commit before push if user has it enabled, in CI
as there is the pre-commit run again and again with test in CI). Since
esp-idf-sbom contains a full manifest validation support and pre-commit
plugin for it, let's use it. This removes all the current sbom testing
and replaces it with a signle pre-commit plugin which validates all
manifests files(sbom.yml, idf_component.yml, .gitmodules and also
referenced manifests) in repository. Note that this checks all
manifests, not only ones which were modified. The check is reasonably
fast though, so it should not cause any problem. The reason for
validating all manifest files is that we want to make sure that the sbom
information in .gitmodules is updated too and that the hash
recorded in .gitmodules is up-to-date. Meaning submodule update
would not trigger this plugin, because no manifest was changed.
Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
2023-12-07 13:36:00 +01:00
Harshit Malpani
1bce7d255d
fix(esp-tls): Add headers in esp_tls_errors.h header file
...
Closes https://github.com/espressif/esp-idf/issues/12541
2023-12-07 10:13:43 +00:00
kohait00
b3d77e3ea5
fix(app_update): avoid erasing an extra sector than the actual required size
...
OTA update used to fail if `firmware_size == partition_size`, because the code was trying to
erase one additional sector beyond the space reserved for the firmware partition.
This commit fixes the problem and OTA update can work if the firmware
size exactly matches the allocated partition size.
Closes https://github.com/espressif/esp-idf/pull/12460
2023-12-07 10:08:08 +00:00
morris
8425cada28
Merge branch 'bugfix/fix_adc_cali_error_after_light_sleep_wake_on_h2_v5.1' into 'release/v5.1'
...
adc: fix calibration error when waking up from light sleep on H2 and enable test (v5.1)
See merge request espressif/esp-idf!27603
2023-12-07 17:49:06 +08:00
Marius Vikhammer
25507da236
Merge branch 'bugfix/import_lib_example_url_v5.1' into 'release/v5.1'
...
fix(build-system/example): Removed dead URL for downloading tinyxml2 (v5.1)
See merge request espressif/esp-idf!27661
2023-12-07 16:56:49 +08:00
Jiang Jiang Jian
817884eb31
Merge branch 'bugfix/fix_wifi_init_reentrant_issue_v5.1' into 'release/v5.1'
...
Bugfix/fix wifi init reentrant issue v5.1
See merge request espressif/esp-idf!27629
2023-12-07 16:22:57 +08:00
Harshit Malpani
19355c0fef
fix(esp_http_client): Fix esp_http_client async mode
...
Closes https://github.com/espressif/esp-idf/issues/12358
2023-12-07 06:47:37 +00:00
zwx
923ce6a4b2
feat(mac): Add a configuration to set custom MAC as base MAC
2023-12-07 14:15:40 +08:00
harshal.patil
6a990a37ce
fix(soc/esp32h2): Fix llperi_rng_data field discrepancy
2023-12-07 11:42:00 +05:30
Shyamal Khachane
9cdf839cf6
fix(esp_wifi): Fix NAN service discovery, datapath and timer bugs
...
1. Fix crash while cancelling NAN service
2. Avoid possible crash scenarios while forming datapath
3. Modify peer records structure thus fixing issues in datapath establishment
4. Fix timer out of bound issue causing "No timer handle" warning
5. Fix miscellaneous service discovery and datapath issues
2023-12-07 03:54:55 +00:00
Mu Hai Dong
e86ff640f8
fix(wifi): free beacon eb when softap destroy
2023-12-07 03:54:55 +00:00
Lou Tianhao
c1782faf0f
fix(pm/ext1): fix c6 h2 lp_aon_ll_ext1_set_wakeup_pins func
2023-12-07 03:52:22 +00:00
liuning
46d4c6cc0a
fix(wifi): fix wifi deinit s_wifi_modem_sleep_lock
2023-12-07 03:44:38 +00:00
liuning
3515b1d5c8
fix(wifi): fix wifi init reentrant issue
2023-12-07 03:44:38 +00:00
xueyunfei
97b9c24c62
fix(dhcp server):dhcp server can not restore address pool
2023-12-07 02:59:50 +00:00
xueyunfei
c69f3aec91
Fix(dhcps):fix dhcp subnet option api dos not work issue
2023-12-07 02:59:50 +00:00
zwx
5413b6b794
feat(lwip): support NA router farwording flag set
...
* Update submodule: git log --oneline
4a8286ab8bcf983f22421e3d4be650837b5eb277..542ba2997f6cc14fe9c3d781bf9b0d890cd70bb1
- fix router forwarding flag set (espressif/esp-lwip@542ba299 )
2023-12-07 10:52:10 +08:00
zwx
7f12a645ce
fix(vfs): fix uart malloc when locates ISR context in IRAM
2023-12-07 10:43:58 +08:00
Cao Sen Miao
9dd90e2d9b
fix(bod): Reset brownout in configuration to avoid RF cannot be enabled again
2023-12-07 10:33:58 +08:00
Shu Chen
5bdcaef8c9
Merge branch 'fix/ieee802154_sleep_config_v5.1' into 'release/v5.1'
...
fix(ieee802154): fix ieeee802154 sleep enable configuration dependency issue (backport v5.1)
See merge request espressif/esp-idf!27466
2023-12-07 10:05:17 +08:00
Roland Dobai
ca5c8deb7e
Merge branch 'fix/fatfsgen_construct_v5.1' into 'release/v5.1'
...
fix(tools): Fix fatfsgen construct dependency (v5.1)
See merge request espressif/esp-idf!27655
2023-12-07 07:18:49 +08:00
Shu Chen
46d52c81f9
Merge branch 'backport5.1/ot_examples_config' into 'release/v5.1'
...
fix(openthread): openthread examples config (backport v5.1)
See merge request espressif/esp-idf!27553
2023-12-06 21:44:08 +08:00
xiaqilin
f38e56e685
fix(ieee802154): fix ieeee802154 sleep enable configuration dependency issue
2023-12-06 12:43:58 +00:00
Roshan Bangar
a496e87d73
fix(nimble): Handled invalid write on year value in Current Time Service
2023-12-06 18:03:59 +05:30
Alexey Gerenkov
c42c37aff7
Merge branch 'save_isr_ctx_to_coredump_v5.1' into 'release/v5.1'
...
feat(coredump): save isr context to coredump elf file (v5.1)
See merge request espressif/esp-idf!27454
2023-12-06 18:38:54 +08:00
gaoxu
6190b3f7c9
fix(adc): restore cali registers after light sleep wake up on H2 and enable test
2023-12-06 10:19:52 +00:00
gaoxu
98ec583690
ci(adc): add a test that adc continuous read after restarting
2023-12-06 10:19:45 +00:00
gaoxu
57a5c4684c
fix(adc): fix adc continuous get less results beacuse do not reset apb clk
2023-12-06 10:19:45 +00:00
Roland Dobai
ccc75dd2da
fix(tools): Fix fatfsgen construct exception type and dependency
...
construct=2.10.70 fixed an issue
(c3866e9492
)
and StringError is raised instead of UnicodeDecodeError.
2023-12-06 08:50:01 +00:00
wanlei
3486cf1b60
fix(spi): correct some signals and dummy bits docs
2023-12-06 16:15:23 +08:00
TD-er
8e0d64e94c
fix(spi): Correct REG_SPI_BASE(i) macro for all targets
...
The existing formula can never match these registers.
Closes https://github.com/espressif/esp-idf/pull/12559
Closes https://github.com/espressif/esp-idf/pull/12562
2023-12-06 16:13:01 +08:00
Anton Maklakov
4fe15460ab
Merge branch 'ci/fix_build_linux_targets' into 'release/v5.1'
...
Ci/fix build linux targets (v5.1)
See merge request espressif/esp-idf!27519
2023-12-06 15:31:35 +08:00
morris
5cf65ce766
Merge branch 'fix/usb_host_soc_caps_backport_v5.1' into 'release/v5.1'
...
USB host soc caps (backport v5.1)
See merge request espressif/esp-idf!27399
2023-12-06 09:59:53 +08:00
harshal.patil
c040a614a9
fix(soc/esp32c6): Fix llperi_rng_data field discrepancy
2023-12-05 21:08:48 +05:30
Aleksei Apaseev
3ed6c9bed5
ci: assign the test_case_name attribute to the case item while setting up a pytest session
2023-12-05 09:06:01 +01:00
Marius Vikhammer
81ab5f7fb7
fix(build-system/example): Updated dead URL for downloading tinyxml2
...
The import_lib example contained a fallback mirror for downloading tinyxml2 sources
but this link was dead. If this mirror was used it would cause the build to fail.
2023-12-05 12:32:33 +08:00
Mahavir Jain
d083a0e313
Merge branch 'support/add_srp_salt_ver_gen_api_v5.1' into 'release/v5.1'
...
Generate Salt and verifier pair for given username and password (v5.1)
See merge request espressif/esp-idf!27351
2023-12-04 21:10:51 +08:00
Xu Si Yu
d13e47596b
fix(openthread): add eventfd nums for spi interface
2023-12-04 17:51:25 +08:00