Pseudo-port the projects and dual role demos for possible later multi-arch support.
This commit is contained in:
@@ -169,12 +169,14 @@ void UARTBridge_Task(void)
|
||||
/** Configures the board hardware and chip peripherals for the demo's functionality. */
|
||||
void SetupHardware(void)
|
||||
{
|
||||
#if (ARCH == ARCH_AVR8)
|
||||
/* Disable watchdog if enabled by bootloader/fuses */
|
||||
MCUSR &= ~(1 << WDRF);
|
||||
wdt_disable();
|
||||
|
||||
/* Disable clock division */
|
||||
clock_prescale_set(clock_div_1);
|
||||
#endif
|
||||
|
||||
/* Disable JTAG debugging */
|
||||
MCUCR |= (1 << JTD);
|
||||
@@ -197,8 +199,8 @@ void SetupHardware(void)
|
||||
#if defined(RESET_TOGGLES_LIBUSB_COMPAT)
|
||||
UpdateCurrentCompatibilityMode();
|
||||
#endif
|
||||
|
||||
/* USB Stack Initialization */
|
||||
|
||||
/* USB Stack Initialization */
|
||||
USB_Init();
|
||||
}
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
|
||||
#include "USARTDescriptors.h"
|
||||
|
||||
#include "AVRISPDescriptors.h"
|
||||
#include "AVRISPDescriptors.h"
|
||||
#include "Lib/V2Protocol.h"
|
||||
#include "Lib/SoftUART.h"
|
||||
#include "Config/AppConfig.h"
|
||||
@@ -53,6 +53,7 @@
|
||||
#include <LUFA/Drivers/Board/LEDs.h>
|
||||
#include <LUFA/Drivers/Misc/RingBuffer.h>
|
||||
#include <LUFA/Drivers/USB/USB.h>
|
||||
#include <LUFA/Platform/Platform.h>
|
||||
|
||||
/* Macros: */
|
||||
/** LED mask for the library LED driver, to indicate that the USB interface is not ready. */
|
||||
@@ -97,7 +98,7 @@
|
||||
const uint8_t wIndex,
|
||||
const void** const DescriptorAddress,
|
||||
uint8_t* const DescriptorMemorySpace)
|
||||
ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(3) ATTR_NON_NULL_PTR_ARG(4);
|
||||
ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(3) ATTR_NON_NULL_PTR_ARG(4);
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user