Upgrade Doxygen configuration files for Doxygen 1.8.1, fix broken stylesheet and footer HTML, add explicit spacing into documentation code fragments to prevent Doxygen from removing empty lines in the output.

This commit is contained in:
Dean Camera 2012-05-20 10:55:59 +00:00
parent c9b3468f1e
commit f2ae4dc255
106 changed files with 1388 additions and 1800 deletions

View file

@ -53,10 +53,10 @@
* \code
* // Initialize the serial USART driver before first use, with 9600 baud (and no double-speed mode)
* Serial_Init(&USARTD0, 9600, false);
*
*
* // Send a string through the USART
* Serial_TxString(&USARTD0, "Test String\r\n");
*
*
* // Receive a byte through the USART
* uint8_t DataByte = Serial_RxByte(&USARTD0);
* \endcode