mirror of
https://github.com/hathach/tinyusb.git
synced 2025-04-04 10:20:18 +00:00
tested with IAR & keil for device ea4357, fix some warnings
This commit is contained in:
parent
5d5aa9b213
commit
a8d32d81b3
@ -59,7 +59,7 @@
|
|||||||
|
|
||||||
//------------- CLASS -------------//
|
//------------- CLASS -------------//
|
||||||
#define TUSB_CFG_DEVICE_HID_KEYBOARD 1
|
#define TUSB_CFG_DEVICE_HID_KEYBOARD 1
|
||||||
#define TUSB_CFG_DEVICE_HID_MOUSE 0
|
#define TUSB_CFG_DEVICE_HID_MOUSE 1
|
||||||
#define TUSB_CFG_DEVICE_HID_GENERIC 0 // not supported yet
|
#define TUSB_CFG_DEVICE_HID_GENERIC 0 // not supported yet
|
||||||
#define TUSB_CFG_DEVICE_MSC 1
|
#define TUSB_CFG_DEVICE_MSC 1
|
||||||
#define TUSB_CFG_DEVICE_CDC 1
|
#define TUSB_CFG_DEVICE_CDC 1
|
||||||
|
@ -286,11 +286,13 @@ tusb_error_t dcd_init(void)
|
|||||||
//--------------------------------------------------------------------+
|
//--------------------------------------------------------------------+
|
||||||
// PIPE HELPER
|
// PIPE HELPER
|
||||||
//--------------------------------------------------------------------+
|
//--------------------------------------------------------------------+
|
||||||
|
#if 0
|
||||||
static inline uint8_t edpt_pos2phy(uint8_t pos) ATTR_CONST ATTR_ALWAYS_INLINE;
|
static inline uint8_t edpt_pos2phy(uint8_t pos) ATTR_CONST ATTR_ALWAYS_INLINE;
|
||||||
static inline uint8_t edpt_pos2phy(uint8_t pos)
|
static inline uint8_t edpt_pos2phy(uint8_t pos)
|
||||||
{ // 0-5 --> OUT, 16-21 IN
|
{ // 0-5 --> OUT, 16-21 IN
|
||||||
return (pos < DCD_QHD_MAX/2) ? (2*pos) : (2*(pos-16)+1);
|
return (pos < DCD_QHD_MAX/2) ? (2*pos) : (2*(pos-16)+1);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static inline uint8_t edpt_phy2pos(uint8_t physical_endpoint) ATTR_CONST ATTR_ALWAYS_INLINE;
|
static inline uint8_t edpt_phy2pos(uint8_t physical_endpoint) ATTR_CONST ATTR_ALWAYS_INLINE;
|
||||||
static inline uint8_t edpt_phy2pos(uint8_t physical_endpoint)
|
static inline uint8_t edpt_phy2pos(uint8_t physical_endpoint)
|
||||||
@ -546,7 +548,8 @@ void dcd_isr(uint8_t coreid)
|
|||||||
{
|
{
|
||||||
LPC_USB0_Type* const lpc_usb = LPC_USB[coreid];
|
LPC_USB0_Type* const lpc_usb = LPC_USB[coreid];
|
||||||
|
|
||||||
uint32_t const int_status = lpc_usb->USBSTS_D & lpc_usb->USBINTR_D;
|
uint32_t const int_enable = lpc_usb->USBINTR_D;
|
||||||
|
uint32_t const int_status = lpc_usb->USBSTS_D & int_enable;
|
||||||
lpc_usb->USBSTS_D = int_status; // Acknowledge handled interrupt
|
lpc_usb->USBSTS_D = int_status; // Acknowledge handled interrupt
|
||||||
|
|
||||||
if (int_status == 0) return;// disabled interrupt sources
|
if (int_status == 0) return;// disabled interrupt sources
|
||||||
|
@ -297,7 +297,8 @@ void dcd_isr(uint8_t coreid)
|
|||||||
{
|
{
|
||||||
(void) coreid;
|
(void) coreid;
|
||||||
|
|
||||||
uint32_t const int_status = LPC_USB->INTSTAT & LPC_USB->INTEN;
|
uint32_t const int_enable = LPC_USB->INTEN;
|
||||||
|
uint32_t const int_status = LPC_USB->INTSTAT & int_enable;
|
||||||
LPC_USB->INTSTAT = int_status; // Acknowledge handled interrupt
|
LPC_USB->INTSTAT = int_status; // Acknowledge handled interrupt
|
||||||
|
|
||||||
if (int_status == 0) return;
|
if (int_status == 0) return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user