diff options
| author | hathach <[email protected]> | 2013-11-26 13:15:40 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-11-26 13:15:40 +0700 |
| commit | 8f70a6a886aa557dd87086b807367eef662a7e77 (patch) | |
| tree | 062c136d68c807be53bf74677c8210940bc5d661 /tinyusb/osal | |
| parent | 51def3f7ed6b1ac849cb357a9868328d8c5e3117 (diff) | |
change endian conversion to native to be & be to native
completely deferred xfer isr event to usbd task
complete read10, write10 sequence for large data transfer
Diffstat (limited to 'tinyusb/osal')
| -rw-r--r-- | tinyusb/osal/osal_none.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/osal/osal_none.h b/tinyusb/osal/osal_none.h index db11da605..adea45f32 100644 --- a/tinyusb/osal/osal_none.h +++ b/tinyusb/osal/osal_none.h @@ -104,7 +104,7 @@ static inline uint32_t osal_tick_get(void) #define OSAL_TASK_LOOP_BEGIN \ ATTR_UNUSED static uint32_t timeout = 0;\ static uint16_t state = 0;\ - switch(state) {\ + switch(state) { \ case 0: { \ #define OSAL_TASK_LOOP_END \ |
