358d480ea9
USB - General - Refactored descriptors - Enabled/Disable USB endpoints - Added debug flags for special features - Code cleanup - Interface count calculation based off of enabled endpoints - Delayed wTotalLength calculation to simplify descriptor offsets - Re-ordered endpoints and interfaces - Added more debug output - Added usbInitTime to show how long keyboard initialization took (Useful when debugging bad init sequences) - Added function for usb_resume() which takes care of the resume sequence * Resume is now only called if packets are starting to timeout USB - Special Options - Added enableDeviceRestartOnUSBTimeout * A last resort hammer for bad USB Chipsets/OSs, don't use if you can help it * Disabled - Added enableUSBResume * Enables host resume wake-up signalling, required to wake a computer from sleep * Enabled - Added enableUSBLowPowerNegotiation * Enables power negotiation hack * Required to use firmware with an IPad and other hard-limit low-power USB hosts * Hasn't been tested with the recent changes * Disabled - Added enableUSBSuspend * Enables power down events on host USB bus suspend * Enabled USB - Keyboard - Attempted to cleanup HID SET_REPORT * Works much better * Still has an issue under Linux which generates *a lot* of NAKs (initializes quickly regardless) + Not present on other keyboards + SETUP -> OUT -> IN : This sequence is the problem + Specifically during the OUT phase - Enabled USB - CDC Virtual Serial Port - Code cleanup - Added convenience struct USBCDCLineCoding for easier debugging - Attempted to cleanup CDC_SET_LING_CODING * Works much better * Still has an issue under Linux which generates *a lot* of NAKs (initializes quickly regardless) + SETUP -> OUT -> IN : This sequence is the problem + Specifically during the OUT phase + Likely the same issues as HID SET_REPORT - Enabled USB - Mouse - Enabled USB - Joystick - Disabled USB - RawIO - Initial code, API not used yet - Disabled DFU - Updated load script, now faster
142 lines
3.4 KiB
C
142 lines
3.4 KiB
C
/* Copyright (C) 2016 by Jacob Alexander
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
#include <kll_defs.h>
|
|
#if enableRawIO_define == 1
|
|
|
|
// ----- Includes -----
|
|
|
|
// Compiler Includes
|
|
#include <string.h> // For memcpy
|
|
|
|
// Project Includes
|
|
#include <Lib/OutputLib.h>
|
|
#include <print.h>
|
|
|
|
// Local Includes
|
|
#include "usb_dev.h"
|
|
#include "usb_rawio.h"
|
|
|
|
|
|
|
|
// ----- Defines -----
|
|
|
|
// Maximum number of transmit packets to queue so we don't starve other endpoints for memory
|
|
#define TX_PACKET_LIMIT 5
|
|
|
|
|
|
|
|
// ----- Functions -----
|
|
|
|
// Check for packets available from host
|
|
uint32_t usb_rawio_available()
|
|
{
|
|
// Error if USB isn't configured
|
|
if ( !usb_configuration )
|
|
return 0;
|
|
|
|
// Query number of bytes available from the endpoint
|
|
return usb_rx_byte_count( RAWIO_RX_ENDPOINT );
|
|
}
|
|
|
|
// Retrieve packets from host
|
|
// Always returns RAWIO_RX_SIZE
|
|
int32_t usb_rawio_rx( void *buf, uint32_t timeout )
|
|
{
|
|
usb_packet_t *rx_packet;
|
|
uint32_t begin = millis();
|
|
|
|
// Read
|
|
while ( 1 )
|
|
{
|
|
// Error if USB isn't configured
|
|
if ( !usb_configuration )
|
|
return -1;
|
|
|
|
// Retrieve packet
|
|
rx_packet = usb_rx( RAWIO_RX_ENDPOINT );
|
|
if ( rx_packet )
|
|
break;
|
|
|
|
// Check for timeout
|
|
if ( millis() - begin > timeout || !timeout )
|
|
{
|
|
warn_msg("RAWIO Rx - Timeout, dropping packet.");
|
|
return 0;
|
|
}
|
|
|
|
yield();
|
|
}
|
|
|
|
// Transfer packet from USB buffer to given buffer
|
|
memcpy( buf, rx_packet->buf, RAWIO_RX_SIZE );
|
|
usb_free( rx_packet );
|
|
|
|
// Data sent in full packet chunks
|
|
return RAWIO_RX_SIZE;
|
|
}
|
|
|
|
// Send packet to host
|
|
// XXX Only transfers RAWIO_TX_SIZE on each call (likely 64 bytes)
|
|
// Always returns RAWIO_TX_SIZE
|
|
int32_t usb_rawio_tx( const void *buf, uint32_t timeout )
|
|
{
|
|
usb_packet_t *tx_packet;
|
|
uint32_t begin = millis();
|
|
|
|
while ( 1 )
|
|
{
|
|
// Error if USB isn't configured
|
|
if ( !usb_configuration )
|
|
return -1;
|
|
|
|
// Make sure we haven't exceeded the outgoing packet limit
|
|
if ( usb_tx_packet_count( RAWIO_TX_ENDPOINT ) < TX_PACKET_LIMIT )
|
|
{
|
|
// Allocate a packet buffer
|
|
tx_packet = usb_malloc();
|
|
if ( tx_packet )
|
|
break;
|
|
}
|
|
|
|
// Check for timeout
|
|
if ( millis() - begin > timeout )
|
|
{
|
|
warn_msg("RAWIO Tx - Timeout, dropping packet.");
|
|
return 0;
|
|
}
|
|
|
|
yield();
|
|
}
|
|
|
|
// Copy input buffer to usb packet buffer and assign length
|
|
memcpy( tx_packet->buf, buf, RAWIO_TX_SIZE );
|
|
tx_packet->len = RAWIO_TX_SIZE;
|
|
|
|
// Send USB packet
|
|
usb_tx( RAWIO_TX_ENDPOINT, tx_packet );
|
|
|
|
return RAWIO_TX_SIZE;
|
|
}
|
|
|
|
#endif
|
|
|