/* USB API for Teensy USB Development Board * http://www.pjrc.com/teensy/teensyduino.html * Copyright (c) 2008 PJRC.COM, LLC * * 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 #include #include "usb_common.h" #include "usb_private.h" #include "usb_api.h" #include "wiring.h" // Public Methods ////////////////////////////////////////////////////////////// void usb_serial_class::begin(long speed) { // make sure USB is initialized peek_buf = -1; usb_init(); uint16_t begin_wait = (uint16_t)millis(); while (1) { // wait for the host to finish enumeration if (usb_configuration) { delay(200); // a little time for host to load a driver return; } // or for suspend mode (powered without USB) if (usb_suspended) { uint16_t begin_suspend = (uint16_t)millis(); while (usb_suspended) { // must remain suspended for a while, because // normal USB enumeration causes brief suspend // states, typically under 0.1 second if ((uint16_t)millis() - begin_suspend > 250) { return; } } } // ... or a timout (powered by a USB power adaptor that // wiggles the data lines to keep a USB device charging) if ((uint16_t)millis() - begin_wait > 2500) return; } } void usb_serial_class::end() { usb_shutdown(); delay(25); } // number of bytes available in the receive buffer int usb_serial_class::available() { uint8_t n=0, i, intr_state; intr_state = SREG; cli(); if (usb_configuration) { UENUM = CDC_RX_ENDPOINT; n = UEBCLX; if (!n) { i = UEINTX; if (i & (1<= 0 && n < 255) n++; return n; } int usb_serial_class::peek() { if (peek_buf < 0) peek_buf = read(); return peek_buf; } // get the next character, or -1 if nothing received int usb_serial_class::read(void) { uint8_t c, intr_state; if (peek_buf >= 0) { c = peek_buf; peek_buf = -1; return c; } // interrupts are disabled so these functions can be // used from the main program or interrupt context, // even both in the same program! intr_state = SREG; cli(); if (!usb_configuration) { SREG = intr_state; return -1; } UENUM = CDC_RX_ENDPOINT; retry: c = UEINTX; if (!(c & (1<= 0) { *buffer++ = peek_buf; peek_buf = -1; length--; if (length == 0) return 1; count = 1; } do { intr_state = SREG; cli(); if (!usb_configuration) { SREG = intr_state; break; } UENUM = CDC_RX_ENDPOINT; if (!(UEINTX & (1< length) num = length; for (uint8_t i=0; i < num; i++) { *buffer++ = UEDATX; // TODO: unroll loop for speed } if (!(UEINTX & (1< size) write_size = size; size -= write_size; count += write_size; #define ASM_COPY1(src, dest, tmp) "ld " tmp ", " src "\n\t" "st " dest ", " tmp "\n\t" #define ASM_COPY2(src, dest, tmp) ASM_COPY1(src, dest, tmp) ASM_COPY1(src, dest, tmp) #define ASM_COPY4(src, dest, tmp) ASM_COPY2(src, dest, tmp) ASM_COPY2(src, dest, tmp) #define ASM_COPY8(src, dest, tmp) ASM_COPY4(src, dest, tmp) ASM_COPY4(src, dest, tmp) #if 1 // write the packet do { uint8_t tmp; asm volatile( "L%=begin:" "\n\t" "ldi r30, %4" "\n\t" "sub r30, %3" "\n\t" "cpi r30, %4" "\n\t" "brsh L%=err" "\n\t" "lsl r30" "\n\t" "clr r31" "\n\t" "subi r30, lo8(-(pm(L%=table)))" "\n\t" "sbci r31, hi8(-(pm(L%=table)))" "\n\t" "ijmp" "\n\t" "L%=err:" "\n\t" "rjmp L%=end" "\n\t" "L%=table:" "\n\t" #if (CDC_TX_SIZE == 64) ASM_COPY8("Y+", "X", "%1") ASM_COPY8("Y+", "X", "%1") ASM_COPY8("Y+", "X", "%1") ASM_COPY8("Y+", "X", "%1") #endif #if (CDC_TX_SIZE >= 32) ASM_COPY8("Y+", "X", "%1") ASM_COPY8("Y+", "X", "%1") #endif #if (CDC_TX_SIZE >= 16) ASM_COPY8("Y+", "X", "%1") #endif ASM_COPY8("Y+", "X", "%1") "L%=end:" "\n\t" : "+y" (buffer), "=r" (tmp) : "x" (&UEDATX), "r" (write_size), "M" (CDC_TX_SIZE) : "r30", "r31" ); } while (0); #endif // if this completed a packet, transmit it now! if (!(UEINTX & (1<