-
Notifications
You must be signed in to change notification settings - Fork 7.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Callback parameter for esp_spp_cb_param_t::spp_open_evt_param open in example bluedroid/classic_bt/bt_spp_initiator (IDFGH-3446) #5408
Conversation
Fix broken pipe exception in CI for OTA examples See merge request espressif/esp-idf!8519
Add JTAG related example tests Closes IDF-1147 See merge request espressif/esp-idf!8393
docs: Fix and extend the DFU documentation page See merge request espressif/esp-idf!8602
esp_wifi: Enable WPA3 & PMF by default See merge request espressif/esp-idf!8600
Calloc function tries to allocate 4096 bytes. If such memory is not available, it returns NULL pointer. This exception was not handled in the code, causing a dirty crash.
console: linenoise: move allocations from stack to heap, fix calloc result checking (Github PR) Merges #5161 Closes IDFGH-3144 See merge request espressif/esp-idf!8612
mesh/ps: add duty control and support only transmit/receive on active duty See merge request espressif/esp-idf!8152
newlib: add endian.h header file for compatibility (Github PR) See merge request espressif/esp-idf!8236
Add changes to fix issues reported in clang analyzer
This adds a description of PlatformIO ecosystem, tutorials, examples Merges #5132
… 'core_dump_task_header_t' difference
tcp_transport: Implement connect timeout Closes IDFGH-2971, IDFGH-2810, and IDFGH-1541 See merge request espressif/esp-idf!8428
The log in the spi_bus_lock_touch may be annoying. This commit suppress the log level, and make the log visible only when the device altered. Resolves #5056
mbedtls: Add config options for chacha20, poly1305 and chachapoly See merge request espressif/esp-idf!8605
newlib: initialize syscall_table_ptr_app in single core mode Closes IDFGH-3254 See merge request espressif/esp-idf!8596
docs: add reference to platformio (Github PR) Closes IDFGH-3111 See merge request espressif/esp-idf!8606
Add API to get URL from HTTP client Closes IDFGH-3094 See merge request espressif/esp-idf!8637
esp_hid: fix minor memory leak on getting dev reports See merge request espressif/esp-idf!8631
esp_netif: fix default connect handler to check dhcpc return value Closes IDFGH-3173 See merge request espressif/esp-idf!8581
Since bt_mesh_friend_init() will only be invoked when a device is provisioned or Provisioner is enabled, so we add a flag to indicate if the friend functionality is initialized in case deinit before initialization.
Device name will be reset when deinit mesh stack. If not initializing device name during the next mesh stack init, it will fail to set the device name when using bluedroid.
…o 'master' feature: optimize wifi API max tx power description Closes WIFI-1097 See merge request espressif/esp-idf!8173
doc: add generation of tags from sdkconfig and x_caps.h headers Closes IDF-1484 See merge request espressif/esp-idf!8577
* Add options to mbedtls for hardware acceleration * Disable mbedtls EC curves if hardware acceleration is selected since the hardware will have to define the curves supported * Add a hardware ecdsa example
gh_action: fix python lint Closes IDF-1538 and IDFGH-3341 See merge request espressif/esp-idf!8812
esptool: Set 80MHz SPI flash speed for ESP32-S2 & future chips See merge request espressif/esp-idf!8739
ci: add missing noqa:F401 See merge request espressif/esp-idf!8844
ble_mesh: Add init flag for friend init/deinit Closes BLEMESH-205 See merge request espressif/esp-idf!8783
Example/ble mesh structural adjustment Closes BLEMESH-200 See merge request espressif/esp-idf!8719
* Replaced crypotoauthlib with esp-cryptoauthlib * Added menuconfig option for esp-tls about using HSM * Added error codes for HSM in esp-tls, * Added support to select different type of ATECC608A chips * Added README, updated docs * tcp_transport: Added option to enable secure_element for ssl Closes #4432
Feature/esp wroom32 se example See merge request espressif/esp-idf!8552
…t. Add link back to ESP-ADF documentation in ESP-LyraT-8311A user guide.
…1_board' into 'master' docs: OV3660 camera module is now supported with ESP32-S2-Kaluga-1 Kit. Add... See merge request espressif/esp-idf!8839
bugfix: fix flake8 warning for esp-cryptoauthlib submodule See merge request espressif/esp-idf!8865
|
In file esp-idf/examples/bluetooth/bluedroid/classic_bt/bt_spp_initiator/main/example_spp_initiator_demo.c
at line 119, this instruction:
esp_spp_write(param->srv_open.handle, SPP_DATA_LEN, spp_data);
should be changed with:
esp_spp_write(param->open.handle, SPP_DATA_LEN, spp_data);
as per API reference documentation.