Jiang Jiang Jian
a0a0b2b4f7
Merge branch 'bugfix/fix_some_wifi_bugs_0805_v4.3' into 'release/v4.3'
...
fix some wifi bugs 0805 (backport v4.3)
See merge request espressif/esp-idf!19412
2022-08-11 20:07:31 +08:00
Jiang Jiang Jian
8ba4dd328a
Merge branch 'bugfix/docs_update_deep_sleep_note_v4.3' into 'release/v4.3'
...
backport v4.3: add a note for deep sleep crc check
See merge request espressif/esp-idf!19422
2022-08-11 15:45:39 +08:00
Li Shuai
d0f8a7c2bf
docs: add a note for deep sleep crc check
2022-08-08 11:17:56 +08:00
zhangyanjiao
6648e0e541
modify API-reference using Sphinx directives
2022-08-05 15:16:27 +08:00
zhangyanjiao
13da594657
update wifi api docs
2022-08-05 15:13:36 +08:00
wangjialiang
bcf14175c4
ble_mesh: doc: Restore missing ble mesh videos
2022-08-05 11:55:22 +08:00
xueyunfei
e7e962b8d0
lwip:add function for deinit lwip timers
2022-07-26 09:55:39 +00:00
Jack Farley
aa13b48819
DOC:Correct IP_EVENT_STA_LOST_IP name
...
Fix the name of the IP_EVENT_STA_LOST_IP event (was IP_STA_LOST_IP)
Signed-off-by: xueyunfei <xueyunfei@espressif.com>
Closes https://github.com/espressif/esp-idf/pull/8347
2022-07-26 09:55:39 +00:00
Sergei Silnov
aa2300c002
docs: Add IDF_COMPONENT_MANAGER build property
2022-07-18 13:21:41 +08:00
Sergei Silnov
38aecb227e
docs: Enable the component manager by default in CMake
2022-07-18 13:21:41 +08:00
Jiang Jiang Jian
2c8420bbd5
Merge branch 'docs/update_wifi_multiple_antennas_doc_v4.3' into 'release/v4.3'
...
docs: update wifi multiple antennas docs (v4.3)
See merge request espressif/esp-idf!19047
2022-07-15 10:48:20 +08:00
Krzysztof Budzynski
153271c3f1
Apply 1 suggestion(s) to 1 file(s)
2022-07-14 16:48:59 +08:00
Marius Vikhammer
a7177bc695
Apply 2 suggestions by Marius Vikhammer
2022-07-14 16:48:44 +08:00
muhaidong
f5bf1b502e
docs: update wifi multiple antennas docs
2022-07-14 16:48:29 +08:00
muhaidong
0ec51f96d6
docs: add WIFI_EVENT_STA_BEACON_TIMEOUT event docs.
2022-07-14 15:43:15 +08:00
muhaidong
9ab491d055
docs: update wifi beacon timeout docs
2022-07-14 15:43:15 +08:00
muhaidong
b142e78363
docs:update wifi sci subcarrier index docs
2022-07-08 14:44:33 +08:00
Jiang Jiang Jian
8a788526af
Merge branch 'docs/update_cn_trans_partition-tables_4.3' into 'release/v4.3'
...
docs: Update cn trans for partition-tables.rst (v4.3)
See merge request espressif/esp-idf!18031
2022-06-09 11:09:51 +08:00
Ivan Grokhotkov
e52ef6c326
docs: document build arguments of the Docker image
2022-06-01 16:22:14 +02:00
mofeifei
e69bae62b2
docs:update cn trans for partition-tables.rst
2022-05-17 02:25:53 +00:00
Alexey Gerenkov
fa6655cbcf
apptrace: Refactors apptrace for better support various tracing HW
2022-05-13 08:45:31 +00:00
Anton Maklakov
d9be879a76
Merge branch 'feature/add_component_manager_python_dependency_v4.3' into 'release/v4.3'
...
Build System: Add idf-component-manager python dependency (v4.3)
See merge request espressif/esp-idf!15663
2022-04-06 16:29:42 +08:00
Jiang Jiang Jian
70c737af4d
Merge branch 'bugfix/repeated_ftm_failures_issue_v4.3' into 'release/v4.3'
...
Combined bugfixes related to FTM and PMF (Backport v4.3)
See merge request espressif/esp-idf!16129
2022-03-16 11:00:24 +08:00
Nachiket Kukade
6fd6a8b40b
esp_wifi: Always connect Station in PMF mode if possible
...
While using esp_wifi_set_config, flag pmf_capable defaults to 0.
Users may not bother to enable it, which prevents connection to a
WPA3 AP. Or the AP may reset into WPA3 mode failing the re-connection.
To ensure better security, deprecate the pmf_capable flag and set it to
true internally.
2022-03-10 17:16:32 +05:30
Shang Zhou
81ac6fb7f0
docs: add note for MALLOC_CAP_DMA for ESP32-S2 according to customer feedback
2022-03-03 16:40:34 +08:00
Michael (XIAO Xufeng)
b1d6217f5c
Merge branch 'bugfix/usb_no_rom_log_v4.3' into 'release/v4.3'
...
USB_SERIAL_JTAG: Fix the issue that there is no rom log when restarting(backport v4.3)
See merge request espressif/esp-idf!17074
2022-02-14 07:34:24 +00:00
Sergei Silnov
917510ea96
docs: Add component manager documentation
2022-02-10 13:17:29 +00:00
Cao Sen Miao
9c4b96d63b
USB_SERIAL_JTAG: Fix the issue that there is no rom log when restarting
2022-02-10 10:33:40 +08:00
intern
c7fd71a893
docs: update wifi and nvs cn trans
2022-02-09 17:52:55 +08:00
Fu Hanxi
54b50ab4ac
docs(coredump): update coredump documentation
2022-01-18 17:48:41 +08:00
Darian Leung
e9cbf56d36
freertos: Fix SMP round robin scheduling
...
The previous SMP freertos round robin would skip over tasks when
time slicing. This commit implements a Best Effort Round Robin
where selected tasks are put to the back of the list, thus
makes the time slicing more fair.
- Documentation has been updated accordingly.
- Tidy up vTaskSwitchContext() to match v10.4.3 more
- Increased esp_ipc task stack size to avoid overflow
Closes https://github.com/espressif/esp-idf/issues/7256
2021-12-27 11:52:11 +08:00
Nachiket Kukade
ff42b70176
docs: Separate Doc on WiFi security, added DPP Doc
...
1. Add new Doc on WiFi security
2. Add DPP related Doc under WiFi
3. Add Supplicant public headers in Doxyfile
2021-11-25 21:01:29 +08:00
Jeroen Domburg
d6cdb3e0ae
usb_serial_jtag: support usb_serial_jtag on esp32c3
...
USB serial/jtag controller: Add vfs (logging/printf), panic handler, gdb support.
See merge request espressif/esp-idf!12925
2021-10-11 17:34:24 +08:00
intern
ec177e963f
docs: backport translation for jtag-debugging/index.rst and fix link
...
errors in examples/bluetooth/hci/README.md
2021-09-22 15:02:33 +08:00
Wang Fang
6c14a4b9f1
docs: Fix ADC pad and MOSI typo, update esp32c3 rom elf link
2021-09-14 11:20:48 +08:00
Ivan Grokhotkov
ea06260ec9
Merge branch 'docs/wifi_table_not_showing_v4.3' into 'release/v4.3'
...
docs: fix table in WifI guide not being rendered (v4.3)
See merge request espressif/esp-idf!14376
2021-07-30 03:04:26 +00:00
Ivan Grokhotkov
716efae251
Merge branch 'bugfix/esp32s2_disable_bss_extram_v4.3' into 'release/v4.3'
...
esp32s2: disable bss extram option, clean up spiram init code a bit (v4.3)
See merge request espressif/esp-idf!13733
2021-07-30 03:01:57 +00:00
Roland Dobai
4c09277b27
Merge branch 'bugfix/workaround-bash-lang-issue_v4.3' into 'release/v4.3'
...
Bugfix: Set LANG to en code to avoid RuntimeError during autocompletion activation & Replaced broken link to shell autocompletion (v4.3)
See merge request espressif/esp-idf!14122
2021-07-29 13:31:53 +00:00
Krzysztof Budzynski
75940e9364
Merge branch 'docs/fix_UART_default_pin_error_and_provide_a_link_to_ESP_PROG_v4.3' into 'release/v4.3'
...
docs: fix uart default pin error and provide more information about ESP-Prog board (v4.3)
See merge request espressif/esp-idf!13968
2021-07-23 11:15:24 +00:00
Angus Gratton
7c55633bfb
esp_common: Correctly disable ".bss segment placed in external memory" for ESP32-S2 & ESP32-S3
...
Support for this feature is still pending.
As reported by https://github.com/espressif/esp-idf/issues/6162
2021-07-16 11:39:09 +10:00
Marius Vikhammer
0347b5d043
docs: fix table in WifI guide not being rendered
2021-07-15 14:57:15 +08:00
Roland Dobai
fe485a1ea0
docs: Suggest how to use JTAG for ESP32-C3 on Windows
2021-07-12 17:32:34 +02:00
Marius Vikhammer
8744cb880b
docs: add rf calibration docs for S2 and C3
2021-06-24 11:33:20 +08:00
Martin Gaňo
beba6f954c
Temporarily set LANG to en code to avoid RuntimeError
...
Closes https://github.com/espressif/esp-idf/issues/7173
2021-06-23 14:43:01 +02:00
Wang Fang
9ac6b53760
docs: Correct uart default pin names and provid more information about ESP-Prog board
2021-06-15 15:32:22 +08:00
Angus Gratton
58a3e08895
paritition_table: Verify the partition table md5sum when loading the app
...
Additionally, always enable the partition MD5 check if flash encryption is on in
Release mode. This ensures the partition table ciphertext has not been modified
(CVE-2021-27926).
The exception is pre-V3.1 ESP-IDF bootloaders and partition tables, which
don't have support for the MD5 entry.
2021-05-30 23:21:14 +00:00
Angus Gratton
467c7af33e
Merge branch 'doc/general_notes_v4.3' into 'release/v4.3'
...
doc: Update docs about startup sequence and memory types (v4.3)
See merge request espressif/esp-idf!13316
2021-05-03 06:48:07 +00:00
chenjianxing
e4d84804c1
update esp32c3 iperf config
2021-04-28 15:50:41 +08:00
Angus Gratton
275743ab1c
doc: Add notes that vTaskStartScheduler() is called during startup
...
Closes https://github.com/espressif/esp-idf/issues/1457
2021-04-23 22:48:47 +10:00
Angus Gratton
8a39b5237d
doc: update the memory types and startup docs
2021-04-23 22:48:47 +10:00