You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
340 B
14 lines
340 B
7 years ago
|
#n
|
||
|
#t__HAL_RCC_SYSCFG_CLK_ENABLE();
|
||
|
#t__HAL_RCC_PWR_CLK_ENABLE();
|
||
|
#n
|
||
|
#t/* System interrupt init*/
|
||
|
#t/* SVC_IRQn interrupt configuration */
|
||
|
#tNVIC_SetPriority(SVC_IRQn, 0);
|
||
|
#t/* PendSV_IRQn interrupt configuration */
|
||
|
#tNVIC_SetPriority(PendSV_IRQn, 0);
|
||
|
#t/* SysTick_IRQn interrupt configuration */
|
||
|
#tNVIC_SetPriority(SysTick_IRQn, 0);
|
||
|
#n
|
||
|
#n
|