diff options
| author | hathach <[email protected]> | 2018-03-30 18:36:04 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-03-30 18:36:04 +0700 |
| commit | 8516ca27a101c7fadb0bf98aa659800ffb2b9f11 (patch) | |
| tree | 47d8f769a85ace7d84dc30f31b3ddda17e8bb600 /tinyusb/osal | |
| parent | d13160c4ae80e919267c22bdc6b3f31564b5ef98 (diff) | |
freertos semaphore post issue with control transfer
configAssert misunderstand _control_sem as mutex !!!!
Diffstat (limited to 'tinyusb/osal')
| -rw-r--r-- | tinyusb/osal/osal_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/osal/osal_common.h b/tinyusb/osal/osal_common.h index 42ed6e77b..be8c59d69 100644 --- a/tinyusb/osal/osal_common.h +++ b/tinyusb/osal/osal_common.h @@ -52,7 +52,7 @@ enum {
OSAL_TIMEOUT_NOTIMEOUT = 0, // for use within ISR, return immediately
OSAL_TIMEOUT_NORMAL = 10*5, // default is 10 msec, FIXME [CMSIS-RTX] easily timeout with 10 msec
- OSAL_TIMEOUT_WAIT_FOREVER = 0xFFFFFFFF
+ OSAL_TIMEOUT_WAIT_FOREVER = 0xFFFFFFFFUL
};
#ifdef __cplusplus
|
