Adding CLI and CDC Serial support for Teensy 2.0 and Teensy 2.0++
- Includes serial putchar and getchar cleanup (overall) - Moved avr-capsense to DPH (renaming) - Basic cleanup for including CLI on the avr architecture
This commit is contained in:
		
							parent
							
								
									b2e237f368
								
							
						
					
					
						commit
						15ec4ff71c
					
				
					 27 changed files with 1596 additions and 933 deletions
				
			
		| 
						 | 
				
			
			@ -1,6 +1,7 @@
 | 
			
		|||
/* Teensyduino Core Library
 | 
			
		||||
 * http://www.pjrc.com/teensy/
 | 
			
		||||
 * Copyright (c) 2013 PJRC.COM, LLC.
 | 
			
		||||
 * Modified by Jacob Alexander (2013-2014)
 | 
			
		||||
 *
 | 
			
		||||
 * Permission is hereby granted, free of charge, to any person obtaining
 | 
			
		||||
 * a copy of this software and associated documentation files (the
 | 
			
		||||
| 
						 | 
				
			
			@ -10,10 +11,10 @@
 | 
			
		|||
 * permit persons to whom the Software is furnished to do so, subject to
 | 
			
		||||
 * the following conditions:
 | 
			
		||||
 *
 | 
			
		||||
 * 1. The above copyright notice and this permission notice shall be 
 | 
			
		||||
 * 1. The above copyright notice and this permission notice shall be
 | 
			
		||||
 * included in all copies or substantial portions of the Software.
 | 
			
		||||
 *
 | 
			
		||||
 * 2. If the Software is incorporated into a build system that allows 
 | 
			
		||||
 * 2. If the Software is incorporated into a build system that allows
 | 
			
		||||
 * selection among a list of target devices, then similar target
 | 
			
		||||
 * devices manufactured by PJRC.COM must be included in the list of
 | 
			
		||||
 * target devices and selectable in the same manner.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,6 +1,7 @@
 | 
			
		|||
/* Teensyduino Core Library
 | 
			
		||||
 * http://www.pjrc.com/teensy/
 | 
			
		||||
 * Copyright (c) 2013 PJRC.COM, LLC.
 | 
			
		||||
 * Modified by Jacob Alexander (2013-2014)
 | 
			
		||||
 *
 | 
			
		||||
 * Permission is hereby granted, free of charge, to any person obtaining
 | 
			
		||||
 * a copy of this software and associated documentation files (the
 | 
			
		||||
| 
						 | 
				
			
			@ -10,10 +11,10 @@
 | 
			
		|||
 * permit persons to whom the Software is furnished to do so, subject to
 | 
			
		||||
 * the following conditions:
 | 
			
		||||
 *
 | 
			
		||||
 * 1. The above copyright notice and this permission notice shall be 
 | 
			
		||||
 * 1. The above copyright notice and this permission notice shall be
 | 
			
		||||
 * included in all copies or substantial portions of the Software.
 | 
			
		||||
 *
 | 
			
		||||
 * 2. If the Software is incorporated into a build system that allows 
 | 
			
		||||
 * 2. If the Software is incorporated into a build system that allows
 | 
			
		||||
 * selection among a list of target devices, then similar target
 | 
			
		||||
 * devices manufactured by PJRC.COM must be included in the list of
 | 
			
		||||
 * target devices and selectable in the same manner.
 | 
			
		||||
| 
						 | 
				
			
			@ -89,6 +90,7 @@ let me know?  http://forum.pjrc.com/forums/4-Suggestions-amp-Bug-Reports
 | 
			
		|||
#define NUM_ENDPOINTS		6
 | 
			
		||||
#define NUM_USB_BUFFERS	30
 | 
			
		||||
#define NUM_INTERFACE		4
 | 
			
		||||
 | 
			
		||||
#define CDC_IAD_DESCRIPTOR	1
 | 
			
		||||
#define CDC_STATUS_INTERFACE	0
 | 
			
		||||
#define CDC_DATA_INTERFACE	1	// Serial
 | 
			
		||||
| 
						 | 
				
			
			@ -98,22 +100,27 @@ let me know?  http://forum.pjrc.com/forums/4-Suggestions-amp-Bug-Reports
 | 
			
		|||
#define CDC_ACM_SIZE          16
 | 
			
		||||
#define CDC_RX_SIZE           64
 | 
			
		||||
#define CDC_TX_SIZE           64
 | 
			
		||||
 | 
			
		||||
#define KEYBOARD_INTERFACE    2	// Keyboard
 | 
			
		||||
#define KEYBOARD_ENDPOINT     1
 | 
			
		||||
#define KEYBOARD_SIZE         8
 | 
			
		||||
#define KEYBOARD_INTERVAL     1
 | 
			
		||||
 | 
			
		||||
#define MOUSE_INTERFACE       3	// Mouse
 | 
			
		||||
#define MOUSE_ENDPOINT        5
 | 
			
		||||
#define MOUSE_SIZE            8
 | 
			
		||||
#define MOUSE_INTERVAL        2
 | 
			
		||||
 | 
			
		||||
#define JOYSTICK_INTERFACE    4	// Joystick
 | 
			
		||||
#define JOYSTICK_ENDPOINT     6
 | 
			
		||||
#define JOYSTICK_SIZE         16
 | 
			
		||||
#define JOYSTICK_INTERVAL     1
 | 
			
		||||
 | 
			
		||||
#define KEYBOARD_DESC_OFFSET	(9+8 + 9+5+5+4+5+7+9+7+7 + 9)
 | 
			
		||||
#define MOUSE_DESC_OFFSET	(9+8 + 9+5+5+4+5+7+9+7+7 + 9+9+7 + 9)
 | 
			
		||||
#define JOYSTICK_DESC_OFFSET	(9+8 + 9+5+5+4+5+7+9+7+7 + 9+9+7 + 9+9+7 + 9)
 | 
			
		||||
#define CONFIG_DESC_SIZE	(9+8 + 9+5+5+4+5+7+9+7+7 + 9+9+7 + 9+9+7 + 9+9+7)
 | 
			
		||||
 | 
			
		||||
#define ENDPOINT1_CONFIG	ENDPOINT_TRANSIMIT_ONLY
 | 
			
		||||
#define ENDPOINT2_CONFIG	ENDPOINT_TRANSIMIT_ONLY
 | 
			
		||||
#define ENDPOINT3_CONFIG	ENDPOINT_RECEIVE_ONLY
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue