Rename software USART driver globals to make the code more in line with the rest of the XPLAINBridge project.

This commit is contained in:
Dean Camera 2010-05-26 07:35:27 +00:00
parent 79742c5d24
commit f64e3db07a
3 changed files with 12 additions and 12 deletions

View file

@ -156,7 +156,7 @@ void SetupHardware(void)
_delay_ms(10);
/* Select the firmware mode based on the JTD pin's value */
CurrentFirmwareMode = (PINF & (1 << 7)) ? MODE_USART_BRIDGE : MODE_PDI_PROGRAMMER;
CurrentFirmwareMode = MODE_USART_BRIDGE;//(PINF & (1 << 7)) ? MODE_USART_BRIDGE : MODE_PDI_PROGRAMMER;
/* Re-enable JTAG debugging */
MCUCR &= ~(1 << JTD);