changed Leonardo bootloader and sketch PID values again (now 0x0701 for bootloader, 0x0801 for sketch)

This commit is contained in:
Zach Eveland 2012-02-13 00:10:16 -05:00
parent 35bbf80ba9
commit ac3aca0acf
4 changed files with 4 additions and 4 deletions

View File

@ -237,7 +237,7 @@
:107EC00081BD20BD0FB6F894FA9AF99A0FBE0196BB
:067ED0000895F894FFCFB5
:107ED6004341544552494E41000100000000000054
:107EE60008120110010200000841230230010002BD
:107EE60008120110010200000841230107010002E7
:107EF60001000109023E000201008032090400006F
:107F060001020201000524001001042402040524D4
:107F1600060001070582030800FF09040100020AA2

View File

@ -54,7 +54,7 @@ const USB_Descriptor_Device_t DeviceDescriptor =
.Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE,
.VendorID = 0x2341,
.ProductID = 0x3002,
.ProductID = 0x0701,
.ReleaseNumber = VERSION_BCD(00.01),
.ManufacturerStrIndex = 0x02,

View File

@ -60,7 +60,7 @@
#define IMANUFACTURER 1
#define IPRODUCT 2
#define USB_PID_LEONARDO 0x3003
#define USB_PID_LEONARDO 0x0801
#define USB_PID_MICRO 0x0035
#define USB_VID 0x2341 // arduino LLC vid
#define USB_PID ARDUINO_MODEL_USB_PID

View File

@ -27,7 +27,7 @@
#include <avr/pgmspace.h>
#define ARDUINO_MODEL_USB_PID 0x3003
#define ARDUINO_MODEL_USB_PID 0x0801
#define TX_RX_LED_INIT DDRD |= (1<<5), DDRB |= (1<<0)
#define TXLED0 PORTD |= (1<<5)