diff --git a/monitor/bt.h b/monitor/bt.h
index b3de08c..c2045bb 100644
--- a/monitor/bt.h
+++ b/monitor/bt.h
uint16_t handle;
} __attribute__((packed));
struct bt_hci_rsp_le_read_phy {
- uint8_t status;
+ uint8_t status;
uint16_t handle;
- uint8_t tx_phy;
- uint8_t rx_phy;
+ uint8_t tx_phy;
+ uint8_t rx_phy;
} __attribute__((packed));
#define BT_HCI_CMD_LE_SET_DEFAULT_PHY 0x2031
struct bt_hci_cmd_le_set_default_phy {
- uint8_t all_phys;
- uint8_t tx_phys;
- uint8_t rx_phys;
+ uint8_t all_phys;
+ uint8_t tx_phys;
+ uint8_t rx_phys;
} __attribute__((packed));
#define BT_HCI_CMD_LE_SET_PHY 0x2032
struct bt_hci_cmd_le_set_phy {
uint16_t handle;
- uint8_t all_phys;
- uint8_t tx_phys;
- uint8_t rx_phys;
+ uint8_t all_phys;
+ uint8_t tx_phys;
+ uint8_t rx_phys;
uint16_t phy_opts;
} __attribute__((packed));