wanlei
a0e8f75336
fix(spi): correct some signals and dummy bits docs
2023-12-22 15:08:45 +08:00
Song Ruo Jing
fd3576eca6
fix(ledc): fix ledc driver 100% duty cycle configuration
...
Update ledc duty cycle value range in doxygen.
Fix duty configuration error at 100% duty cycle for ESP32.
Improve LEDC API doxygen.
Closes https://github.com/espressif/esp-idf/pull/11516
Closes https://github.com/espressif/esp-idf/issues/12593
Closes https://github.com/espressif/esp-idf/issues/12083
2023-11-17 15:24:17 +08:00
Armando
46e71e43ba
fix(adc): rename ADC_ATTEN_DB_11 to ADC_ATTEN_DB_12
...
By design, it's 12 dB. There're errors among chips, so the actual
attenuation will be 11dB more or less
2023-11-08 03:44:43 +00:00
morris
101c6abf04
docs(rmt): correct the reason about not allowing customized ISR handler
...
Closes https://github.com/espressif/esp-idf/issues/11478
2023-10-23 14:18:45 +08:00
Sudeep Mohanty
c30e238b16
fix(freertos): Updated IDLE task names for each core to have the coreID as a suffix
...
This commit updates the IDLE task names for each core by concatenating
the respective coreIDs to the names.
Closes https://github.com/espressif/esp-idf/issues/12204
2023-09-21 13:16:51 +02:00
Lou Tianhao
40954d1eb6
docs(pm/sleep): rewrite_all_low_to_any_low_when_not_esp32
2023-07-26 11:49:30 +08:00
Lou Tianhao
7aa3079e2a
Change: rewrite EXT1 triggle mode all_low to any_low when not esp32
2023-07-25 17:52:09 +08:00
zhangyanjiao
a803c50427
fix(wifi): Add bugfixes and improvements
...
1. Update wifi security mode
2. Add check for memory allocation in tx buffers
3. Fix association refused temporarily comeback time set to zero issue
4. Vnd ie callback can be set to null
2023-07-20 10:26:48 +08:00
Rotzbua
d360cdbd15
doc: remove WEP as security mode
...
Signed-off-by: zhangyanjiao <zhangyanjiao@espressif.com>
Closes https://github.com/espressif/esp-idf/pull/10015
2023-07-20 10:26:48 +08:00
xiongweichao
a709c402a6
docs(sleep_modes): Updated Wi-Fi/Bluetooth and Sleep Modes in docs
2023-07-17 17:13:22 +08:00
Marius Vikhammer
75c4b1f0bc
usb: fixed docs linking to deleted examples
2023-06-28 16:15:28 +08:00
morris
3f0ccda84e
Merge branch 'contrib/github_pr_11113_v4.4' into 'release/v4.4'
...
Fix usb enumeration stage error for some device (GitHub PR) (v4.4)
See merge request espressif/esp-idf!23334
2023-06-08 18:00:27 +08:00
Marius Vikhammer
aab35a2126
core-system/newlib: updated docs to reflect that tzset() needs to be called before localtime/mktime()
...
According to the posix standard localtime/mktime should use timezone information as though localtime/mktime() calls tzset(),
but this is not the case in older versions of Newlib.
Closes https://github.com/espressif/esp-idf/issues/11455
2023-05-24 16:37:29 +08:00
Darian Leung
fd2d4a83e2
usb_host: Update docs and comments regarding first configuration enumeration
...
This commit updates some comments and documentation regarding changes made in
PR https://github.com/espressif/esp-idf/pull/11113 .
2023-04-21 12:53:27 +08:00
morris
9516e80f61
Merge branch 'bugfix/wakeup_io_hold_unhold_in_sleep_v4.4' into 'release/v4.4'
...
gpio: Fix deep sleep wakeup IOs unable to unhold after wakeup (v4.4)
See merge request espressif/esp-idf!22670
2023-04-21 10:51:05 +08:00
Mahavir Jain
9e6e5ba0ef
docs: add a note regarding EFuse Block9 key purpose quirk for some chips
2023-04-20 13:58:51 +08:00
zhangyanjiao
37ff6b2ac9
Update the ESP-NOW frame length in docs
2023-04-11 14:21:43 +08:00
Song Ruo Jing
81b59071fd
gpio: Fix IO hold function related problems
...
1. Fix deep sleep wakeup IOs can not be unhold issue
2. Correct hold related APIs' description
3. Fix gpio_force_hold_all API
docs: Add GPIO wakeup source to sleep_modes doc for ESP32C3
2023-03-29 17:21:50 +08:00
KonstantinKondrashov
b19d685406
efuse: Fix load_efuses_from_flash when FE is on
...
esp_efuse_utility_load_efuses_from_flash() read emul_efuse
as an encrypted partition, but that is not correct,
this partition was never encrypted.
Need to read it as not encrypted partition.
Fxed the case: If FE is already on then EFUSE VIRT mode can work with it.
Closes https://github.com/espressif/esp-idf/issues/10929
2023-03-29 16:18:54 +08:00
David Cermak
29b8a00c0a
esp_netif/lwip: Fix core-locking config (v4.4)
...
* Fix thread safety issues in non-core locking
* Add option to verify thread safety issues in lwip (core-lock assertion)
* Make esp_sntp.h thread safe API
* Fix sntp example
(v4.4 - fixes minor merge issue that duplicated
DHCP_DEFINE_CUSTOM_TIMEOUTS and DHCP_REQUEST_TIMEOUT_SEQUENCE)
Closes https://github.com/espressif/esp-idf/issues/9908
Closes https://github.com/espressif/esp-idf/issues/10502
Closes https://github.com/espressif/esp-idf/issues/10466
2023-03-21 10:31:20 +01:00
Jiang Jiang Jian
48b3f236d3
Merge branch 'contrib/github_pr_10402_v4.4' into 'release/v4.4'
...
ledc: move callback to IRAM as it's called from an ISR (GitHub PR) (v4.4)
See merge request espressif/esp-idf!22593
2023-03-20 14:06:23 +08:00
Jiang Jiang Jian
c5e4b7d7d4
Merge branch 'bugfix/close_rf_in_deep_sleep_backport_v4.4' into 'release/v4.4'
...
deep sleep: further optimize sleep current if RF is enabled (backport v4.4)
See merge request espressif/esp-idf!22737
2023-03-20 14:04:36 +08:00
Jiang Jiang Jian
7cfc1a747f
Merge branch 'docs/update_esp_hid_device_v4.4' into 'release/v4.4'
...
docs: fixed missing API-reference documents for Bluetooth HID device(backport v4.4)
See merge request espressif/esp-idf!19582
2023-03-17 19:40:43 +08:00
Krzysztof Budzynski
6d09159974
Merge branch 'docs/format_temp_sensor' into 'release/v4.4'
...
format temp_sensor.rst
See merge request espressif/esp-idf!22475
2023-03-14 14:15:30 +08:00
wuzhenghui
e357de5406
deep sleep: close rf to optimize sleep current
2023-03-14 14:05:15 +08:00
Linda
aac827ede7
format temp_sensor.rst
2023-03-14 13:04:34 +08:00
wangmengyang
a91d53f04f
docs: fixed missing API-reference documents for Bluetooth HID device
...
# Conflicts:
# docs/docs_not_updated/esp32c2.txt
# docs/doxygen/Doxyfile
2023-03-14 12:13:48 +08:00
Michael (XIAO Xufeng)
8232f23f65
Merge branch 'feature/apply_new_version_logic_v4.4' into 'release/v4.4'
...
all: Apply new version logic (major * 100 + minor) (v4.4)
See merge request espressif/esp-idf!22481
2023-03-10 14:52:18 +08:00
Armando
eab3534c90
adc: no longer support adc2 oneshot mode on esp32c3
...
Due to HW limitation, we don't support this anymore. On c3, ADC2 under oneshot mode is not stable.
However, you can enable CONFIG_ADC_ONESHOT_FORCE_USE_ADC2_ON_C3 to force use
ADC2.
Refer to errata to know more details:
https://www.espressif.com/sites/default/files/documentation/esp32-c3_errata_en.pdf
2023-03-07 11:58:27 +08:00
Armando
ffb2db586a
adc: no longer support adc2 continuous mode on esp32c3 and esp32s3
...
Due to HW limitation, we don't support this anymore. On s3 and c3, ADC2 under continuous mode is not stable.
However, you can enable CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3 to force use
ADC2.
Refer to errata to know more details:
https://www.espressif.com/sites/default/files/documentation/esp32-s3_errata_en.pdf
https://www.espressif.com/sites/default/files/documentation/esp32-c3_errata_en.pdf
2023-03-06 18:57:58 +08:00
KonstantinKondrashov
a86c80e3ec
all: Apply new version logic (major * 100 + minor)
2023-03-03 22:26:39 +00:00
Song Ruo Jing
022a697ed8
ledc: Add check for whether the registered callback is in iram in ledc_cb_register
2023-03-03 17:35:35 +08:00
Marius Vikhammer
4a466ca518
Merge branch 'docs/elm_chan_broken_link_v4.4' into 'release/v4.4'
...
docs: fix broken link in fatfs doc (v4.4)
See merge request espressif/esp-idf!22298
2023-02-20 14:17:38 +08:00
Marius Vikhammer
d9393d3b47
docs: fix rst external links with wrong format
2023-02-13 12:15:31 +08:00
Marius Vikhammer
4c335b8dae
docs: fix broken link in fatfs doc
2023-02-09 16:11:08 +08:00
Zim Kalinowski
2dec69fa82
Merge branch 'feature/lower-iram-utilization-of-heap-component_v4.4' into 'release/v4.4'
...
heap: lower the utilization of IRAM by the heap component binary (backport v4.4)
See merge request espressif/esp-idf!21237
2023-02-07 16:54:58 +08:00
Mahavir Jain
11277bfdc5
Merge branch 'bugfix/remove_s3_dis_boot_remap_efuse_bit_v4.4' into 'release/v4.4'
...
docs: remove mention of DIS_BOOT_REMAP for chips other than ESP32-S2 (v4.4)
See merge request espressif/esp-idf!21810
2023-02-02 22:26:07 +08:00
Jiang Jiang Jian
d4080633f9
Merge branch 'feature/efuse_rev_major_minor_v4.4' into 'release/v4.4'
...
efuse: Adds major and minor versions (v4.4)
See merge request espressif/esp-idf!19541
2023-01-12 16:24:59 +08:00
Mahavir Jain
aa027bd1f6
docs: remove mention of DIS_BOOT_REMAP for chips other than ESP32-S2
...
Relevant: https://esp32.com/viewtopic.php?f=13&t=31188
2023-01-04 21:31:04 +05:30
Michael (XIAO Xufeng)
1d5fd5587e
Merge branch 'feature/modbus_remove_component_v44' into 'release/v4.4'
...
freemodbus: remove component files from esp-idf (backport v4.4)
See merge request espressif/esp-idf!18763
2022-12-22 17:05:56 +08:00
Alex Lisitsyn
ea646a9c22
freemodbus: remove component files from esp-idf (backport v4.4)
2022-12-22 17:05:55 +08:00
zhangyanjiao
8abcacd25e
esp_wifi: change max connection num on ESP32C3 and ESP32S3
...
Closes WIFI-5134
2022-12-22 11:45:50 +08:00
KonstantinKondrashov
26960f1734
efuse: Adds major and minor versions and others
2022-12-20 16:30:13 +08:00
Guillaume Souchere
125609963e
heap: add documentation about the function placement in IRAM and its usage in ISR
...
This commits adds a internal.md file in the heap directory to clarify the idea behind
which functions is placed in IRAM or in flash.
A section in mem_alloc.rst documentation is added to specify which functions from the
heap component API can be used in interrupt handlers.
2022-12-14 12:57:08 +01:00
jack
43f93678ce
reduce the max connection number to 15
2022-12-07 18:04:46 +08:00
zhangyanjiao
3823a991db
update doc for espnow max encryped connection
2022-12-07 11:37:06 +08:00
Jiang Jiang Jian
1411de54b4
Merge branch 'feature/support_hpm_on_flash_4.4' into 'release/v4.4'
...
spi_flash: Building a framework to enable HPM when flash works under high speed mode, take GD as an example.(backport v4.4)
See merge request espressif/esp-idf!17758
2022-11-11 16:47:26 +08:00
morris
6a2cffe84d
Merge branch 'doc/explain_ledc_callback_return_value_v4.4' into 'release/v4.4'
...
ledc: explain the callback return value (v4.4)
See merge request espressif/esp-idf!20967
2022-11-11 10:10:13 +08:00
morris
8cba2f2ddf
ledc: explain the callback return value
...
Closes https://github.com/espressif/esp-idf/issues/10093
2022-11-10 18:49:51 +08:00
Marius Vikhammer
9099608602
docs: remove link to i2c specs
2022-10-31 11:56:25 +08:00