morris
9ae742eb85
rmt: check filter and idle threashold
...
Closes https://github.com/espressif/esp-idf/issues/11262
2023-04-29 06:51:35 +00:00
Darian
15badb778f
Merge branch 'refactor/freertos_xPortSysTickHandler' into 'master'
...
FreeRTOS: Refactor port_systick
See merge request espressif/esp-idf!23406
2023-04-29 01:08:42 +08:00
Darian Leung
76d4c9f592
freertos: Refactor port_systick
...
This commit refactors port_systick.c so that all ports (RISC-V vs Xtensa) of
all FreeRTOS implementations (IDF vs Amazon SMP FreeRTOS) use the same set of
tick interrupt functions. Thus, these funcitons are now common:
- vPortSetupTimer() to setup the tick interrupt's timer
- xPortSysTickHandler() that is called on each tick interrupt
2023-04-28 23:03:00 +08:00
Darian Leung
cf595293af
freertos: Move port_systick to common directory
...
This commit moves port_systick to a directory that ia accessible to both
IDF FreeRTOS and Amazon SMP FreeRTOS.
2023-04-28 23:03:00 +08:00
Justin Ong
8097cc9d72
Fix references to IDF_ADD_PATHS_EXTRAS before being declared
2023-04-28 21:30:53 +08:00
Sarvesh Bodakhe
cd0d42d43b
wpa_supplicant: Use 'mbedtls_pk_parse_public_key' to parse compressed EC public key and remove unnecessary code
...
Support to parse compressed EC public key is added from 'mbedtls-3.4.0'
2023-04-28 18:23:42 +05:30
Sarvesh Bodakhe
9e4915b81b
esp-wifi: add station SAE-PK (Public Key) configuration note
2023-04-28 18:23:42 +05:30
Darian
1a5249d7e7
Merge branch 'bugfix/ana_cmpr_negative_enum' into 'master'
...
driver: Fix ana_cmpr negative enum comparison and bad test
See merge request espressif/esp-idf!23508
2023-04-28 20:05:53 +08:00
isha.pardikar@espressif.com
8c3ba9e2dc
NimBLE: Added health thermometer profile
2023-04-28 17:20:16 +05:30
Xiao Xufeng
7dd054fe6b
i2s: use STAILQ_NEXT instead empty to improve readability
2023-04-28 18:49:10 +08:00
Jiang Jiang Jian
cac7a5c9cb
Merge branch 'bugfix/fix_bleqabr23_28' into 'master'
...
Bluedroid: report disconnect event after BLE link closed
See merge request espressif/esp-idf!23156
2023-04-28 17:59:29 +08:00
Jiang Jiang Jian
968ef8c24f
Merge branch 'bugfix/fix_esp32_ble_disconnect_failed' into 'master'
...
Fixed BLE disconnection failure on ESP32
See merge request espressif/esp-idf!23450
2023-04-28 17:57:41 +08:00
Jakob Hasse
9f4236f825
ci: increased freertos SMP linux target test timeout
2023-04-28 17:49:37 +08:00
Jiang Jiang Jian
b0d595d057
Merge branch 'bugfix/hf_cind_ind_index' into 'master'
...
bt: Fixed the inconsistency between the indicator event received by the HF application layer and the actually received indicator
Closes IDFGH-4674
See merge request espressif/esp-idf!23431
2023-04-28 17:48:14 +08:00
Jiang Jiang Jian
40aa745641
Merge branch 'bugfix/a2dp_source_app_state_error' into 'master'
...
bt: Fixed the issue that the a2dp source would not send the media start command due to the connection initiated by the peer device
Closes IDFGH-9843
See merge request espressif/esp-idf!23277
2023-04-28 17:46:22 +08:00
Island
d6b7fc9c55
Merge branch 'bugfix/fixed_ble_mic_error' into 'master'
...
ble: [ESP32C6][ESP32H2][ESP32C2] updata libble to 182858c1
Closes BLEQABR23-108, BLEQABR23-121, BLEQABR23-132, BLEQABR23-152, BLEQABR23-166, WIFI-5739, WIFI-5755, and COEX823-22
See merge request espressif/esp-idf!23327
2023-04-28 17:13:06 +08:00
Marius Vikhammer
fbe8a6a320
Merge branch 'docs/fix_rmt_link' into 'master'
...
docs: update link to rmt onewire example
See merge request espressif/esp-idf!23514
2023-04-28 15:19:07 +08:00
Darian Leung
03ce2fbaf0
driver: Fix ana_cmpr negative enum comparison
...
The C17 standard (sec 6.7.2.2) indicates that the underlying type of an enum is
implementation defined (i.e., can be signed or unsigned). Thus, comparing
"-1 >= some_enum" where "some_enum" is always 0 or largert can return true if
the compiler uses unsigned for enums.
This commit fixes the following issues with ana_cmpr:
- Fixed incorrect comparison in ana_cmpr_del_unit() that relied on enums being
signed, thus would always return true.
- Fixed incorrect expected argument in the "ana_cmpr_unit_install_uninstall"
test. This was not picked up due to the incorrect enum comparison above.
2023-04-28 14:52:50 +08:00
Wang Meng Yang
00687a1fb6
Merge branch 'bugfix/fix_ble_battery_profile_error' into 'master'
...
Fixed battery profile wrong condition in bluedroid host
Closes IDFGH-9937
See merge request espressif/esp-idf!23358
2023-04-28 14:50:03 +08:00
chenjianhua
5908cd968f
Update bt lib for ESP32-C3 and ESP32-S3
...
- Fixed ble hopping selection for connection when disabled 5.0 feature
2023-04-28 14:17:37 +08:00
Harshit Malpani
47740e3da5
Add esp32c6 in supported target for ota examples
2023-04-28 10:57:33 +05:30
Harshit Malpani
0c8db529cb
Add ESP32-C6 in supported targets for wifi_prov_mgr example
2023-04-28 10:57:32 +05:30
Marius Vikhammer
98579b5316
docs: update link to rmt onewire example
2023-04-28 13:25:46 +08:00
Mahavir Jain
b5055b9bfa
Merge branch 'feature/add_mbedtls_ciphersuites_set_get_api' into 'master'
...
esp-tls: Add config and api to set and get ciphersuites list
Closes IDF-7183
See merge request espressif/esp-idf!23320
2023-04-28 13:01:59 +08:00
morris
542c705282
Merge branch 'bugfix/lcd_cam_reg_clk_sel' into 'master'
...
soc: fix lcd_cam clock selection description
Closes IDFGH-9972
See merge request espressif/esp-idf!23391
2023-04-28 12:22:32 +08:00
morris
36c134bdc3
gptimer: enlarge test threshold
2023-04-28 11:43:50 +08:00
Shen Weilong
64c9dfd7d2
ble: [ESP32C6][ESP32H2][ESP32C2] updata libble
...
Fixed the occasional mic error caused by wrong tx cnt
Fixed the BLE connection timeout issue
2023-04-28 11:21:39 +08:00
Marius Vikhammer
47dda378ca
Merge branch 'bugfix/pm_trace_pins_c6' into 'master'
...
pm: fix invalid trace pins for C6 and H2
Closes IDFCI-1697
See merge request espressif/esp-idf!23496
2023-04-28 09:17:58 +08:00
morris
de72ac217c
Merge branch 'bugfix/rmt_one-wire' into 'master'
...
rmt_onewire: refactor example with component registry
Closes IDFGH-9422
See merge request espressif/esp-idf!23288
2023-04-28 04:51:32 +08:00
Jiang Jiang Jian
25222163b9
Merge branch 'bugfix/fix_softap_pairwise_cipher_issue' into 'master'
...
esp_wifi: update pairwise cipher in softAP
Closes WIFI-5768 and WIFI-5779
See merge request espressif/esp-idf!23270
2023-04-27 21:31:19 +08:00
yuanjianmin
e4e2bd24c9
doc: Add support to set and get ciphersuites list
2023-04-27 19:22:28 +08:00
yuanjianmin
3f58b33c7f
example: Add example to test ciphersuites set function
2023-04-27 19:22:27 +08:00
yuanjianmin
f74447103f
esp-tls: Add config and api to set and get ciphersuites list
2023-04-27 19:22:27 +08:00
Mahavir Jain
cba923788e
Merge branch 'feature/tls1_3_support' into 'master'
...
esp-tls: add initial support for TLS1.3 connections (client mode)
Closes IDF-7251 and IDF-7252
See merge request espressif/esp-idf!23442
2023-04-27 18:13:43 +08:00
hongshuqing
430776fc46
fix wrong hp ldo for h2
2023-04-27 17:29:10 +08:00
morris
fb3d24739a
soc: sync lcd_cam register description with TRM
...
Closes https://github.com/espressif/esp-idf/issues/11257
2023-04-27 16:28:05 +08:00
Cai Xin Ying
88358282d0
Merge branch 'docs/add_Chinese_translation_for_api-reference/peripherals/spi_master' into 'master'
...
docs: provide Chinese translation for api-reference/peripherals/spi_master
Closes DOC-4950
See merge request espressif/esp-idf!23186
2023-04-27 15:45:23 +08:00
Guillaume Souchere
c84f0b25ac
console: Fix building issue when serial JTAG is set
...
Closes https://github.com/espressif/esp-idf/issues/10707
2023-04-27 15:28:23 +08:00
Marius Vikhammer
220bb4452f
pm: fix invalid trace pins for C6 and H2
2023-04-27 15:19:17 +08:00
morris
af2085b789
rmt_onewire: refactor example with component manager
...
Closes https://github.com/espressif/esp-idf/issues/10790
2023-04-27 15:02:55 +08:00
Jiang Jiang Jian
afd0e384db
Merge branch 'feature/support_fosc_calibration_h2_eco2' into 'master'
...
ESP32H2: Fix fosc calibration fail bug for ECO2 & Above
See merge request espressif/esp-idf!23464
2023-04-27 14:37:38 +08:00
Marius Vikhammer
68088c6371
Merge branch 'ci/fix_overwrite_pytest_configs' into 'master'
...
ci: fixed test apps overriding idf_build_apps configs
See merge request espressif/esp-idf!23387
2023-04-27 14:32:18 +08:00
Chen Jian Hua
b2906d412d
Merge branch 'feature/support_periodic_adv_sync_trans' into 'master'
...
Bluedroid: add periodic adv sync transfer API and EVT
See merge request espressif/esp-idf!22146
2023-04-27 14:19:43 +08:00
Chen Jian Hua
809bd5a52c
Merge branch 'feature/support_gatt_read_multi_variable' into 'master'
...
Bluedroid: add GATT read multi variable API and EVT
See merge request espressif/esp-idf!21990
2023-04-27 14:18:22 +08:00
muhaidong
bd77a74c9d
esp_wifi: update pairwise cipher in softAP
2023-04-27 14:08:28 +08:00
Rahul Tank
aaefc8ce46
Merge branch 'feature/expose_addr_resolv_out_stack' into 'master'
...
Nimble:Added change to expose addr resolution API outside stack
See merge request espressif/esp-idf!23183
2023-04-27 13:02:59 +08:00
Jiang Jiang Jian
670c086807
Merge branch 'bugfix/pmkid_sha256_bug' into 'master'
...
wpa_supplicant: Fix PMKID SHA__256 related regression
Closes WIFI-5741 and WIFI-5740
See merge request espressif/esp-idf!23476
2023-04-27 12:47:04 +08:00
caixinying-git
05fe748c1e
docs: provide Chinese translation for api-reference/peripherals/spi_master
2023-04-27 12:10:54 +08:00
Marius Vikhammer
a3d0f5dd3e
Merge branch 'ci/cleanup_old_unit_test_configs' into 'master'
...
ci: cleanup, combine and remove old ttfw unit test app configs
Closes IDF-7277
See merge request espressif/esp-idf!23435
2023-04-27 12:08:05 +08:00
Shu Chen
8fd6e7311e
Merge branch 'bugfix/border_router_connect_with_SSED' into 'master'
...
OpenThread BR: support link metrics registration and csl.
See merge request espressif/esp-idf!23441
2023-04-27 11:19:10 +08:00