wireless/bluetooth: With change the test with the simulated bluetooth driver can get all the way up the point where it determines that the attached controller is not LE capable. I am not sure how much first to take the simulation. The time would probably be better invested in bringing up real hardware.

This commit is contained in:
Gregory Nutt 2018-04-03 17:57:06 -06:00
parent 48dd0f3825
commit 04b0ace6b0
2 changed files with 2 additions and 2 deletions

View File

@ -206,7 +206,7 @@ static void hci_cmd_done(uint16_t opcode, uint8_t status,
{ {
FAR struct bt_buf_s *sent = g_btdev.sent_cmd; FAR struct bt_buf_s *sent = g_btdev.sent_cmd;
if (!sent) if (sent == NULL)
{ {
return; return;
} }

View File

@ -55,7 +55,7 @@
#define BT_CONN_TX "btconntx" #define BT_CONN_TX "btconntx"
#define BT_HCI_TX "bthcitx" #define BT_HCI_TX "bthcitx"
#define BT_HCI_RX "bthcitx" #define BT_HCI_RX "bthcirx"
/* All messages are sent FIFO at the mid-message priorities except for high- /* All messages are sent FIFO at the mid-message priorities except for high-
* priority messages received from the Bluetooth driver. * priority messages received from the Bluetooth driver.