Browse Source

Merge pull request #25 from xxxajk/master

Allow custom USB enumeration.
main
Paul Stoffregen 10 years ago
parent
commit
3b4aa6ae56
5 changed files with 26 additions and 12 deletions
  1. +2
    -1
      teensy3/usb_desc.c
  2. +2
    -1
      teensy3/usb_desc.h
  3. +4
    -4
      teensy3/usb_dev.c
  4. +15
    -3
      teensy3/usb_dev.h
  5. +3
    -3
      teensy3/usb_mem.c

+ 2
- 1
teensy3/usb_desc.c View File

@@ -31,6 +31,7 @@
#if F_CPU >= 20000000

#include "usb_desc.h"
#ifdef NUM_ENDPOINTS
#include "usb_names.h"
#include "mk20dx128.h"
#include "avr_functions.h"
@@ -891,5 +892,5 @@ const uint8_t usb_endpoint_config_table[NUM_ENDPOINTS] =
};


#endif // NUM_ENDPOINTS
#endif // F_CPU >= 20 MHz

+ 2
- 1
teensy3/usb_desc.h View File

@@ -295,6 +295,7 @@ let me know? http://forum.pjrc.com/forums/4-Suggestions-amp-Bug-Reports

#endif

#ifdef NUM_ENDPOINTS
// NUM_ENDPOINTS = number of non-zero endpoints (0 to 15)
extern const uint8_t usb_endpoint_config_table[NUM_ENDPOINTS];

@@ -306,7 +307,7 @@ typedef struct {
} usb_descriptor_list_t;

extern const usb_descriptor_list_t usb_descriptor_list[];
#endif // NUM_ENDPOINTS

#endif // F_CPU >= 20 MHz


+ 4
- 4
teensy3/usb_dev.c View File

@@ -28,11 +28,11 @@
* SOFTWARE.
*/

#if F_CPU >= 20000000
#include "usb_dev.h"
#if F_CPU >= 20000000 && defined(NUM_ENDPOINTS)

#include "mk20dx128.h"
//#include "HardwareSerial.h"
#include "usb_dev.h"
#include "usb_mem.h"

// buffer descriptor table
@@ -971,10 +971,10 @@ void usb_init(void)
}


#else // F_CPU < 20 MHz
#else // F_CPU < 20 MHz && defined(NUM_ENDPOINTS)

void usb_init(void)
{
}

#endif // F_CPU >= 20 MHz
#endif // F_CPU >= 20 MHz && defined(NUM_ENDPOINTS)

+ 15
- 3
teensy3/usb_dev.h View File

@@ -31,7 +31,8 @@
#ifndef _usb_dev_h_
#define _usb_dev_h_

#if F_CPU >= 20000000
#include "usb_desc.h"
#if F_CPU >= 20000000 && defined(NUM_ENDPOINTS)

// This header is NOT meant to be included when compiling
// user sketches in Arduino. The low-level functions
@@ -39,7 +40,6 @@
// code which provides higher-level interfaces to the user.

#include "usb_mem.h"
#include "usb_desc.h"

#ifdef __cplusplus
extern "C" {
@@ -98,11 +98,23 @@ extern void usb_flightsim_flush_callback(void);



#ifdef __cplusplus
}
#endif

#else // F_CPU >= 20000000 && defined(NUM_ENDPOINTS)

#ifdef __cplusplus
extern "C" {
#endif

void usb_init(void);

#ifdef __cplusplus
}
#endif


#endif // F_CPU >= 20 MHz
#endif // F_CPU >= 20000000 && defined(NUM_ENDPOINTS)

#endif

+ 3
- 3
teensy3/usb_mem.c View File

@@ -28,11 +28,11 @@
* SOFTWARE.
*/

#if F_CPU >= 20000000
#include "usb_dev.h"
#if F_CPU >= 20000000 && defined(NUM_ENDPOINTS)

#include "mk20dx128.h"
//#include "HardwareSerial.h"
#include "usb_dev.h"
#include "usb_mem.h"

__attribute__ ((section(".usbbuffers"), used))
@@ -106,4 +106,4 @@ void usb_free(usb_packet_t *p)
//serial_print("\n");
}

#endif // F_CPU >= 20 MHz
#endif // F_CPU >= 20 MHz && defined(NUM_ENDPOINTS)

Loading…
Cancel
Save