Yuan Hong Hui
2a5931549b
ble_mesh:example:ble mesh console support nimble
2022-08-22 11:41:48 +08:00
Darian
1de6f9662c
Merge branch 'bugfix/remove_remaining_rom_time_t_dependencies' into 'master'
...
Newlib: Add workaround for ROM Newlib stdio functions using 32-bit time_t callpath
Closes IDFGH-7728
See merge request espressif/esp-idf!19461
2022-08-22 11:23:17 +08:00
Armando
5e31d4bb2b
esp_adc: add adc ulp mode disable enum
...
Prior to this commit, adc ulp is disabled by setting
adc_oneshot_unit_init_cfg_t::ulp_mode to false.
After this commit, a new enum `ADC_ULP_MODE_DISABLE` is added. So
setting `ulp_mode` to `ADC_ULP_MODE_DISABLE`, instead of `false`, to
disable the ulp mode.
2022-08-22 11:00:28 +08:00
Michael (XIAO Xufeng)
19add3fb05
sdio_slave: workaround the sdio_slave crash issue with release config + GCC11
2022-08-22 10:53:24 +08:00
Zim Kalinowski
e80d4c8f76
Merge branch 'docs/update_linkcheck_ignore_c2' into 'master'
...
docs: remove C2 datasheet from link check ignore
Closes IDF-4950
See merge request espressif/esp-idf!19514
2022-08-21 16:28:31 +08:00
Zim Kalinowski
f54972d95d
Merge branch 'feature/ulp_mutex' into 'master'
...
ulp-riscv: mutex/lock
Closes IDF-5754
See merge request espressif/esp-idf!19377
2022-08-21 16:27:53 +08:00
morris
9d9e320274
Merge branch 'ci/increase_test_flash_psram_timeout' into 'master'
...
ci: increase test_flash_psram timeout
See merge request espressif/esp-idf!19657
2022-08-21 16:21:32 +08:00
Darian Leung
fbcde6777f
newlib: Add workaround for printf functions using 32-bit time_t on first call
...
sizeof(time_t) was previously switched from 4 to 8, ROM functions that use
time_t or dependent types (such as "struct stat") are no longer called due as
they still treat sizeof(time_t) as 4 (see commit
24c20d188e
).
However, there is a ROM callpath that was left out. If putchar is the first
stdio print related call, the call path will result in cantwrite() ->
__swsetup_r() -> __smakebuf_r() -> __swhatbuf_r() using the ROM "struct stat"
(where sizeof(time_t)==4).
Instead of removing all printf related ROM newlib functions (which will result
in increased binary size), this commit adds a workaround to setup the stdio
files before any print related calls occur.
This results in cantwrite() always returning false, thus the callpath described
above never being reached.
Closes https://github.com/espressif/esp-idf/issues/9269
2022-08-21 15:27:50 +08:00
morris
2b1bee166d
Merge branch 'contrib/github_pr_9583' into 'master'
...
docs: Fixed wrong structure reference (GitHub PR)
Closes IDFGH-8081
See merge request espressif/esp-idf!19667
2022-08-21 15:09:42 +08:00
Ivan Grokhotkov
3ae64a7120
Merge branch 'feat/issue_forms' into 'master'
...
Add issue forms
See merge request espressif/esp-idf!19370
2022-08-20 01:17:30 +08:00
Tomas Borcin
b2a3cc5066
Add issue forms
2022-08-20 01:17:29 +08:00
Jakob Hasse
d6f3666875
Merge branch 'bugfix/nvs_flash_linux_target_cleanups' into 'master'
...
nvs_flash: cleanups related to linux target
See merge request espressif/esp-idf!19570
2022-08-19 21:07:48 +08:00
Ivan Grokhotkov
ea5fda812b
Merge branch 'bugfix/esp_err_linux_target' into 'master'
...
esp_common: make esp_err_to_name and ESP_ERROR_CHECK usable on Linux target
Closes IDF-2693
See merge request espressif/esp-idf!19569
2022-08-19 20:44:35 +08:00
Song Ruo Jing
0445c87459
ledc: Fix the usage of ledc_ls_timer_update and ledc_timer_rst
...
ledc_ls_timer_update is required only when CLK_DIV and DUTY_RES bits are changed.
Calling ledc_timer_rst while re-configure PWM frequency through ledc_set_freq can cause glitch in the signal
2022-08-19 19:07:46 +08:00
Armando (Dou Yiwen)
46a935eee8
Merge branch 'ci/run_psram_test_on_quad_psram_s3_boards' into 'master'
...
ci: run psram test on quad psram s3 boards
See merge request espressif/esp-idf!19658
2022-08-19 18:13:53 +08:00
Wan Lei
d26a99692c
Merge branch 'test/modify_spi_sio_case_name' into 'master'
...
SPI_Master: modify test case name for spi sio mode test
See merge request espressif/esp-idf!19646
2022-08-19 17:06:13 +08:00
Linda
830588020e
docs:update user guide of esp32-pico-kit
2022-08-19 16:50:05 +08:00
Chen Yudong
f5894c7562
CI: modify timeout of advanced_https_ota_example_bluedroid_gatts
2022-08-19 16:41:36 +08:00
Aditya Patwardhan
9b05874388
wifi_provisioning: Update API documentation to highlight argument validity while providing sec_params argument.
2022-08-19 14:02:41 +05:30
aleks
56bab744b3
modbus: update protocol migration guide
2022-08-19 10:28:09 +02:00
Ondrej Kosta
d3dd094f79
ci iperf: fixed condition for waiting to iperf server is up in DUT
2022-08-19 07:55:47 +00:00
Jakob Hasse
bcb34ca7ae
Merge branch 'feature/critical_section_api' into 'master'
...
esp_system: critical section api
Closes IDF-4754
See merge request espressif/esp-idf!19019
2022-08-19 15:30:44 +08:00
songruojing
01143bd732
gpio: fix USB D+ pin cannot disable pullup
...
Internally, disable usb serial jtag DP pin's pullup when calling gpio_ll_pullup_dis and rtcio_ll_pullup_disable
At usb serial jtag setup/install, re-enable DP pin's pullup
Closes https://github.com/espressif/esp-idf/issues/9495
2022-08-19 15:05:28 +08:00
Armando
56e4664d00
ci: add psram test to s3 boards with quad psram
2022-08-19 12:35:15 +08:00
Armando
5c617a0ff7
ci: increase test_flash_psram timeout
2022-08-19 12:13:00 +08:00
Song Ruo Jing
349d6555ea
Merge branch 'feature/introduce_esp32c6_target' into 'master'
...
ESP32C6: Introduce the target
See merge request espressif/esp-idf!19494
2022-08-19 12:12:50 +08:00
chenjianhua
e6b9b2fe96
soc: remove soc ble config from Kconfig
2022-08-19 11:15:20 +08:00
songruojing
304a8f142d
esp32c6: introduce the target
...
Add esp32c6 target to tools and Kconfig
Create directories and files that are essential for `idf.py --preview set-target esp32c6`
2022-08-19 11:13:02 +08:00
chenjianhua
0067c28013
Revert "component/bt: add local irk to controller"
...
This reverts commit 95c35288bc
.
2022-08-19 11:03:15 +08:00
chenjianhua
eaa9897386
Revert "Fixed ESP32 BLE can't resolve the peer address when enable white list"
...
This reverts commit 1cc0f6aac5
.
2022-08-19 11:03:15 +08:00
S. Jansen
29bdfc5ecc
docs: Fixed wrong structure reference given
2022-08-18 19:03:04 +02:00
Ivan Grokhotkov
c6e9a0c350
esp_common: make esp_err_to_name and ESP_ERROR_CHECK usable on Linux
2022-08-18 18:16:45 +02:00
Simon Chupin
1669a5d861
Merge branch 'feature/add_templates_for_hints' into 'master'
...
tools: add support of templates for hints
Closes IDF-5612
See merge request espressif/esp-idf!19227
2022-08-18 22:38:33 +08:00
Mahavir Jain
a2f028abe7
Merge branch 'feature/app_metadata_to_esp_system' into 'master'
...
app_update: Moved app metadata to new component `esp_app_format`
Closes IDF-4808
See merge request espressif/esp-idf!18862
2022-08-18 21:51:32 +08:00
Jiang Jiang Jian
1c250860b0
Merge branch 'bugfix/hfp_examples_not_work_with_default_sdkconfig' into 'master'
...
bugfix/set default number of sco connection to 1
Closes IDFGH-8029
See merge request espressif/esp-idf!19586
2022-08-18 21:40:22 +08:00
wanlei
a462022205
spi_master:modify test case name for spi sio mode test
2022-08-18 20:17:15 +08:00
Armando (Dou Yiwen)
6c35aa6868
Merge branch 'bugfix/fix_esp32_psram_cs_hold_time_issue_when_under_80m' into 'master'
...
esp_psram: fix esp32 psram cs hold time issue when under 40m
Closes IDF-5761
See merge request espressif/esp-idf!19393
2022-08-18 19:39:41 +08:00
simon.chupin
cc1eb81b2e
tools: add support of templates for hints
2022-08-18 13:37:32 +02:00
Jiang Jiang Jian
b738321c7f
Merge branch 'bugfix/add_clear_ap_list_interface' into 'master'
...
esp_wifi:add clear ap list interface
See merge request espressif/esp-idf!19441
2022-08-18 19:18:56 +08:00
Wang Zi Yan
2310736a4b
Merge branch 'docs/delete_chip_series_comparison' into 'master'
...
docs: remove and redirect chip-series-comparison.rst
Closes DOC-3453
See merge request espressif/esp-idf!19534
2022-08-18 18:58:51 +08:00
Fu Hanxi
d32bbf2e99
Merge branch 'ci/ignore_nearly_full_build_warning' into 'master'
...
ci: ignore partition nearly full warning
See merge request espressif/esp-idf!19638
2022-08-18 18:58:09 +08:00
Linda
3fa90c8e5d
docs: update name length of partition tables
2022-08-18 17:42:28 +08:00
Wang Zi Yan
a93ba27b43
Merge branch 'docs/add_pin_layout_diagram_and_notes' into 'master'
...
docs: update user-guide-devkitm-1.rst
Closes DOC-3495
See merge request espressif/esp-idf!19517
2022-08-18 17:16:16 +08:00
wangziyan
4eda60372d
docs: update the link to redirect chip-series-comparison.rst
2022-08-18 08:09:51 +00:00
wangziyan
b7a38e0127
docs: remove and redirect chip-series-comparison.rst
2022-08-18 08:09:51 +00:00
Fu Hanxi
52b4e57db7
ci: remove unused check_build_warnings script
2022-08-18 15:55:08 +08:00
Fu Hanxi
2a13d29759
ci: ignore partition nearly full warning
2022-08-18 15:51:49 +08:00
Chen Jian Hua
e2d488cf4b
Merge branch 'bugfix/fix_gatt_svc_attrs_count' into 'master'
...
Bluedroid: Configurable option to modify max gatt service attributes count
Closes IDFGH-7861
See merge request espressif/esp-idf!19313
2022-08-18 15:17:11 +08:00
David Čermák
cda6360666
Merge branch 'bugfix/lwip_ipv6_zone_violation' into 'master'
...
lw ip: Fix IPv6 zoning violations
Closes IDF-4856
See merge request espressif/esp-idf!18756
2022-08-18 14:48:57 +08:00
morris
5b48a33ad5
Merge branch 'feature/use_esp_jpeg_for_example' into 'master'
...
examples/tjpgd: Use esp_jpeg component in tjpgd and SPI examples
Closes IDF-5652
See merge request espressif/esp-idf!19464
2022-08-18 14:42:20 +08:00