diff --git a/tools/btmgmt.c b/tools/btmgmt.c
index c1ee77e..e77bcf2 100644
--- a/tools/btmgmt.c
+++ b/tools/btmgmt.c
}
}
+static void cmd_debug_keys(struct mgmt *mgmt, uint16_t index,
+ int argc, char **argv)
+{
+ cmd_setting(mgmt, index, MGMT_OP_SET_DEBUG_KEYS, argc, argv);
+}
+
static struct {
char *cmd;
void (*func)(struct mgmt *mgmt, uint16_t index, int argc, char **argv);
{ "local-oob", cmd_local_oob, "Local OOB data" },
{ "did", cmd_did, "Set Device ID" },
{ "static-addr",cmd_static_addr,"Set static address" },
+ { "debug-keys", cmd_debug_keys, "Toogle debug keys" },
{ }
};