mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
Caterina changes to support Micro. includes newly rebuilt version of the bootloader merged with Blink produced using 1.0.2
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@ -69,10 +69,17 @@
|
||||
#define L_LED_OFF() PORTC &= ~(1<<7)
|
||||
#define L_LED_ON() PORTC |= (1<<7)
|
||||
#define L_LED_TOGGLE() PORTC ^= (1<<7)
|
||||
#define TX_LED_OFF() PORTD |= (1<<5)
|
||||
#define TX_LED_ON() PORTD &= ~(1<<5)
|
||||
#define RX_LED_OFF() PORTB |= (1<<0)
|
||||
#define RX_LED_ON() PORTB &= ~(1<<0)
|
||||
#if DEVICE_PID == 0x0037 // polarity of the RX and TX LEDs is reversed on the Micro
|
||||
#define TX_LED_OFF() PORTD &= ~(1<<5)
|
||||
#define TX_LED_ON() PORTD |= (1<<5)
|
||||
#define RX_LED_OFF() PORTB &= ~(1<<0)
|
||||
#define RX_LED_ON() PORTB |= (1<<0)
|
||||
#else
|
||||
#define TX_LED_OFF() PORTD |= (1<<5)
|
||||
#define TX_LED_ON() PORTD &= ~(1<<5)
|
||||
#define RX_LED_OFF() PORTB |= (1<<0)
|
||||
#define RX_LED_ON() PORTB &= ~(1<<0)
|
||||
#endif
|
||||
|
||||
/* Type Defines: */
|
||||
/** Type define for a non-returning pointer to the start of the loaded application in flash memory. */
|
||||
|
@ -195,6 +195,8 @@ const USB_Descriptor_String_t ProductString =
|
||||
|
||||
#if DEVICE_PID == 0x0036
|
||||
.UnicodeString = L"Arduino Leonardo"
|
||||
#elif DEVICE_PID == 0x0037
|
||||
.UnicodeString = L"Arduino Micro "
|
||||
#else
|
||||
.UnicodeString = L"USB IO board "
|
||||
#endif
|
||||
|
@ -47,6 +47,7 @@
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
# USB vendor ID (VID)
|
||||
# reuse of this VID by others is forbidden by USB-IF
|
||||
# official Arduino LLC VID
|
||||
# VID = 0x2341
|
||||
|
||||
@ -54,7 +55,8 @@
|
||||
# USB product ID (PID)
|
||||
# official Leonardo PID
|
||||
# PID = 0x0036
|
||||
|
||||
# official Micro PID
|
||||
# PID = 0x0037
|
||||
|
||||
# MCU name
|
||||
MCU = atmega32u4
|
||||
@ -123,7 +125,7 @@ OBJDIR = .
|
||||
|
||||
|
||||
# Path to the LUFA library
|
||||
LUFA_PATH = ../../../../../LUFA-111009
|
||||
LUFA_PATH = ../../../../../../LUFA/LUFA-111009
|
||||
|
||||
|
||||
# LUFA library compile-time options and predefined tokens
|
||||
|
Reference in New Issue
Block a user