Search found 2 matches

by mike_dawes
Fri Nov 15, 2024 10:55 pm
Forum: ESP-IDF
Topic: HCI_LE_Transmitter_Test command
Replies: 1
Views: 288

Re: HCI_LE_Transmitter_Test command

Realized I'd neglected to include the number of parameters // HCI packet (HCI_LE_Transmitter_Test command) uint8_t hci_cmd[] = { 0x01, // HCI Command packet type 0x1E, 0x20, // HCI_LE_Transmitter_Test opcode 0x03, // Number of parameters 0x01, // RF channel (0-39) 0x5, // Length of test packet paylo...
by mike_dawes
Wed Nov 13, 2024 5:32 pm
Forum: ESP-IDF
Topic: HCI_LE_Transmitter_Test command
Replies: 1
Views: 288

HCI_LE_Transmitter_Test command

I am attempting to use the esp_vhci_host_send_packet() function on an ESP32-PICO-D4 to send the HCI LE Transmitter Test command. The command response status is always 0x12 (Invalid HCI Command Parameters). Other HCI test commands (LE Receiver Test command) work as expected with a 0x00 status. I have...