summaryrefslogtreecommitdiff
path: root/src/osal
diff options
context:
space:
mode:
authorhathach <[email protected]>2019-03-20 23:12:12 +0700
committerhathach <[email protected]>2019-03-20 23:12:12 +0700
commit87962a222d695dcd59beca54e9672f1a44fe574e (patch)
tree720e7926acacb6e9e5f8594aadb1f810b6321cd7 /src/osal
parent20fb416783c4dcce71a581f6db1674a3c6a1ae12 (diff)
clean up
Diffstat (limited to 'src/osal')
-rw-r--r--src/osal/osal_freertos.h18
-rw-r--r--src/osal/osal_none.h6
2 files changed, 1 insertions, 23 deletions
diff --git a/src/osal/osal_freertos.h b/src/osal/osal_freertos.h
index 48b106160..639501bbf 100644
--- a/src/osal/osal_freertos.h
+++ b/src/osal/osal_freertos.h
@@ -24,15 +24,10 @@
* This file is part of the TinyUSB stack.
*/
-/** \ingroup group_osal
- * @{
- * \defgroup Group_FreeRTOS FreeRTOS
- * @{ */
-
#ifndef _TUSB_OSAL_FREERTOS_H_
#define _TUSB_OSAL_FREERTOS_H_
-//------------- FreeRTOS Headers -------------//
+// FreeRTOS Headers
#include "FreeRTOS.h"
#include "semphr.h"
#include "queue.h"
@@ -42,14 +37,6 @@
extern "C" {
#endif
-#if 0
-// Helper to determine if we are in ISR to use ISR API (only cover ARM Cortex)
-static inline bool in_isr(void)
-{
- return (SCB->ICSR & SCB_ICSR_VECTACTIVE_Msk);
-}
-#endif
-
//--------------------------------------------------------------------+
// TASK API
//--------------------------------------------------------------------+
@@ -148,6 +135,3 @@ static inline void osal_queue_reset(osal_queue_t const queue_hdl)
#endif
#endif /* _TUSB_OSAL_FREERTOS_H_ */
-
-/** @} */
-/** @} */
diff --git a/src/osal/osal_none.h b/src/osal/osal_none.h
index 241234671..b7989b044 100644
--- a/src/osal/osal_none.h
+++ b/src/osal/osal_none.h
@@ -24,10 +24,6 @@
* This file is part of the TinyUSB stack.
*/
-/** \ingroup group_osal
- * \defgroup Group_OSNone None OS
- * @{ */
-
#ifndef _TUSB_OSAL_NONE_H_
#define _TUSB_OSAL_NONE_H_
@@ -205,5 +201,3 @@ static inline bool osal_queue_receive(osal_queue_t const qhdl, void* data)
#endif
#endif /* _TUSB_OSAL_NONE_H_ */
-
-/** @} */