diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-22 10:55:33 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-22 10:55:33 +0000 |
commit | 14c4421d577b3bc91bdf07c10be0eda3c1cfc293 (patch) | |
tree | 80c37883dbaa907dc26e876a740ad3be3ec976d1 | |
parent | f11fa0ce071b42e3dd47f991e62f0b54c41455bf (diff) | |
download | ChibiOS-14c4421d577b3bc91bdf07c10be0eda3c1cfc293.tar.gz ChibiOS-14c4421d577b3bc91bdf07c10be0eda3c1cfc293.tar.bz2 ChibiOS-14c4421d577b3bc91bdf07c10be0eda3c1cfc293.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7791 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/ports/STM32/LLD/OTGv1/usb_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c b/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c index 6d2450de9..7c3d387dd 100644 --- a/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c +++ b/os/hal/ports/STM32/LLD/OTGv1/usb_lld.c @@ -499,7 +499,7 @@ static bool otg_txfifo_handler(USBDriver *usbp, usbep_t ep) { return FALSE;
#if STM32_USB_OTGFIFO_FILL_BASEPRI
- __set_BASEPRI(CORTEX_PRIORITY_MASK(STM32_USB_OTGFIFO_FILL_BASEPRI));
+ __set_BASEPRI(CORTEX_PRIO_MASK(STM32_USB_OTGFIFO_FILL_BASEPRI));
#endif
/* Handles the two cases: linear buffer or queue.*/
if (usbp->epc[ep]->in_state->txqueued) {
|