mini-led-cube/firmware/usb.c

85 lines
2.3 KiB
C
Raw Normal View History

/*
* CTHN.de MiniLEDCube
*
* usb.h by Kai Lauterbach 11/2011
*
* Based on project: hid-custom-rq example by Christian Starkjohann
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
*
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
*
2011-10-15 11:31:44 +02:00
*/
#include "usb.h"
/* ------------------------------------------------------------------------- */
/*! \brief
2011-12-27 13:05:37 +01:00
* \param data USB Data packet.
* \return The length of the received or send data.
*/
2011-10-15 11:31:44 +02:00
usbMsgLen_t usbFunctionSetup(uchar data[8])
{
2011-11-29 19:39:57 +01:00
usbRequest_t *rq = (void *)data;
2011-10-15 11:31:44 +02:00
if ( (rq->bmRequestType & USBRQ_TYPE_MASK) == USBRQ_TYPE_VENDOR )
{
2011-12-18 19:35:47 +01:00
if ( rq->bRequest == CUSTOM_RQ_SET_FRAME )
{
2011-10-15 11:31:44 +02:00
// because of the code size we have to transfer one frame in
// two steps (control messages)
2011-12-27 11:47:26 +01:00
if ( ! rq->wIndex.bytes[0] )
{
// the lower word
2011-12-17 22:03:57 +01:00
frame = (frame & (uint32_t)0xffff0000) |
2011-12-10 00:49:39 +01:00
( rq->wValue.bytes[0] +
2011-12-17 22:03:57 +01:00
(rq->wValue.bytes[1] << 8) );
2011-12-09 23:15:06 +01:00
} else {
// the high word
2011-12-17 22:03:57 +01:00
frame = (frame & (uint32_t)0x0000ffff) |
((uint32_t)( rq->wValue.bytes[0] +
(rq->wValue.bytes[1] << 8) ) << 16);
}
2011-12-17 22:03:57 +01:00
} else if ( rq->bRequest == CUSTOM_RQ_EEPROM_STORE_FRAME )
{
// save the actual frame to the eeprom
// don't forget to send a frame first
2011-12-18 19:35:47 +01:00
eeprom_write_dword( &eep_anim[ rq->wIndex.bytes[0] ], frame );
2011-12-18 19:35:47 +01:00
} else if ( rq->bRequest == CUSTOM_RQ_SET_MODE )
{
// set the firmware mode
// 0 = stop; 1 = single; 2 = loop
mode = rq->wValue.bytes[0];
2011-10-15 11:31:44 +02:00
}
2011-10-15 11:31:44 +02:00
}
return 0; /* default for not implemented requests: return no data back to host */
}
/* ------------------------------------------------------------------------- */
/*! \brief Initializes the USB conneciton.
*/
2011-10-15 11:31:44 +02:00
void init_usb(void)
{
2011-12-10 00:49:39 +01:00
uint8_t i;
2011-10-15 11:31:44 +02:00
usbInit();
usbDeviceDisconnect(); /* enforce re-enumeration, do this while interrupts are disabled! */
// fake USB disconnect for > 250 ms
while(--i)
{
asm volatile("nop"::);
2011-10-15 11:31:44 +02:00
}
2011-10-15 11:31:44 +02:00
usbDeviceConnect();
}
/* ------------------------------------------------------------------------- */