From 71341fcdeb601f49f983322ed9a09cd98b65781c Mon Sep 17 00:00:00 2001 From: "matthias.ringwald" Date: Sun, 5 Jun 2011 09:57:23 +0000 Subject: [PATCH] added support for vendor specific baudrate hci commands --- src/bt_control.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bt_control.h b/src/bt_control.h index 94394d9f6..e31209c55 100644 --- a/src/bt_control.h +++ b/src/bt_control.h @@ -55,6 +55,9 @@ typedef struct { int (*valid)(void *config); // <-- test if hardware can be supported const char * (*name)(void *config); // <-- return hardware name + /** support for UART baud rate changes */ + int (*baudrate_cmd)(void * config, uint32_t baudrate, uint8_t *hci_cmd_buffer); + /** support custom init sequences after RESET command * @return pointer do next command packet used during init */