lib/mgmt: Add Set Appearance command definition

This commit is contained in:
Michał Narajowski 2016-09-18 12:34:38 +02:00 committed by Marcel Holtmann
parent 8b1c08b05a
commit 3bb8bd1bad

View File

@ -541,6 +541,11 @@ struct mgmt_rp_read_ext_info {
uint8_t eir[0]; uint8_t eir[0];
} __packed; } __packed;
#define MGMT_OP_SET_APPEARANCE 0x0043
struct mgmt_cp_set_appearance {
uint16_t appearance;
} __packed;
#define MGMT_EV_CMD_COMPLETE 0x0001 #define MGMT_EV_CMD_COMPLETE 0x0001
struct mgmt_ev_cmd_complete { struct mgmt_ev_cmd_complete {
uint16_t opcode; uint16_t opcode;
@ -827,6 +832,7 @@ static const char *mgmt_op[] = {
"Get Advertising Size Information", /* 0x0040 */ "Get Advertising Size Information", /* 0x0040 */
"Start Limited Discovery", "Start Limited Discovery",
"Read Extended Controller Information", "Read Extended Controller Information",
"Set Appearance",
}; };
static const char *mgmt_ev[] = { static const char *mgmt_ev[] = {