Skip to content

Commit 19c6f3b

Browse files
author
Cruz Monrreal
authored
Merge pull request #7290 from bcostm/refactor_us_ticker
STM32: Refactor us_ticker files
2 parents f4382d9 + 0b133be commit 19c6f3b

File tree

115 files changed

+2684
-3837
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+2684
-3837
lines changed

targets/TARGET_STM/TARGET_STM32F0/TARGET_DISCO_F051R8/device/hal_tick.h

Lines changed: 0 additions & 66 deletions
This file was deleted.
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/* mbed Microcontroller Library
2+
* Copyright (c) 2006-2018 ARM Limited
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
#ifndef __US_TICKER_DATA_H
17+
#define __US_TICKER_DATA_H
18+
19+
#ifdef __cplusplus
20+
extern "C" {
21+
#endif
22+
23+
#include "stm32f0xx.h"
24+
#include "stm32f0xx_ll_tim.h"
25+
#include "cmsis_nvic.h"
26+
27+
#define TIM_MST TIM1
28+
#define TIM_MST_UP_IRQ TIM1_BRK_UP_TRG_COM_IRQn
29+
#define TIM_MST_OC_IRQ TIM1_CC_IRQn
30+
#define TIM_MST_RCC __HAL_RCC_TIM1_CLK_ENABLE()
31+
#define TIM_MST_DBGMCU_FREEZE __HAL_DBGMCU_FREEZE_TIM1()
32+
33+
#define TIM_MST_RESET_ON __HAL_RCC_TIM1_FORCE_RESET()
34+
#define TIM_MST_RESET_OFF __HAL_RCC_TIM1_RELEASE_RESET()
35+
36+
#define TIM_MST_BIT_WIDTH 16 // 16 or 32
37+
38+
#define TIM_MST_PCLK 2 // Select the peripheral clock number (1 or 2)
39+
40+
41+
#ifdef __cplusplus
42+
}
43+
#endif
44+
45+
#endif // __US_TICKER_DATA_H
46+

targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F030R8/device/hal_tick.h

Lines changed: 0 additions & 66 deletions
This file was deleted.
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/* mbed Microcontroller Library
2+
* Copyright (c) 2006-2018 ARM Limited
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
#ifndef __US_TICKER_DATA_H
17+
#define __US_TICKER_DATA_H
18+
19+
#ifdef __cplusplus
20+
extern "C" {
21+
#endif
22+
23+
#include "stm32f0xx.h"
24+
#include "stm32f0xx_ll_tim.h"
25+
#include "cmsis_nvic.h"
26+
27+
#define TIM_MST TIM1
28+
#define TIM_MST_UP_IRQ TIM1_BRK_UP_TRG_COM_IRQn
29+
#define TIM_MST_OC_IRQ TIM1_CC_IRQn
30+
#define TIM_MST_RCC __HAL_RCC_TIM1_CLK_ENABLE()
31+
#define TIM_MST_DBGMCU_FREEZE __HAL_DBGMCU_FREEZE_TIM1()
32+
33+
#define TIM_MST_RESET_ON __HAL_RCC_TIM1_FORCE_RESET()
34+
#define TIM_MST_RESET_OFF __HAL_RCC_TIM1_RELEASE_RESET()
35+
36+
#define TIM_MST_BIT_WIDTH 16 // 16 or 32
37+
38+
#define TIM_MST_PCLK 2 // Select the peripheral clock number (1 or 2)
39+
40+
41+
#ifdef __cplusplus
42+
}
43+
#endif
44+
45+
#endif // __US_TICKER_DATA_H
46+

targets/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F031K6/device/hal_tick.h

Lines changed: 0 additions & 65 deletions
This file was deleted.
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/* mbed Microcontroller Library
2+
* Copyright (c) 2006-2018 ARM Limited
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
#ifndef __US_TICKER_DATA_H
17+
#define __US_TICKER_DATA_H
18+
19+
#ifdef __cplusplus
20+
extern "C" {
21+
#endif
22+
23+
#include "stm32f0xx.h"
24+
#include "stm32f0xx_ll_tim.h"
25+
#include "cmsis_nvic.h"
26+
27+
#define TIM_MST TIM2
28+
#define TIM_MST_IRQ TIM2_IRQn
29+
#define TIM_MST_RCC __HAL_RCC_TIM2_CLK_ENABLE()
30+
#define TIM_MST_DBGMCU_FREEZE __HAL_DBGMCU_FREEZE_TIM2()
31+
32+
#define TIM_MST_RESET_ON __HAL_RCC_TIM2_FORCE_RESET()
33+
#define TIM_MST_RESET_OFF __HAL_RCC_TIM2_RELEASE_RESET()
34+
35+
#define TIM_MST_BIT_WIDTH 32 // 16 or 32
36+
37+
#define TIM_MST_PCLK 1 // Select the peripheral clock number (1 or 2)
38+
39+
40+
#ifdef __cplusplus
41+
}
42+
#endif
43+
44+
#endif // __US_TICKER_DATA_H
45+

0 commit comments

Comments
 (0)