diff options
Diffstat (limited to 'Projects')
| -rw-r--r-- | Projects/AVRISP/AVRISP.c | 3 | ||||
| -rw-r--r-- | Projects/Benito/Benito.c | 17 | ||||
| -rw-r--r-- | Projects/Magstripe/Magstripe.c | 11 | ||||
| -rw-r--r-- | Projects/USBtoSerial/USBtoSerial.c | 17 | 
4 files changed, 26 insertions, 22 deletions
| diff --git a/Projects/AVRISP/AVRISP.c b/Projects/AVRISP/AVRISP.c index 016d74ce8..44b8356cd 100644 --- a/Projects/AVRISP/AVRISP.c +++ b/Projects/AVRISP/AVRISP.c @@ -34,9 +34,6 @@   *  the project and is responsible for the initial application hardware configuration.
   */
 -// TODO: Add in software SPI for lower programming speeds below 125KHz
 -// TODO: Add reversed/shorted target connector checks
 -
  #include "AVRISP.h"
  /** Main program entry point. This routine contains the overall program flow, including initial
 diff --git a/Projects/Benito/Benito.c b/Projects/Benito/Benito.c index 2ee24dac7..5b81a54d1 100644 --- a/Projects/Benito/Benito.c +++ b/Projects/Benito/Benito.c @@ -56,16 +56,19 @@ USB_ClassInfo_CDC_Device_t VirtualSerial_CDC_Interface =  	{
  		.Config = 
  			{
 -				.ControlInterfaceNumber     = 0,
 +				.ControlInterfaceNumber         = 0,
 -				.DataINEndpointNumber       = CDC_TX_EPNUM,
 -				.DataINEndpointSize         = CDC_TXRX_EPSIZE,
 +				.DataINEndpointNumber           = CDC_TX_EPNUM,
 +				.DataINEndpointSize             = CDC_TXRX_EPSIZE,
 +				.DataINEndpointDoubleBank       = false,
 -				.DataOUTEndpointNumber      = CDC_RX_EPNUM,
 -				.DataOUTEndpointSize        = CDC_TXRX_EPSIZE,
 +				.DataOUTEndpointNumber          = CDC_RX_EPNUM,
 +				.DataOUTEndpointSize            = CDC_TXRX_EPSIZE,
 +				.DataOUTEndpointDoubleBank      = false,
 -				.NotificationEndpointNumber = CDC_NOTIFICATION_EPNUM,
 -				.NotificationEndpointSize   = CDC_NOTIFICATION_EPSIZE,
 +				.NotificationEndpointNumber     = CDC_NOTIFICATION_EPNUM,
 +				.NotificationEndpointSize       = CDC_NOTIFICATION_EPSIZE,
 +				.NotificationEndpointDoubleBank = false,
  			},
  	};
 diff --git a/Projects/Magstripe/Magstripe.c b/Projects/Magstripe/Magstripe.c index 7b3f0be39..69f17c759 100644 --- a/Projects/Magstripe/Magstripe.c +++ b/Projects/Magstripe/Magstripe.c @@ -56,13 +56,14 @@ USB_ClassInfo_HID_Device_t Keyboard_HID_Interface =  	{
  		.Config =
  			{
 -				.InterfaceNumber         = 0,
 +				.InterfaceNumber            = 0,
 -				.ReportINEndpointNumber  = KEYBOARD_EPNUM,
 -				.ReportINEndpointSize    = KEYBOARD_EPSIZE,
 +				.ReportINEndpointNumber     = KEYBOARD_EPNUM,
 +				.ReportINEndpointSize       = KEYBOARD_EPSIZE,
 +				.ReportINEndpointDoubleBank = KEYBOARD_EPSIZE,
 -				.PrevReportINBuffer      = PrevKeyboardHIDReportBuffer,
 -				.PrevReportINBufferSize  = sizeof(PrevKeyboardHIDReportBuffer),
 +				.PrevReportINBuffer         = PrevKeyboardHIDReportBuffer,
 +				.PrevReportINBufferSize     = sizeof(PrevKeyboardHIDReportBuffer),
  			},
  	};
 diff --git a/Projects/USBtoSerial/USBtoSerial.c b/Projects/USBtoSerial/USBtoSerial.c index a4a4625ce..747e027fe 100644 --- a/Projects/USBtoSerial/USBtoSerial.c +++ b/Projects/USBtoSerial/USBtoSerial.c @@ -50,16 +50,19 @@ USB_ClassInfo_CDC_Device_t VirtualSerial_CDC_Interface =  	{
  		.Config = 
  			{
 -				.ControlInterfaceNumber     = 0,
 +				.ControlInterfaceNumber         = 0,
 -				.DataINEndpointNumber       = CDC_TX_EPNUM,
 -				.DataINEndpointSize         = CDC_TXRX_EPSIZE,
 +				.DataINEndpointNumber           = CDC_TX_EPNUM,
 +				.DataINEndpointSize             = CDC_TXRX_EPSIZE,
 +				.DataINEndpointDoubleBank       = false,
 -				.DataOUTEndpointNumber      = CDC_RX_EPNUM,
 -				.DataOUTEndpointSize        = CDC_TXRX_EPSIZE,
 +				.DataOUTEndpointNumber          = CDC_RX_EPNUM,
 +				.DataOUTEndpointSize            = CDC_TXRX_EPSIZE,
 +				.DataOUTEndpointDoubleBank      = false,
 -				.NotificationEndpointNumber = CDC_NOTIFICATION_EPNUM,
 -				.NotificationEndpointSize   = CDC_NOTIFICATION_EPSIZE,
 +				.NotificationEndpointNumber     = CDC_NOTIFICATION_EPNUM,
 +				.NotificationEndpointSize       = CDC_NOTIFICATION_EPSIZE,
 +				.NotificationEndpointDoubleBank = false,
  			},
  	};
 | 
