Search found 5 matches
- Sun Sep 05, 2021 7:42 pm
- Forum: ESP-IDF
- Topic: BrakTooth Vulnerability on ESP32 (Arbitrary Code Execution)
- Replies: 5
- Views: 5681
Re: BrakTooth Vulnerability on ESP32 (Arbitrary Code Execution)
Is there any information how sniffer work? There is no source code for esp32 firmware in gtihub repo.
- Sun Feb 21, 2021 12:47 pm
- Forum: ESP-IDF
- Topic: How to send connection request?
- Replies: 5
- Views: 4991
Re: How to send connection request?
How i can include btm_api.h to my code, so i can use BTM_CreateSco function?
- Sat Feb 20, 2021 10:33 pm
- Forum: ESP-IDF
- Topic: How to send connection request?
- Replies: 5
- Views: 4991
Re: How to send connection request?
Hello, i done more testing of this and it looks like the connection that i established using function send_con_rq() code that i sent here before is always dropping after 10 seconds. I tried establish connection with hf initiated and using funtion esp_hf_client_connect but i doesn't work. if i establ...
- Fri Feb 19, 2021 7:23 am
- Forum: ESP-IDF
- Topic: How to send connection request?
- Replies: 5
- Views: 4991
Re: How to send connection request?
Hi, thanks for response. Is it possible to connect to device without using HFP, A2DP or SPP classes? I want to connect to device and read rssi, and link quality. I can do the same thing on linux using hcitool commands: hcitool cc AB:CD:EF:00:00:00 hcitool rssi AB:CD:EF:00:00:00 hcitool lq AB:CD:EF:0...
- Thu Feb 18, 2021 11:02 pm
- Forum: ESP-IDF
- Topic: How to send connection request?
- Replies: 5
- Views: 4991
How to send connection request?
Hello, Im testing bluetooth in esp32 and i want to send connection request but it doesn't seem to work. I tried something like this: void send_con_rq() { unsigned char p[17] = {0x01, 0x05, 0x04, 0x0d, 0xAB, 0xCD, 0xEF, 0x7D, 0x1A, 0x00, 0x18, 0xcc, 0x02 ,0x00, 0x00, 0x00, 0x00}; esp_vhci_host_send_p...