Porting updates for the UC3B architecture - get UC3B partially enumerating using a modified mouse demo on the EVK1101. Implement a software FIFO for the endpoint banks; datasheet hints that this can be done through hardware as on the AVR8 architecture, but the correct method to do this not discovered yet.
This commit is contained in:
parent
33a81bffb9
commit
b763c3f33e
13 changed files with 169 additions and 154 deletions
|
@ -59,8 +59,6 @@ void USB_Init(
|
|||
#if !defined(USE_STATIC_OPTIONS)
|
||||
USB_Options = Options;
|
||||
#endif
|
||||
|
||||
USB_INT_RegisterHandlers();
|
||||
|
||||
if (!(USB_Options & USB_OPT_REG_DISABLED))
|
||||
USB_REG_On();
|
||||
|
|
|
@ -84,11 +84,6 @@
|
|||
};
|
||||
|
||||
/* Inline Functions: */
|
||||
static inline void USB_INT_RegisterHandlers(void)
|
||||
{
|
||||
// Not required for AVR8
|
||||
}
|
||||
|
||||
static inline void USB_INT_Enable(const uint8_t Interrupt) ATTR_ALWAYS_INLINE;
|
||||
static inline void USB_INT_Enable(const uint8_t Interrupt)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue