Fixed issue in USBtoSerial demos where the USART Rx line was not having its pullup enabled at startup, leading to noise being received from the Rx pin when left floating.

Removed unused relative Common.h header include from the DriverStubs board stub drivers.

Fixed Benito programmer, use the correct LED functions where needed to ensure correct status display at all times.
This commit is contained in:
Dean Camera 2009-08-05 13:16:36 +00:00
parent 4421782b7f
commit 99c447c754
12 changed files with 24 additions and 27 deletions

View file

@ -110,7 +110,7 @@ void SetupHardware(void)
clock_prescale_set(clock_div_1);
/* Hardware Initialization */
Joystick_Init();
Serial_Init(9600, false);
LEDs_Init();
USB_Init();
}