Version 0.81 (20061002)

This commit is contained in:
Olaf Rempel 2006-11-08 22:23:03 +01:00
parent 5cc82b476b
commit 2c2646b64f
2 changed files with 8 additions and 1 deletions

2
main.c
View File

@ -319,7 +319,7 @@ int main(void)
UART_BAUD_LOW = (UART_CALC_BAUDRATE(BAUDRATE) & 0xFF); UART_BAUD_LOW = (UART_CALC_BAUDRATE(BAUDRATE) & 0xFF);
#ifdef UART_DOUBLESPEED #ifdef UART_DOUBLESPEED
UART_STATUS = UART_DOUBLE; UART_STATUS = (1<<UART_DOUBLE);
#endif #endif
UART_CTRL = UART_CTRL_DATA; UART_CTRL = UART_CTRL_DATA;

View File

@ -30,6 +30,13 @@ Programming-Software (on the "PC-Side"):
* Installation instructions at the end of this file. * Installation instructions at the end of this file.
2. Oct. 2006 - Version 0.81
* Bernhard Roth reported a mistake in the UART-configuration
for double-speed. Thanks for the report.
Change in main.c:
UART_STATUS = UART_DOUBLE; -> UART_STATUS = (1<<UART_DOUBLE);
28. May 2006 - Version 0.8beta3 28. May 2006 - Version 0.8beta3