diff options
author | Amir Hammad <amir.hammad@hotmail.com> | 2016-06-24 00:47:47 +0200 |
---|---|---|
committer | Amir Hammad <amir.hammad@hotmail.com> | 2016-06-25 10:09:54 +0200 |
commit | 40192caee01bd5fe6c8ed2c61798c95782ccfdd2 (patch) | |
tree | 651640e2926dc249c12b4431056dd24225f2705f /include | |
parent | 0432429aa6bcecfeeeccf4ba9b4cca28206b4863 (diff) | |
download | secure-hid-40192caee01bd5fe6c8ed2c61798c95782ccfdd2.tar.gz secure-hid-40192caee01bd5fe6c8ed2c61798c95782ccfdd2.tar.bz2 secure-hid-40192caee01bd5fe6c8ed2c61798c95782ccfdd2.zip |
let the user build an array of lld drivers
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/usbh_lld_stm32f4.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/usbh_lld_stm32f4.h b/include/usbh_lld_stm32f4.h index c55c615..a8f7b0a 100644 --- a/include/usbh_lld_stm32f4.h +++ b/include/usbh_lld_stm32f4.h @@ -30,7 +30,8 @@ BEGIN_DECLS
// pass this to usbh init
-extern const void *usbh_lld_stm32f4_drivers[];
+extern const void *usbh_lld_stm32f4_driver_fs;
+extern const void *usbh_lld_stm32f4_driver_hs;
#ifdef USART_DEBUG
void print_channels(const void *drvdata);
|