doxygen documenting
This commit is contained in:
@@ -36,10 +36,6 @@
|
||||
*/
|
||||
/**************************************************************************/
|
||||
|
||||
/** \ingroup group_hal
|
||||
* \defgroup group_hal_lpc175x_6x LPC175x_6x
|
||||
* @{ */
|
||||
|
||||
#ifndef _TUSB_HAL_LPC175X_6X_H_
|
||||
#define _TUSB_HAL_LPC175X_6X_H_
|
||||
|
||||
@@ -53,15 +49,15 @@
|
||||
//--------------------------------------------------------------------+
|
||||
//
|
||||
//--------------------------------------------------------------------+
|
||||
static inline void hal_interrupt_enable(uint8_t controller_id)
|
||||
static inline void hal_interrupt_enable(uint8_t coreid)
|
||||
{
|
||||
(void) controller_id; // discard compiler's warning
|
||||
(void) coreid; // discard compiler's warning
|
||||
NVIC_EnableIRQ(USB_IRQn);
|
||||
}
|
||||
|
||||
static inline void hal_interrupt_disable(uint8_t controller_id)
|
||||
static inline void hal_interrupt_disable(uint8_t coreid)
|
||||
{
|
||||
(void) controller_id; // discard compiler's warning
|
||||
(void) coreid; // discard compiler's warning
|
||||
NVIC_DisableIRQ(USB_IRQn);
|
||||
}
|
||||
|
||||
@@ -71,4 +67,3 @@ static inline void hal_interrupt_disable(uint8_t controller_id)
|
||||
|
||||
#endif /* _TUSB_HAL_LPC175X_6X_H_ */
|
||||
|
||||
/** @} */
|
||||
|
||||
Reference in New Issue
Block a user