Bluetooth: tester: Fix device connected and disconnected events

This fixes parameters order in events to be BTP compliant.

Signed-off-by: Mariusz Skamra <mariusz.skamra@codecoup.pl>
This commit is contained in:
Mariusz Skamra 2018-01-23 10:28:51 +01:00 committed by Johan Hedberg
parent a6cfda8d64
commit 834ab2c192

View File

@ -254,14 +254,14 @@ struct gap_device_found_ev {
#define GAP_EV_DEVICE_CONNECTED 0x82
struct gap_device_connected_ev {
u8_t address[6];
u8_t address_type;
u8_t address[6];
} __packed;
#define GAP_EV_DEVICE_DISCONNECTED 0x83
struct gap_device_disconnected_ev {
u8_t address[6];
u8_t address_type;
u8_t address[6];
} __packed;
#define GAP_EV_PASSKEY_DISPLAY 0x84