Omar Chebib
52b558d218
Merge branch 'feature/enable_fp_backtracing' into 'master'
...
feat(riscv): implement frame pointer option for backtracing
See merge request espressif/esp-idf!32342
2025-01-13 18:11:49 +08:00
Mahavir Jain
5c5e80ca24
Merge branch 'feat/remove_pre_encrypted_ota_example_support' into 'master'
...
feat(ota): Remove the pre_encrypted_ota example from eps-idf
See merge request espressif/esp-idf!35891
2025-01-13 16:06:35 +08:00
hrushikesh.bhosale
8ea58f3d36
feat(ota): Remove the pre_encrypted_ota example from eps-idf
...
1. Remove the pre_encrypted_ota example from the esp-idf as we have
moved this example idf-extra-components repository under esp_encrypted_img
component
2. Added the migration guide for 5.5 release
2025-01-13 11:33:14 +05:30
laokaiyao
09b15b479a
refactor(touch): update touch related examples to use new API
2025-01-10 16:42:36 +08:00
Omar Chebib
1e0cdcbd13
feat(heap): enable heap tracing for the RISC-V targets
...
When the frame pointer is enabled, it is possible for RISC-V targets to now
possible to enable and generate heap call traces.
2025-01-09 11:57:02 +08:00
Song Ruo Jing
3fde2017cd
refactor(rtcio): update comments for rtc_io header file
...
Closes https://github.com/espressif/esp-idf/issues/13735
2025-01-08 16:49:34 +08:00
Roland Dobai
16ba8b7e4a
Merge branch 'feature/add_utf_8_decoding' into 'master'
...
feat(tools): Enforced utf-8 encoding with Python open() functions
Closes IDF-10654
See merge request espressif/esp-idf!32303
2024-12-30 16:07:29 +08:00
Marek Fiala
2c814ef2fa
feat(tools): Enforce utf-8 encoding with open() function
2024-12-27 17:12:21 +08:00
laokaiyao
678ddba550
feat(touch): allow RTC power down during the deep sleep
2024-12-26 19:14:12 +08:00
Marius Vikhammer
c35f188efb
fix(lp_io): allow edge wakeup types for LP-IO on chips which support it
2024-12-17 10:00:48 +08:00
Alexey Lapshin
888b5f7e8d
feat(newlib): add picolibc support
2024-12-02 21:35:56 +07:00
nilesh.kale
ea6e6cfcbd
feat: enabled configurable session resumption support in ota examples
...
This commit added config option to enable session ticket support
while performing ota. This helps in optimizing latency while
downloading ota over multiple HTTP requests.
closes https://github.com/espressif/esp-idf/issues/14783
2024-11-27 14:20:47 +05:30
Erhan Kurubas
06e8ee2893
Merge branch 'change/sysview_test_config' into 'master'
...
change(sysview): run heap_log tracing tests on existing cores
Closes IDFGH-9080 and IDF-6744
See merge request espressif/esp-idf!35005
2024-11-26 15:47:21 +08:00
Konstantin Kondrashov
4ace94342a
Merge branch 'ci/fix_pytest_otatool' into 'master'
...
fix(examples): Fix closing port in pytest_otatool
Closes IDFCI-2540
See merge request espressif/esp-idf!35117
2024-11-26 08:50:22 +08:00
Konstantin Kondrashov
724ed52209
fix(examples): Fix closing port in pytest_otatool
2024-11-22 07:32:25 +02:00
Erhan Kurubas
e12138a149
change(sysview): support single/dual core targets in heap_trace_log test
2024-11-21 18:36:33 +01:00
Frantisek Hrbata
1c92945f59
change(examples): switch examples to use a minimal build
...
Currently, several example dependencies rely on the fact that all
registered components are added to the build, along with components
specified in common requirements. This results in longer build times
because even unused components must be built. Switch all examples to use
idf_minimal_build to compile only the components actually required by
the example.
Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
2024-11-20 20:14:40 +01:00
Frantisek Hrbata
ad15109daa
change(examples): explicitly specify component dependencies for examples
...
Currently, several examples do not explicitly state their component
dependencies, relying instead on the default behavior that includes all
registered components and commonly required ones in the build.
Explicitly adding component dependencies can reduce build time when
set(COMPONENTS main) is used.
Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
2024-11-20 14:11:24 +01:00
yinqingzhao
f40c2cbc72
feat(wifi): avoid compiling components related to wifi when wifi is not supported
2024-11-19 11:02:09 +08:00
Ivan Grokhotkov
4d75d2d487
Merge branch 'bugfix/protocols_examples_common_driver_dep' into 'master'
...
remove leftover dependencies on `driver` component
See merge request espressif/esp-idf!33548
2024-11-14 22:21:57 +08:00
Omar Chebib
3ec05583b2
Merge branch 'contrib/github_pr_14771' into 'master'
...
fix(example/system/console): Add 'info' to log_level command description (GitHub PR)
Closes IDFGH-13933
See merge request espressif/esp-idf!34413
2024-11-11 10:56:56 +08:00
Ivan Grokhotkov
68e9bcbf1e
fix(build): clean up dependencies on driver component
2024-11-07 13:09:23 +01:00
Konstantin Kondrashov
97d150d69a
feat(app_update): OTA update bootloader, partition_table and other partitions
...
Passive app partition can be used as the staging partition where a new image is loaded.
Then copy it to the final partition.
Closes: https://github.com/espressif/esp-idf/issues/14195
Closes: https://github.com/espressif/esp-idf/issues/13824
2024-11-07 13:48:51 +02:00
Marius Vikhammer
402fecee17
Merge branch 'feature/lp_spi_example' into 'master'
...
feat(lp_core): added lp-spi example for lp core
Closes IDF-10287
See merge request espressif/esp-idf!34521
2024-11-06 10:58:19 +08:00
Omar Chebib
50ac90b489
Merge branch 'fix/nmi_not_triggering_on_s3' into 'master'
...
fix(examples): fix NMI interrupt example to work on ESP32-S3
Closes IDFCI-2475
See merge request espressif/esp-idf!34267
2024-11-06 10:09:57 +08:00
Marius Vikhammer
cfe6c45122
feat(lp_core): added lp-spi example for lp core
...
Added an example of using lp-spi from lp-core to read sensor data
from a BME280 sensor.
2024-11-05 08:18:09 +08:00
Peter Dragun
90abcdebf2
Merge branch 'fix/windows_escape_seq' into 'master'
...
fix: recommend using Windows Terminal in case of issues with escape sequences
Closes IDFGH-13646
See merge request espressif/esp-idf!34516
2024-11-01 16:01:25 +08:00
Konstantin Kondrashov
1a419e594b
Merge branch 'feature/support_primary_subtypes' into 'master'
...
feat(partition_table): Support primary subtypes partitions
Closes IDF-11330
See merge request espressif/esp-idf!34194
2024-11-01 15:13:31 +08:00
Omar Chebib
f6d154e761
fix(examples): fix NMI interrupt example to work on ESP32-S3
2024-11-01 10:17:09 +08:00
Marius Vikhammer
0e8a933488
ci(system): fixed build-test-rules which used ARCH config
...
These variables are not availble when evaluating the rules, resulting
in that the tests were never run.
2024-11-01 09:23:47 +08:00
Peter Dragun
8318adb448
fix: recommend using Windows Terminal in case of issues with escape sequences
...
Closes https://github.com/espressif/esp-idf-monitor/issues/17
2024-10-31 12:56:05 +01:00
Konstantin Kondrashov
8c4f576f99
feat(partition_table): Support primary subtypes partitions
2024-10-31 13:16:01 +02:00
Konstantin Kondrashov
1de0358249
Merge branch 'ci/fix_pytest_otatool_for_c2' into 'master'
...
fix(examples): Fix pytest_otatool for C2
See merge request espressif/esp-idf!34499
2024-10-30 15:13:02 +08:00
laokaiyao
c007ec5f17
feat(touch): update doc and example for touch version 2
2024-10-30 10:02:49 +08:00
Konstantin Kondrashov
949fc7f2c9
fix(examples): Fix pytest_otatool for C2
...
Test for C2 has to be run with flash_4mb
2024-10-29 11:59:52 +02:00
Duco Sebel
675653af89
fix(example/system/console): Add 'info' to log_level command description
...
Closes https://github.com/espressif/esp-idf/pull/14771
2024-10-24 02:39:48 +00:00
nilesh.kale
854101959d
feat: enable security related testcases for c5 and c61
2024-10-21 14:24:36 +05:30
Marius Vikhammer
1f1954378e
Merge branch 'feature/lp_core_gpio_wakeup' into 'master'
...
feat(lp_core): added support for LP-IO as LP-core wakeup source
Closes IDF-10200
See merge request espressif/esp-idf!31828
2024-10-18 09:32:49 +08:00
Marius Vikhammer
b4c501374f
feat(lp_core): added support for LP-IO as LP-core wakeup source
2024-10-16 09:34:20 +08:00
Erhan Kurubas
8c4337004b
Merge branch 'fix/esp32p4_apptrace' into 'master'
...
fix(apptrace): replace ctrl block into noncache-able TCM memory
Closes IDF-8107
See merge request espressif/esp-idf!34032
2024-10-15 17:45:24 +08:00
Mahavir Jain
44c6e49000
Merge branch 'feat/enable_otatool_support_for_c61' into 'master'
...
feat(ota): Added support of otatool for esp32c61
Closes IDF-11309
See merge request espressif/esp-idf!34072
2024-10-15 02:10:59 +08:00
Konstantin Kondrashov
d4c35b3db3
Merge branch 'ci/fix_flash_enc_wifi_test' into 'master'
...
fix(examples): Fix flash_enc_wifi test in pytest_simple_ota
See merge request espressif/esp-idf!34047
2024-10-11 00:42:29 +08:00
hrushikesh.bhosale
66ebdd0b32
feat(ota): Added support of otatool for esp32c61
...
Enabled the test for esp32c61 for otatool
2024-10-10 14:48:16 +05:30
Sudeep Mohanty
7b2e18d70f
Merge branch 'fix/freertos_example_ci_failure' into 'master'
...
fix(freertos): Fix freertos example pytest script
Closes IDFCI-2422
See merge request espressif/esp-idf!33888
2024-10-10 14:44:51 +08:00
Konstantin Kondrashov
0592bb6888
fix(examples): Fix flash_enc_wifi test in pytest_simple_ota
2024-10-09 12:39:43 +03:00
Erhan Kurubas
213c318e62
fix(apptrace): replace esp32p4 ctrl block into noncache-able TCM memory
2024-10-08 20:51:16 +02:00
Erhan Kurubas
1b82ca33ee
ci(apptrace): enable build tests for all targets except esp32p4
2024-10-04 22:22:31 +02:00
Sudeep Mohanty
1a547e34f1
fix(freertos): Fix freertos example pytest script
...
This commit updates the freertos/basic_freertos_smp_usage pytest script
to not follow a rigid order when testing against output logs as tasks
can spawn on any core in no particular order.
2024-10-01 10:08:45 +02:00
Mahavir Jain
1e4ebabe9b
Merge branch 'feat/enable_ota_examples_for_c61' into 'master'
...
feat(ota): Enable support for OTA examples for c61
Closes IDF-10915
See merge request espressif/esp-idf!33270
2024-09-27 12:38:09 +08:00
hrushikesh.bhosale
7db2dfce67
feat(ota): Enable support for OTA examples for c61
...
Tested OTA examples on esp32c61 and added their support in their
corresponding README.mds
2024-09-26 11:28:41 +05:30