Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
b81094cf
Commit
b81094cf
authored
7 years ago
by
Vincent Dupont
Browse files
Options
Downloads
Patches
Plain Diff
boards/nucleo-f091/103: adapt clock config
parent
e005554b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
boards/nucleo-f091/include/periph_conf.h
+23
-11
23 additions, 11 deletions
boards/nucleo-f091/include/periph_conf.h
boards/nucleo-f103/include/periph_conf.h
+24
-29
24 additions, 29 deletions
boards/nucleo-f103/include/periph_conf.h
with
47 additions
and
40 deletions
boards/nucleo-f091/include/periph_conf.h
+
23
−
11
View file @
b81094cf
...
@@ -26,19 +26,31 @@ extern "C" {
...
@@ -26,19 +26,31 @@ extern "C" {
#endif
#endif
/**
/**
* @name Clock system configuration
* @name Clock settings
*
* @note This is auto-generated from
* `cpu/stm32_common/dist/clk_conf/clk_conf.c`
* @{
* @{
*/
*/
#define CLOCK_HSE (8000000U)
/* external oscillator */
/* give the target core clock (HCLK) frequency [in Hz],
#define CLOCK_CORECLOCK (48000000U)
/* desired core clock frequency */
* maximum: 48MHz */
#define CLOCK_CORECLOCK (48000000U)
/* the actual PLL values are automatically generated */
/* 0: no external high speed crystal available
#define CLOCK_PLL_MUL (CLOCK_CORECLOCK / CLOCK_HSE)
* else: actual crystal frequency [in Hz] */
#define CLOCK_HSE (8000000U)
/* bus clocks for simplified peripheral initialization, UPDATE MANUALLY! */
/* 0: no external low speed crystal available,
#define CLOCK_AHB (CLOCK_CORECLOCK / 1)
* 1: external crystal available (always 32.768kHz) */
#define CLOCK_APB2 (CLOCK_CORECLOCK / 1)
#define CLOCK_LSE (1)
#define CLOCK_APB1 (CLOCK_CORECLOCK / 1)
/* peripheral clock setup */
#define CLOCK_AHB_DIV RCC_CFGR_HPRE_DIV1
#define CLOCK_AHB (CLOCK_CORECLOCK / 1)
#define CLOCK_APB1_DIV RCC_CFGR_PPRE_DIV1
/* max 48MHz */
#define CLOCK_APB1 (CLOCK_CORECLOCK / 1)
#define CLOCK_APB2 (CLOCK_APB1)
/* PLL factors */
#define CLOCK_PLL_PREDIV (1)
#define CLOCK_PLL_MUL (6)
/** @} */
/** @} */
/**
/**
...
...
This diff is collapsed.
Click to expand it.
boards/nucleo-f103/include/periph_conf.h
+
24
−
29
View file @
b81094cf
...
@@ -26,37 +26,32 @@ extern "C" {
...
@@ -26,37 +26,32 @@ extern "C" {
#endif
#endif
/**
/**
* @name Clock system configuration
* @name Clock settings
*
* @note This is auto-generated from
* `cpu/stm32_common/dist/clk_conf/clk_conf.c`
* @{
* @{
**/
/* high speed clock configuration:
* 0 := use internal HSI oscillator (always 8MHz)
* HSE frequency value := use external HSE oscillator with given freq [in Hz]
* must be 4000000 <= value <= 16000000 */
#define CLOCK_HSE (8000000U)
/* low speed clock configuration:
* 0 := use internal LSI oscillator (~40kHz)
* 1 := use extern LSE oscillator, always 32.768kHz */
#define CLOCK_LSE (1)
/* targeted system clock speed [in Hz], must be <= 72MHz */
#define CLOCK_CORECLOCK (72000000U)
/* PLL configuration, set both values to zero to disable PLL usage. The values
* must be set to satisfy the following equation:
* CORECLOCK := CLOCK_SOURCE / PLL_DIV * PLL_MUL
* with
* 1 <= CLOCK_PLL_DIV <= 2
* 2 <= CLOCK_PLL_MUL <= 17 */
#define CLOCK_PLL_DIV (1)
#define CLOCK_PLL_MUL (9)
/* AHB and APBx bus clock configuration, keep in mind the following constraints:
* ABP1 <= 36MHz
*/
*/
#define CLOCK_AHB_DIV RCC_CFGR_HPRE_DIV1
/* give the target core clock (HCLK) frequency [in Hz],
#define CLOCK_AHB (CLOCK_CORECLOCK / 1)
* maximum: 72MHz */
#define CLOCK_APB2_DIV RCC_CFGR_PPRE2_DIV1
#define CLOCK_CORECLOCK (72000000U)
#define CLOCK_APB2 (CLOCK_CORECLOCK / 1)
/* 0: no external high speed crystal available
#define CLOCK_APB1_DIV RCC_CFGR_PPRE1_DIV2
* else: actual crystal frequency [in Hz] */
#define CLOCK_APB1 (CLOCK_CORECLOCK / 2)
#define CLOCK_HSE (8000000U)
/* 0: no external low speed crystal available,
* 1: external crystal available (always 32.768kHz) */
#define CLOCK_LSE (1)
/* peripheral clock setup */
#define CLOCK_AHB_DIV RCC_CFGR_HPRE_DIV1
#define CLOCK_AHB (CLOCK_CORECLOCK / 1)
#define CLOCK_APB1_DIV RCC_CFGR_PPRE1_DIV2
/* max 36MHz */
#define CLOCK_APB1 (CLOCK_CORECLOCK / 2)
#define CLOCK_APB2_DIV RCC_CFGR_PPRE2_DIV1
/* max 72MHz */
#define CLOCK_APB2 (CLOCK_CORECLOCK / 1)
/* PLL factors */
#define CLOCK_PLL_PREDIV (1)
#define CLOCK_PLL_MUL (9)
/** @} */
/** @} */
/**
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment