No commands are handled yet. --- android/adapter.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/android/adapter.c b/android/adapter.c index 685b00d..13cce8f 100644 --- a/android/adapter.c +++ b/android/adapter.c @@ -365,6 +365,20 @@ static bool get_property(void *buf, uint16_t len) } } +static uint8_t set_property(void *buf, uint16_t len) +{ + struct hal_cmd_set_adapter_prop *cmd = buf; + + switch (cmd->type) { + case HAL_PROP_ADAPTER_NAME: + case HAL_PROP_ADAPTER_SCAN_MODE: + case HAL_PROP_ADAPTER_DISC_TIMEOUT: + default: + DBG("Unhandled property type 0x%x", cmd->type); + return HAL_STATUS_FAILED; + } +} + void bt_adapter_handle_cmd(GIOChannel *io, uint8_t opcode, void *buf, uint16_t len) { @@ -396,6 +410,12 @@ void bt_adapter_handle_cmd(GIOChannel *io, uint8_t opcode, void *buf, goto error; break; + case HAL_OP_SET_ADAPTER_PROP: + status = set_property(buf, len); + if (status != HAL_STATUS_SUCCESS) + goto error; + + break; default: DBG("Unhandled command, opcode 0x%x", opcode); goto error; -- 1.8.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html