1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-17 02:52:12 +01:00

Fix var issue.

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@99 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
dankers 2009-12-22 06:28:12 +00:00 committed by dankers
parent c8b42d5976
commit 6003def85d

View File

@ -32,14 +32,16 @@
/* Private Function Prototypes */
void NVIC_Configuration(void);
/* File system object for each logical drive */
static FATFS Fatfs[_DRIVES];
/**
* Initializes all system peripherals
*/
void PIOS_SYS_Init(void)
{
/* File system object for each logical drive */
FATFS Fatfs[_DRIVES];
/* Setup STM32 system (RCC, clock, PLL and Flash configuration) - CMSIS Function */
SystemInit();