Merge pull request #1082 from 0xc0170/fix_various_fixes

Nucleo L053R8 - multiple definition error for PLLMulTable fix
pull/1085/head
Martin Kojtal 2015-04-29 09:56:05 +01:00
commit 739bf99fd2
1 changed files with 2 additions and 2 deletions

View File

@ -118,8 +118,8 @@
/** @defgroup RCC_Private_Vatiables RCC Private Data
* @{
*/
const uint8_t PLLMulTable[9] = {3, 4, 6, 8, 12, 16, 24, 32, 48};
const uint8_t APBAHBPrescTable[16] = {0, 0, 0, 0, 1, 2, 3, 4, 1, 2, 3, 4, 6, 7, 8, 9};
static const uint8_t PLLMulTable[9] = {3, 4, 6, 8, 12, 16, 24, 32, 48};
static const uint8_t APBAHBPrescTable[16] = {0, 0, 0, 0, 1, 2, 3, 4, 1, 2, 3, 4, 6, 7, 8, 9};
/**
* @}