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.
24 lines
485 B
24 lines
485 B
#include <libopencm3/stm32/rcc.h>
|
|
|
|
#include <rcc.h>
|
|
|
|
int rcc_init(void)
|
|
{
|
|
rcc_clock_setup_in_hsi_out_48mhz();
|
|
|
|
rcc_periph_clock_enable(RCC_GPIOA);
|
|
rcc_periph_clock_enable(RCC_GPIOB);
|
|
rcc_periph_clock_enable(RCC_SPI1);
|
|
rcc_periph_clock_enable(RCC_USART1);
|
|
rcc_periph_clock_enable(RCC_USART2);
|
|
rcc_periph_clock_enable(RCC_TIM1);
|
|
rcc_periph_clock_enable(RCC_TIM2);
|
|
rcc_periph_clock_enable(RCC_TIM3);
|
|
rcc_periph_clock_enable(RCC_TIM14);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void rcc_cleanup(void)
|
|
{
|
|
}
|
|
|