Fixed bug 3581304.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@4784 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2012-10-28 07:42:23 +00:00
parent 44a636a360
commit bad784d990
2 changed files with 3 additions and 8 deletions

View File

@ -62,16 +62,10 @@ int main(void) {
chSysInit();
/*
* Activates the serial driver 2 using the driver default configuration.
* Activates the serial driver 1 using the driver default configuration.
*/
sdStart(&SD1, NULL);
/*
* The main() function becomes a thread here then the interrupts are
* enabled and ChibiOS/RT goes live.
*/
chSysInit();
/*
* Creates the blinker thread.
*/
@ -79,7 +73,7 @@ int main(void) {
/*
* Normal main() thread activity, in this demo it does nothing except
* sleeping in a loop.
* checking a button and run a test suite if button was pressed.
*/
while (TRUE) {
if (!palReadPad(IOPORT6, P6_I_BUTTON))

View File

@ -79,6 +79,7 @@
*****************************************************************************
*** 2.4.3 ***
- FIX: Fixed double chSysInit() call in MSP430F1611 demo (bug 3581304).
- FIX: Fixed bug in abstract file interface (bug 3579660).
- FIX: Fixed various typos and wrong limits in the STM32F4/F2 HAL driver
(bug 3578944).