Search found 4 matches
- Mon Jul 03, 2023 12:06 pm
- Forum: ESP32 Arduino
- Topic: How to specify S=2 (500kbps) and S=8 (125kbps) in ESP32S3 BLE5.0 coded PHY?
- Replies: 4
- Views: 3051
Re: How to specify S=2 (500kbps) and S=8 (125kbps) in ESP32S3 BLE5.0 coded PHY?
I modified the ESP-IDF to send the HCI_LE_Set_Extended_Advertising_Parameters [v2] (OCF: 0x007F) command to the esp32-s3, but I received an UNKNOWN HCI COMMAND (0x01) in the HCI_Command_Complete event. It appears that the esp32-s3 does not support advertising with S=2. Additionally, on the receiving...
- Mon Jun 26, 2023 10:41 pm
- Forum: ESP32 Arduino
- Topic: How to specify S=2 (500kbps) and S=8 (125kbps) in ESP32S3 BLE5.0 coded PHY?
- Replies: 4
- Views: 3051
Re: How to specify S=2 (500kbps) and S=8 (125kbps) in ESP32S3 BLE5.0 coded PHY?
I tried the advertising feature using the following sample code from NimBLE, but my application crashes, causing ATOMS3 to go into a reboot loop. https://github.com/h2zero/NimBLE-Arduino/blob/release/1.4/examples/Bluetooth_5/NimBLE_multi_advertiser/NimBLE_multi_advertiser.ino For now, I have decided...
- Mon Jun 26, 2023 2:57 am
- Forum: ESP32 Arduino
- Topic: How to specify S=2 (500kbps) and S=8 (125kbps) in ESP32S3 BLE5.0 coded PHY?
- Replies: 4
- Views: 3051
Re: How to specify S=2 (500kbps) and S=8 (125kbps) in ESP32S3 BLE5.0 coded PHY?
Hello lbernstone,
Thank you for providing valuable information. I appreciate it.
I will give it a try using NimBLE. I will keep you updated if there are any developments.
Thank you for providing valuable information. I appreciate it.
I will give it a try using NimBLE. I will keep you updated if there are any developments.
- Fri Jun 23, 2023 10:46 am
- Forum: ESP32 Arduino
- Topic: How to specify S=2 (500kbps) and S=8 (125kbps) in ESP32S3 BLE5.0 coded PHY?
- Replies: 4
- Views: 3051
How to specify S=2 (500kbps) and S=8 (125kbps) in ESP32S3 BLE5.0 coded PHY?
I am able to advertise using the coded PHY, but I'm unsure about how to specify S=2 (500kbps) and S=8 (125kbps) coding options. I found the following configuration values in esp_gap_ble_api.h: #define ESP_BLE_GAP_PHY_OPTIONS_NO_PREF 0 /*!< The Host has no preferred coding when transmitting on the LE...