1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/nucleo-f303k8: remove custom pll prediv/mul defines

This commit is contained in:
Alexandre Abadie 2020-11-11 15:19:44 +01:00
parent c68f63b318
commit 591f201c11
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -19,15 +19,6 @@
#ifndef PERIPH_CONF_H
#define PERIPH_CONF_H
/* Adjust PLL factors:
- On nucleo-f303k8, there's no HSE and PREDIV is hard-wired to 2
- to reach the maximum possible system clock (64MHz) set PLL_MUL to 16
so system clock = (HSI8 / 2) * 16 = 64MHz */
#define CONFIG_CLOCK_PLL_PREDIV (2)
#ifndef CONFIG_CLOCK_PLL_MUL
#define CONFIG_CLOCK_PLL_MUL (16)
#endif
#include "periph_cpu.h"
#include "clk_conf.h"
#include "cfg_timer_tim2.h"