summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-26 19:33:29 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-26 19:38:26 +0100
commit6e0848ca5aca48d83d31bbaa4728c63cad04d6cb (patch)
treeb3731de8a518f5fe794071b0645a2ea7b3b2d484 /arch
parent693330a3616e418c4eda90ff5528ef0cbe5fa4cc (diff)
It seems there's an issue somewhere with the COM port's initialization, or the whole board initialization. Better staying at 9600 at all times for now, even though it's possible to bump it to 115200 afterward, somehow.
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/lpc17xx/Drivers/source/debug_frmwrk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/lpc17xx/Drivers/source/debug_frmwrk.c b/arch/arm/lpc17xx/Drivers/source/debug_frmwrk.c
index e318ee2..457ef9a 100644
--- a/arch/arm/lpc17xx/Drivers/source/debug_frmwrk.c
+++ b/arch/arm/lpc17xx/Drivers/source/debug_frmwrk.c
@@ -283,7 +283,7 @@ void debug_frmwrk_init(void)
*/
UART_ConfigStructInit(&UARTConfigStruct);
// Re-configure baudrate to 115200bps
- UARTConfigStruct.Baud_rate = 115200;
+// UARTConfigStruct.Baud_rate = 115200;
// Initialize DEBUG_UART_PORT peripheral with given to corresponding parameter
UART_Init(DEBUG_UART_PORT, &UARTConfigStruct);