Rev 61 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
77 | mjames | 1 | /** |
2 | ****************************************************************************** |
||
3 | * @file stm32l1xx_ll_tim.c |
||
4 | * @author MCD Application Team |
||
5 | * @brief TIM LL module driver. |
||
6 | ****************************************************************************** |
||
7 | * @attention |
||
8 | * |
||
9 | * Copyright (c) 2016 STMicroelectronics. |
||
10 | * All rights reserved. |
||
11 | * |
||
12 | * This software is licensed under terms that can be found in the LICENSE file |
||
13 | * in the root directory of this software component. |
||
14 | * If no LICENSE file comes with this software, it is provided AS-IS. |
||
15 | * |
||
16 | ****************************************************************************** |
||
17 | */ |
||
18 | #if defined(USE_FULL_LL_DRIVER) |
||
19 | |||
20 | /* Includes ------------------------------------------------------------------*/ |
||
21 | #include "stm32l1xx_ll_tim.h" |
||
22 | #include "stm32l1xx_ll_bus.h" |
||
23 | |||
24 | #ifdef USE_FULL_ASSERT |
||
25 | #include "stm32_assert.h" |
||
26 | #else |
||
27 | #define assert_param(expr) ((void)0U) |
||
28 | #endif /* USE_FULL_ASSERT */ |
||
29 | |||
30 | /** @addtogroup STM32L1xx_LL_Driver |
||
31 | * @{ |
||
32 | */ |
||
33 | |||
34 | #if defined (TIM2) || defined (TIM3) || defined (TIM4) || defined (TIM5) || defined (TIM9) || defined (TIM10) || defined (TIM11) || defined (TIM6) || defined (TIM7) |
||
35 | |||
36 | /** @addtogroup TIM_LL |
||
37 | * @{ |
||
38 | */ |
||
39 | |||
40 | /* Private types -------------------------------------------------------------*/ |
||
41 | /* Private variables ---------------------------------------------------------*/ |
||
42 | /* Private constants ---------------------------------------------------------*/ |
||
43 | /* Private macros ------------------------------------------------------------*/ |
||
44 | /** @addtogroup TIM_LL_Private_Macros |
||
45 | * @{ |
||
46 | */ |
||
47 | #define IS_LL_TIM_COUNTERMODE(__VALUE__) (((__VALUE__) == LL_TIM_COUNTERMODE_UP) \ |
||
48 | || ((__VALUE__) == LL_TIM_COUNTERMODE_DOWN) \ |
||
49 | || ((__VALUE__) == LL_TIM_COUNTERMODE_CENTER_UP) \ |
||
50 | || ((__VALUE__) == LL_TIM_COUNTERMODE_CENTER_DOWN) \ |
||
51 | || ((__VALUE__) == LL_TIM_COUNTERMODE_CENTER_UP_DOWN)) |
||
52 | |||
53 | #define IS_LL_TIM_CLOCKDIVISION(__VALUE__) (((__VALUE__) == LL_TIM_CLOCKDIVISION_DIV1) \ |
||
54 | || ((__VALUE__) == LL_TIM_CLOCKDIVISION_DIV2) \ |
||
55 | || ((__VALUE__) == LL_TIM_CLOCKDIVISION_DIV4)) |
||
56 | |||
57 | #define IS_LL_TIM_OCMODE(__VALUE__) (((__VALUE__) == LL_TIM_OCMODE_FROZEN) \ |
||
58 | || ((__VALUE__) == LL_TIM_OCMODE_ACTIVE) \ |
||
59 | || ((__VALUE__) == LL_TIM_OCMODE_INACTIVE) \ |
||
60 | || ((__VALUE__) == LL_TIM_OCMODE_TOGGLE) \ |
||
61 | || ((__VALUE__) == LL_TIM_OCMODE_FORCED_INACTIVE) \ |
||
62 | || ((__VALUE__) == LL_TIM_OCMODE_FORCED_ACTIVE) \ |
||
63 | || ((__VALUE__) == LL_TIM_OCMODE_PWM1) \ |
||
64 | || ((__VALUE__) == LL_TIM_OCMODE_PWM2)) |
||
65 | |||
66 | #define IS_LL_TIM_OCSTATE(__VALUE__) (((__VALUE__) == LL_TIM_OCSTATE_DISABLE) \ |
||
67 | || ((__VALUE__) == LL_TIM_OCSTATE_ENABLE)) |
||
68 | |||
69 | #define IS_LL_TIM_OCPOLARITY(__VALUE__) (((__VALUE__) == LL_TIM_OCPOLARITY_HIGH) \ |
||
70 | || ((__VALUE__) == LL_TIM_OCPOLARITY_LOW)) |
||
71 | |||
72 | #define IS_LL_TIM_ACTIVEINPUT(__VALUE__) (((__VALUE__) == LL_TIM_ACTIVEINPUT_DIRECTTI) \ |
||
73 | || ((__VALUE__) == LL_TIM_ACTIVEINPUT_INDIRECTTI) \ |
||
74 | || ((__VALUE__) == LL_TIM_ACTIVEINPUT_TRC)) |
||
75 | |||
76 | #define IS_LL_TIM_ICPSC(__VALUE__) (((__VALUE__) == LL_TIM_ICPSC_DIV1) \ |
||
77 | || ((__VALUE__) == LL_TIM_ICPSC_DIV2) \ |
||
78 | || ((__VALUE__) == LL_TIM_ICPSC_DIV4) \ |
||
79 | || ((__VALUE__) == LL_TIM_ICPSC_DIV8)) |
||
80 | |||
81 | #define IS_LL_TIM_IC_FILTER(__VALUE__) (((__VALUE__) == LL_TIM_IC_FILTER_FDIV1) \ |
||
82 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV1_N2) \ |
||
83 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV1_N4) \ |
||
84 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV1_N8) \ |
||
85 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV2_N6) \ |
||
86 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV2_N8) \ |
||
87 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV4_N6) \ |
||
88 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV4_N8) \ |
||
89 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV8_N6) \ |
||
90 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV8_N8) \ |
||
91 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV16_N5) \ |
||
92 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV16_N6) \ |
||
93 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV16_N8) \ |
||
94 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV32_N5) \ |
||
95 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV32_N6) \ |
||
96 | || ((__VALUE__) == LL_TIM_IC_FILTER_FDIV32_N8)) |
||
97 | |||
98 | #define IS_LL_TIM_IC_POLARITY(__VALUE__) (((__VALUE__) == LL_TIM_IC_POLARITY_RISING) \ |
||
99 | || ((__VALUE__) == LL_TIM_IC_POLARITY_FALLING) \ |
||
100 | || ((__VALUE__) == LL_TIM_IC_POLARITY_BOTHEDGE)) |
||
101 | |||
102 | #define IS_LL_TIM_ENCODERMODE(__VALUE__) (((__VALUE__) == LL_TIM_ENCODERMODE_X2_TI1) \ |
||
103 | || ((__VALUE__) == LL_TIM_ENCODERMODE_X2_TI2) \ |
||
104 | || ((__VALUE__) == LL_TIM_ENCODERMODE_X4_TI12)) |
||
105 | |||
106 | #define IS_LL_TIM_IC_POLARITY_ENCODER(__VALUE__) (((__VALUE__) == LL_TIM_IC_POLARITY_RISING) \ |
||
107 | || ((__VALUE__) == LL_TIM_IC_POLARITY_FALLING)) |
||
108 | /** |
||
109 | * @} |
||
110 | */ |
||
111 | |||
112 | |||
113 | /* Private function prototypes -----------------------------------------------*/ |
||
114 | /** @defgroup TIM_LL_Private_Functions TIM Private Functions |
||
115 | * @{ |
||
116 | */ |
||
117 | static ErrorStatus OC1Config(TIM_TypeDef *TIMx, const LL_TIM_OC_InitTypeDef *TIM_OCInitStruct); |
||
118 | static ErrorStatus OC2Config(TIM_TypeDef *TIMx, const LL_TIM_OC_InitTypeDef *TIM_OCInitStruct); |
||
119 | static ErrorStatus OC3Config(TIM_TypeDef *TIMx, const LL_TIM_OC_InitTypeDef *TIM_OCInitStruct); |
||
120 | static ErrorStatus OC4Config(TIM_TypeDef *TIMx, const LL_TIM_OC_InitTypeDef *TIM_OCInitStruct); |
||
121 | static ErrorStatus IC1Config(TIM_TypeDef *TIMx, const LL_TIM_IC_InitTypeDef *TIM_ICInitStruct); |
||
122 | static ErrorStatus IC2Config(TIM_TypeDef *TIMx, const LL_TIM_IC_InitTypeDef *TIM_ICInitStruct); |
||
123 | static ErrorStatus IC3Config(TIM_TypeDef *TIMx, const LL_TIM_IC_InitTypeDef *TIM_ICInitStruct); |
||
124 | static ErrorStatus IC4Config(TIM_TypeDef *TIMx, const LL_TIM_IC_InitTypeDef *TIM_ICInitStruct); |
||
125 | /** |
||
126 | * @} |
||
127 | */ |
||
128 | |||
129 | /* Exported functions --------------------------------------------------------*/ |
||
130 | /** @addtogroup TIM_LL_Exported_Functions |
||
131 | * @{ |
||
132 | */ |
||
133 | |||
134 | /** @addtogroup TIM_LL_EF_Init |
||
135 | * @{ |
||
136 | */ |
||
137 | |||
138 | /** |
||
139 | * @brief Set TIMx registers to their reset values. |
||
140 | * @param TIMx Timer instance |
||
141 | * @retval An ErrorStatus enumeration value: |
||
142 | * - SUCCESS: TIMx registers are de-initialized |
||
143 | * - ERROR: invalid TIMx instance |
||
144 | */ |
||
145 | ErrorStatus LL_TIM_DeInit(const TIM_TypeDef *TIMx) |
||
146 | { |
||
147 | ErrorStatus result = SUCCESS; |
||
148 | |||
149 | /* Check the parameters */ |
||
150 | assert_param(IS_TIM_INSTANCE(TIMx)); |
||
151 | |||
152 | if (TIMx == TIM2) |
||
153 | { |
||
154 | LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_TIM2); |
||
155 | LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_TIM2); |
||
156 | } |
||
157 | #if defined(TIM3) |
||
158 | else if (TIMx == TIM3) |
||
159 | { |
||
160 | LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_TIM3); |
||
161 | LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_TIM3); |
||
162 | } |
||
163 | #endif /* TIM3 */ |
||
164 | #if defined(TIM4) |
||
165 | else if (TIMx == TIM4) |
||
166 | { |
||
167 | LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_TIM4); |
||
168 | LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_TIM4); |
||
169 | } |
||
170 | #endif /* TIM4 */ |
||
171 | #if defined(TIM5) |
||
172 | else if (TIMx == TIM5) |
||
173 | { |
||
174 | LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_TIM5); |
||
175 | LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_TIM5); |
||
176 | } |
||
177 | #endif /* TIM5 */ |
||
178 | #if defined(TIM6) |
||
179 | else if (TIMx == TIM6) |
||
180 | { |
||
181 | LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_TIM6); |
||
182 | LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_TIM6); |
||
183 | } |
||
184 | #endif /* TIM6 */ |
||
185 | #if defined(TIM7) |
||
186 | else if (TIMx == TIM7) |
||
187 | { |
||
188 | LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_TIM7); |
||
189 | LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_TIM7); |
||
190 | } |
||
191 | #endif /* TIM7 */ |
||
192 | #if defined(TIM9) |
||
193 | else if (TIMx == TIM9) |
||
194 | { |
||
195 | LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_TIM9); |
||
196 | LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_TIM9); |
||
197 | } |
||
198 | #endif /* TIM9 */ |
||
199 | #if defined(TIM10) |
||
200 | else if (TIMx == TIM10) |
||
201 | { |
||
202 | LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_TIM10); |
||
203 | LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_TIM10); |
||
204 | } |
||
205 | #endif /* TIM10 */ |
||
206 | #if defined(TIM11) |
||
207 | else if (TIMx == TIM11) |
||
208 | { |
||
209 | LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_TIM11); |
||
210 | LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_TIM11); |
||
211 | } |
||
212 | #endif /* TIM11 */ |
||
213 | else |
||
214 | { |
||
215 | result = ERROR; |
||
216 | } |
||
217 | |||
218 | return result; |
||
219 | } |
||
220 | |||
221 | /** |
||
222 | * @brief Set the fields of the time base unit configuration data structure |
||
223 | * to their default values. |
||
224 | * @param TIM_InitStruct pointer to a @ref LL_TIM_InitTypeDef structure (time base unit configuration data structure) |
||
225 | * @retval None |
||
226 | */ |
||
227 | void LL_TIM_StructInit(LL_TIM_InitTypeDef *TIM_InitStruct) |
||
228 | { |
||
229 | /* Set the default configuration */ |
||
230 | TIM_InitStruct->Prescaler = (uint16_t)0x0000; |
||
231 | TIM_InitStruct->CounterMode = LL_TIM_COUNTERMODE_UP; |
||
232 | TIM_InitStruct->Autoreload = 0xFFFFFFFFU; |
||
233 | TIM_InitStruct->ClockDivision = LL_TIM_CLOCKDIVISION_DIV1; |
||
234 | } |
||
235 | |||
236 | /** |
||
237 | * @brief Configure the TIMx time base unit. |
||
238 | * @param TIMx Timer Instance |
||
239 | * @param TIM_InitStruct pointer to a @ref LL_TIM_InitTypeDef structure |
||
240 | * (TIMx time base unit configuration data structure) |
||
241 | * @retval An ErrorStatus enumeration value: |
||
242 | * - SUCCESS: TIMx registers are de-initialized |
||
243 | * - ERROR: not applicable |
||
244 | */ |
||
245 | ErrorStatus LL_TIM_Init(TIM_TypeDef *TIMx, const LL_TIM_InitTypeDef *TIM_InitStruct) |
||
246 | { |
||
247 | uint32_t tmpcr1; |
||
248 | |||
249 | /* Check the parameters */ |
||
250 | assert_param(IS_TIM_INSTANCE(TIMx)); |
||
251 | assert_param(IS_LL_TIM_COUNTERMODE(TIM_InitStruct->CounterMode)); |
||
252 | assert_param(IS_LL_TIM_CLOCKDIVISION(TIM_InitStruct->ClockDivision)); |
||
253 | |||
254 | tmpcr1 = LL_TIM_ReadReg(TIMx, CR1); |
||
255 | |||
256 | if (IS_TIM_COUNTER_MODE_SELECT_INSTANCE(TIMx)) |
||
257 | { |
||
258 | /* Select the Counter Mode */ |
||
259 | MODIFY_REG(tmpcr1, (TIM_CR1_DIR | TIM_CR1_CMS), TIM_InitStruct->CounterMode); |
||
260 | } |
||
261 | |||
262 | if (IS_TIM_CLOCK_DIVISION_INSTANCE(TIMx)) |
||
263 | { |
||
264 | /* Set the clock division */ |
||
265 | MODIFY_REG(tmpcr1, TIM_CR1_CKD, TIM_InitStruct->ClockDivision); |
||
266 | } |
||
267 | |||
268 | /* Write to TIMx CR1 */ |
||
269 | LL_TIM_WriteReg(TIMx, CR1, tmpcr1); |
||
270 | |||
271 | /* Set the Autoreload value */ |
||
272 | LL_TIM_SetAutoReload(TIMx, TIM_InitStruct->Autoreload); |
||
273 | |||
274 | /* Set the Prescaler value */ |
||
275 | LL_TIM_SetPrescaler(TIMx, TIM_InitStruct->Prescaler); |
||
276 | /* Generate an update event to reload the Prescaler |
||
277 | and the repetition counter value (if applicable) immediately */ |
||
278 | LL_TIM_GenerateEvent_UPDATE(TIMx); |
||
279 | |||
280 | return SUCCESS; |
||
281 | } |
||
282 | |||
283 | /** |
||
284 | * @brief Set the fields of the TIMx output channel configuration data |
||
285 | * structure to their default values. |
||
286 | * @param TIM_OC_InitStruct pointer to a @ref LL_TIM_OC_InitTypeDef structure |
||
287 | * (the output channel configuration data structure) |
||
288 | * @retval None |
||
289 | */ |
||
290 | void LL_TIM_OC_StructInit(LL_TIM_OC_InitTypeDef *TIM_OC_InitStruct) |
||
291 | { |
||
292 | /* Set the default configuration */ |
||
293 | TIM_OC_InitStruct->OCMode = LL_TIM_OCMODE_FROZEN; |
||
294 | TIM_OC_InitStruct->OCState = LL_TIM_OCSTATE_DISABLE; |
||
295 | TIM_OC_InitStruct->CompareValue = 0x00000000U; |
||
296 | TIM_OC_InitStruct->OCPolarity = LL_TIM_OCPOLARITY_HIGH; |
||
297 | } |
||
298 | |||
299 | /** |
||
300 | * @brief Configure the TIMx output channel. |
||
301 | * @param TIMx Timer Instance |
||
302 | * @param Channel This parameter can be one of the following values: |
||
303 | * @arg @ref LL_TIM_CHANNEL_CH1 |
||
304 | * @arg @ref LL_TIM_CHANNEL_CH2 |
||
305 | * @arg @ref LL_TIM_CHANNEL_CH3 |
||
306 | * @arg @ref LL_TIM_CHANNEL_CH4 |
||
307 | * @param TIM_OC_InitStruct pointer to a @ref LL_TIM_OC_InitTypeDef structure (TIMx output channel configuration |
||
308 | * data structure) |
||
309 | * @retval An ErrorStatus enumeration value: |
||
310 | * - SUCCESS: TIMx output channel is initialized |
||
311 | * - ERROR: TIMx output channel is not initialized |
||
312 | */ |
||
313 | ErrorStatus LL_TIM_OC_Init(TIM_TypeDef *TIMx, uint32_t Channel, const LL_TIM_OC_InitTypeDef *TIM_OC_InitStruct) |
||
314 | { |
||
315 | ErrorStatus result = ERROR; |
||
316 | |||
317 | switch (Channel) |
||
318 | { |
||
319 | case LL_TIM_CHANNEL_CH1: |
||
320 | result = OC1Config(TIMx, TIM_OC_InitStruct); |
||
321 | break; |
||
322 | case LL_TIM_CHANNEL_CH2: |
||
323 | result = OC2Config(TIMx, TIM_OC_InitStruct); |
||
324 | break; |
||
325 | case LL_TIM_CHANNEL_CH3: |
||
326 | result = OC3Config(TIMx, TIM_OC_InitStruct); |
||
327 | break; |
||
328 | case LL_TIM_CHANNEL_CH4: |
||
329 | result = OC4Config(TIMx, TIM_OC_InitStruct); |
||
330 | break; |
||
331 | default: |
||
332 | break; |
||
333 | } |
||
334 | |||
335 | return result; |
||
336 | } |
||
337 | |||
338 | /** |
||
339 | * @brief Set the fields of the TIMx input channel configuration data |
||
340 | * structure to their default values. |
||
341 | * @param TIM_ICInitStruct pointer to a @ref LL_TIM_IC_InitTypeDef structure (the input channel configuration |
||
342 | * data structure) |
||
343 | * @retval None |
||
344 | */ |
||
345 | void LL_TIM_IC_StructInit(LL_TIM_IC_InitTypeDef *TIM_ICInitStruct) |
||
346 | { |
||
347 | /* Set the default configuration */ |
||
348 | TIM_ICInitStruct->ICPolarity = LL_TIM_IC_POLARITY_RISING; |
||
349 | TIM_ICInitStruct->ICActiveInput = LL_TIM_ACTIVEINPUT_DIRECTTI; |
||
350 | TIM_ICInitStruct->ICPrescaler = LL_TIM_ICPSC_DIV1; |
||
351 | TIM_ICInitStruct->ICFilter = LL_TIM_IC_FILTER_FDIV1; |
||
352 | } |
||
353 | |||
354 | /** |
||
355 | * @brief Configure the TIMx input channel. |
||
356 | * @param TIMx Timer Instance |
||
357 | * @param Channel This parameter can be one of the following values: |
||
358 | * @arg @ref LL_TIM_CHANNEL_CH1 |
||
359 | * @arg @ref LL_TIM_CHANNEL_CH2 |
||
360 | * @arg @ref LL_TIM_CHANNEL_CH3 |
||
361 | * @arg @ref LL_TIM_CHANNEL_CH4 |
||
362 | * @param TIM_IC_InitStruct pointer to a @ref LL_TIM_IC_InitTypeDef structure (TIMx input channel configuration data |
||
363 | * structure) |
||
364 | * @retval An ErrorStatus enumeration value: |
||
365 | * - SUCCESS: TIMx output channel is initialized |
||
366 | * - ERROR: TIMx output channel is not initialized |
||
367 | */ |
||
368 | ErrorStatus LL_TIM_IC_Init(TIM_TypeDef *TIMx, uint32_t Channel, const LL_TIM_IC_InitTypeDef *TIM_IC_InitStruct) |
||
369 | { |
||
370 | ErrorStatus result = ERROR; |
||
371 | |||
372 | switch (Channel) |
||
373 | { |
||
374 | case LL_TIM_CHANNEL_CH1: |
||
375 | result = IC1Config(TIMx, TIM_IC_InitStruct); |
||
376 | break; |
||
377 | case LL_TIM_CHANNEL_CH2: |
||
378 | result = IC2Config(TIMx, TIM_IC_InitStruct); |
||
379 | break; |
||
380 | case LL_TIM_CHANNEL_CH3: |
||
381 | result = IC3Config(TIMx, TIM_IC_InitStruct); |
||
382 | break; |
||
383 | case LL_TIM_CHANNEL_CH4: |
||
384 | result = IC4Config(TIMx, TIM_IC_InitStruct); |
||
385 | break; |
||
386 | default: |
||
387 | break; |
||
388 | } |
||
389 | |||
390 | return result; |
||
391 | } |
||
392 | |||
393 | /** |
||
394 | * @brief Fills each TIM_EncoderInitStruct field with its default value |
||
395 | * @param TIM_EncoderInitStruct pointer to a @ref LL_TIM_ENCODER_InitTypeDef structure (encoder interface |
||
396 | * configuration data structure) |
||
397 | * @retval None |
||
398 | */ |
||
399 | void LL_TIM_ENCODER_StructInit(LL_TIM_ENCODER_InitTypeDef *TIM_EncoderInitStruct) |
||
400 | { |
||
401 | /* Set the default configuration */ |
||
402 | TIM_EncoderInitStruct->EncoderMode = LL_TIM_ENCODERMODE_X2_TI1; |
||
403 | TIM_EncoderInitStruct->IC1Polarity = LL_TIM_IC_POLARITY_RISING; |
||
404 | TIM_EncoderInitStruct->IC1ActiveInput = LL_TIM_ACTIVEINPUT_DIRECTTI; |
||
405 | TIM_EncoderInitStruct->IC1Prescaler = LL_TIM_ICPSC_DIV1; |
||
406 | TIM_EncoderInitStruct->IC1Filter = LL_TIM_IC_FILTER_FDIV1; |
||
407 | TIM_EncoderInitStruct->IC2Polarity = LL_TIM_IC_POLARITY_RISING; |
||
408 | TIM_EncoderInitStruct->IC2ActiveInput = LL_TIM_ACTIVEINPUT_DIRECTTI; |
||
409 | TIM_EncoderInitStruct->IC2Prescaler = LL_TIM_ICPSC_DIV1; |
||
410 | TIM_EncoderInitStruct->IC2Filter = LL_TIM_IC_FILTER_FDIV1; |
||
411 | } |
||
412 | |||
413 | /** |
||
414 | * @brief Configure the encoder interface of the timer instance. |
||
415 | * @param TIMx Timer Instance |
||
416 | * @param TIM_EncoderInitStruct pointer to a @ref LL_TIM_ENCODER_InitTypeDef structure (TIMx encoder interface |
||
417 | * configuration data structure) |
||
418 | * @retval An ErrorStatus enumeration value: |
||
419 | * - SUCCESS: TIMx registers are de-initialized |
||
420 | * - ERROR: not applicable |
||
421 | */ |
||
422 | ErrorStatus LL_TIM_ENCODER_Init(TIM_TypeDef *TIMx, const LL_TIM_ENCODER_InitTypeDef *TIM_EncoderInitStruct) |
||
423 | { |
||
424 | uint32_t tmpccmr1; |
||
425 | uint32_t tmpccer; |
||
426 | |||
427 | /* Check the parameters */ |
||
428 | assert_param(IS_TIM_ENCODER_INTERFACE_INSTANCE(TIMx)); |
||
429 | assert_param(IS_LL_TIM_ENCODERMODE(TIM_EncoderInitStruct->EncoderMode)); |
||
430 | assert_param(IS_LL_TIM_IC_POLARITY_ENCODER(TIM_EncoderInitStruct->IC1Polarity)); |
||
431 | assert_param(IS_LL_TIM_ACTIVEINPUT(TIM_EncoderInitStruct->IC1ActiveInput)); |
||
432 | assert_param(IS_LL_TIM_ICPSC(TIM_EncoderInitStruct->IC1Prescaler)); |
||
433 | assert_param(IS_LL_TIM_IC_FILTER(TIM_EncoderInitStruct->IC1Filter)); |
||
434 | assert_param(IS_LL_TIM_IC_POLARITY_ENCODER(TIM_EncoderInitStruct->IC2Polarity)); |
||
435 | assert_param(IS_LL_TIM_ACTIVEINPUT(TIM_EncoderInitStruct->IC2ActiveInput)); |
||
436 | assert_param(IS_LL_TIM_ICPSC(TIM_EncoderInitStruct->IC2Prescaler)); |
||
437 | assert_param(IS_LL_TIM_IC_FILTER(TIM_EncoderInitStruct->IC2Filter)); |
||
438 | |||
439 | /* Disable the CC1 and CC2: Reset the CC1E and CC2E Bits */ |
||
440 | TIMx->CCER &= (uint32_t)~(TIM_CCER_CC1E | TIM_CCER_CC2E); |
||
441 | |||
442 | /* Get the TIMx CCMR1 register value */ |
||
443 | tmpccmr1 = LL_TIM_ReadReg(TIMx, CCMR1); |
||
444 | |||
445 | /* Get the TIMx CCER register value */ |
||
446 | tmpccer = LL_TIM_ReadReg(TIMx, CCER); |
||
447 | |||
448 | /* Configure TI1 */ |
||
449 | tmpccmr1 &= (uint32_t)~(TIM_CCMR1_CC1S | TIM_CCMR1_IC1F | TIM_CCMR1_IC1PSC); |
||
450 | tmpccmr1 |= (uint32_t)(TIM_EncoderInitStruct->IC1ActiveInput >> 16U); |
||
451 | tmpccmr1 |= (uint32_t)(TIM_EncoderInitStruct->IC1Filter >> 16U); |
||
452 | tmpccmr1 |= (uint32_t)(TIM_EncoderInitStruct->IC1Prescaler >> 16U); |
||
453 | |||
454 | /* Configure TI2 */ |
||
455 | tmpccmr1 &= (uint32_t)~(TIM_CCMR1_CC2S | TIM_CCMR1_IC2F | TIM_CCMR1_IC2PSC); |
||
456 | tmpccmr1 |= (uint32_t)(TIM_EncoderInitStruct->IC2ActiveInput >> 8U); |
||
457 | tmpccmr1 |= (uint32_t)(TIM_EncoderInitStruct->IC2Filter >> 8U); |
||
458 | tmpccmr1 |= (uint32_t)(TIM_EncoderInitStruct->IC2Prescaler >> 8U); |
||
459 | |||
460 | /* Set TI1 and TI2 polarity and enable TI1 and TI2 */ |
||
461 | tmpccer &= (uint32_t)~(TIM_CCER_CC1P | TIM_CCER_CC1NP | TIM_CCER_CC2P | TIM_CCER_CC2NP); |
||
462 | tmpccer |= (uint32_t)(TIM_EncoderInitStruct->IC1Polarity); |
||
463 | tmpccer |= (uint32_t)(TIM_EncoderInitStruct->IC2Polarity << 4U); |
||
464 | tmpccer |= (uint32_t)(TIM_CCER_CC1E | TIM_CCER_CC2E); |
||
465 | |||
466 | /* Set encoder mode */ |
||
467 | LL_TIM_SetEncoderMode(TIMx, TIM_EncoderInitStruct->EncoderMode); |
||
468 | |||
469 | /* Write to TIMx CCMR1 */ |
||
470 | LL_TIM_WriteReg(TIMx, CCMR1, tmpccmr1); |
||
471 | |||
472 | /* Write to TIMx CCER */ |
||
473 | LL_TIM_WriteReg(TIMx, CCER, tmpccer); |
||
474 | |||
475 | return SUCCESS; |
||
476 | } |
||
477 | |||
478 | /** |
||
479 | * @} |
||
480 | */ |
||
481 | |||
482 | /** |
||
483 | * @} |
||
484 | */ |
||
485 | |||
486 | /** @addtogroup TIM_LL_Private_Functions TIM Private Functions |
||
487 | * @brief Private functions |
||
488 | * @{ |
||
489 | */ |
||
490 | /** |
||
491 | * @brief Configure the TIMx output channel 1. |
||
492 | * @param TIMx Timer Instance |
||
493 | * @param TIM_OCInitStruct pointer to the the TIMx output channel 1 configuration data structure |
||
494 | * @retval An ErrorStatus enumeration value: |
||
495 | * - SUCCESS: TIMx registers are de-initialized |
||
496 | * - ERROR: not applicable |
||
497 | */ |
||
498 | static ErrorStatus OC1Config(TIM_TypeDef *TIMx, const LL_TIM_OC_InitTypeDef *TIM_OCInitStruct) |
||
499 | { |
||
500 | uint32_t tmpccmr1; |
||
501 | uint32_t tmpccer; |
||
502 | uint32_t tmpcr2; |
||
503 | |||
504 | /* Check the parameters */ |
||
505 | assert_param(IS_TIM_CC1_INSTANCE(TIMx)); |
||
506 | assert_param(IS_LL_TIM_OCMODE(TIM_OCInitStruct->OCMode)); |
||
507 | assert_param(IS_LL_TIM_OCSTATE(TIM_OCInitStruct->OCState)); |
||
508 | assert_param(IS_LL_TIM_OCPOLARITY(TIM_OCInitStruct->OCPolarity)); |
||
509 | |||
510 | /* Disable the Channel 1: Reset the CC1E Bit */ |
||
511 | CLEAR_BIT(TIMx->CCER, TIM_CCER_CC1E); |
||
512 | |||
513 | /* Get the TIMx CCER register value */ |
||
514 | tmpccer = LL_TIM_ReadReg(TIMx, CCER); |
||
515 | |||
516 | /* Get the TIMx CR2 register value */ |
||
517 | tmpcr2 = LL_TIM_ReadReg(TIMx, CR2); |
||
518 | |||
519 | /* Get the TIMx CCMR1 register value */ |
||
520 | tmpccmr1 = LL_TIM_ReadReg(TIMx, CCMR1); |
||
521 | |||
522 | /* Reset Capture/Compare selection Bits */ |
||
523 | CLEAR_BIT(tmpccmr1, TIM_CCMR1_CC1S); |
||
524 | |||
525 | /* Set the Output Compare Mode */ |
||
526 | MODIFY_REG(tmpccmr1, TIM_CCMR1_OC1M, TIM_OCInitStruct->OCMode); |
||
527 | |||
528 | /* Set the Output Compare Polarity */ |
||
529 | MODIFY_REG(tmpccer, TIM_CCER_CC1P, TIM_OCInitStruct->OCPolarity); |
||
530 | |||
531 | /* Set the Output State */ |
||
532 | MODIFY_REG(tmpccer, TIM_CCER_CC1E, TIM_OCInitStruct->OCState); |
||
533 | |||
534 | /* Write to TIMx CR2 */ |
||
535 | LL_TIM_WriteReg(TIMx, CR2, tmpcr2); |
||
536 | |||
537 | /* Write to TIMx CCMR1 */ |
||
538 | LL_TIM_WriteReg(TIMx, CCMR1, tmpccmr1); |
||
539 | |||
540 | /* Set the Capture Compare Register value */ |
||
541 | LL_TIM_OC_SetCompareCH1(TIMx, TIM_OCInitStruct->CompareValue); |
||
542 | |||
543 | /* Write to TIMx CCER */ |
||
544 | LL_TIM_WriteReg(TIMx, CCER, tmpccer); |
||
545 | |||
546 | return SUCCESS; |
||
547 | } |
||
548 | |||
549 | /** |
||
550 | * @brief Configure the TIMx output channel 2. |
||
551 | * @param TIMx Timer Instance |
||
552 | * @param TIM_OCInitStruct pointer to the the TIMx output channel 2 configuration data structure |
||
553 | * @retval An ErrorStatus enumeration value: |
||
554 | * - SUCCESS: TIMx registers are de-initialized |
||
555 | * - ERROR: not applicable |
||
556 | */ |
||
557 | static ErrorStatus OC2Config(TIM_TypeDef *TIMx, const LL_TIM_OC_InitTypeDef *TIM_OCInitStruct) |
||
558 | { |
||
559 | uint32_t tmpccmr1; |
||
560 | uint32_t tmpccer; |
||
561 | uint32_t tmpcr2; |
||
562 | |||
563 | /* Check the parameters */ |
||
564 | assert_param(IS_TIM_CC2_INSTANCE(TIMx)); |
||
565 | assert_param(IS_LL_TIM_OCMODE(TIM_OCInitStruct->OCMode)); |
||
566 | assert_param(IS_LL_TIM_OCSTATE(TIM_OCInitStruct->OCState)); |
||
567 | assert_param(IS_LL_TIM_OCPOLARITY(TIM_OCInitStruct->OCPolarity)); |
||
568 | |||
569 | /* Disable the Channel 2: Reset the CC2E Bit */ |
||
570 | CLEAR_BIT(TIMx->CCER, TIM_CCER_CC2E); |
||
571 | |||
572 | /* Get the TIMx CCER register value */ |
||
573 | tmpccer = LL_TIM_ReadReg(TIMx, CCER); |
||
574 | |||
575 | /* Get the TIMx CR2 register value */ |
||
576 | tmpcr2 = LL_TIM_ReadReg(TIMx, CR2); |
||
577 | |||
578 | /* Get the TIMx CCMR1 register value */ |
||
579 | tmpccmr1 = LL_TIM_ReadReg(TIMx, CCMR1); |
||
580 | |||
581 | /* Reset Capture/Compare selection Bits */ |
||
582 | CLEAR_BIT(tmpccmr1, TIM_CCMR1_CC2S); |
||
583 | |||
584 | /* Select the Output Compare Mode */ |
||
585 | MODIFY_REG(tmpccmr1, TIM_CCMR1_OC2M, TIM_OCInitStruct->OCMode << 8U); |
||
586 | |||
587 | /* Set the Output Compare Polarity */ |
||
588 | MODIFY_REG(tmpccer, TIM_CCER_CC2P, TIM_OCInitStruct->OCPolarity << 4U); |
||
589 | |||
590 | /* Set the Output State */ |
||
591 | MODIFY_REG(tmpccer, TIM_CCER_CC2E, TIM_OCInitStruct->OCState << 4U); |
||
592 | |||
593 | /* Write to TIMx CR2 */ |
||
594 | LL_TIM_WriteReg(TIMx, CR2, tmpcr2); |
||
595 | |||
596 | /* Write to TIMx CCMR1 */ |
||
597 | LL_TIM_WriteReg(TIMx, CCMR1, tmpccmr1); |
||
598 | |||
599 | /* Set the Capture Compare Register value */ |
||
600 | LL_TIM_OC_SetCompareCH2(TIMx, TIM_OCInitStruct->CompareValue); |
||
601 | |||
602 | /* Write to TIMx CCER */ |
||
603 | LL_TIM_WriteReg(TIMx, CCER, tmpccer); |
||
604 | |||
605 | return SUCCESS; |
||
606 | } |
||
607 | |||
608 | /** |
||
609 | * @brief Configure the TIMx output channel 3. |
||
610 | * @param TIMx Timer Instance |
||
611 | * @param TIM_OCInitStruct pointer to the the TIMx output channel 3 configuration data structure |
||
612 | * @retval An ErrorStatus enumeration value: |
||
613 | * - SUCCESS: TIMx registers are de-initialized |
||
614 | * - ERROR: not applicable |
||
615 | */ |
||
616 | static ErrorStatus OC3Config(TIM_TypeDef *TIMx, const LL_TIM_OC_InitTypeDef *TIM_OCInitStruct) |
||
617 | { |
||
618 | uint32_t tmpccmr2; |
||
619 | uint32_t tmpccer; |
||
620 | uint32_t tmpcr2; |
||
621 | |||
622 | /* Check the parameters */ |
||
623 | assert_param(IS_TIM_CC3_INSTANCE(TIMx)); |
||
624 | assert_param(IS_LL_TIM_OCMODE(TIM_OCInitStruct->OCMode)); |
||
625 | assert_param(IS_LL_TIM_OCSTATE(TIM_OCInitStruct->OCState)); |
||
626 | assert_param(IS_LL_TIM_OCPOLARITY(TIM_OCInitStruct->OCPolarity)); |
||
627 | |||
628 | /* Disable the Channel 3: Reset the CC3E Bit */ |
||
629 | CLEAR_BIT(TIMx->CCER, TIM_CCER_CC3E); |
||
630 | |||
631 | /* Get the TIMx CCER register value */ |
||
632 | tmpccer = LL_TIM_ReadReg(TIMx, CCER); |
||
633 | |||
634 | /* Get the TIMx CR2 register value */ |
||
635 | tmpcr2 = LL_TIM_ReadReg(TIMx, CR2); |
||
636 | |||
637 | /* Get the TIMx CCMR2 register value */ |
||
638 | tmpccmr2 = LL_TIM_ReadReg(TIMx, CCMR2); |
||
639 | |||
640 | /* Reset Capture/Compare selection Bits */ |
||
641 | CLEAR_BIT(tmpccmr2, TIM_CCMR2_CC3S); |
||
642 | |||
643 | /* Select the Output Compare Mode */ |
||
644 | MODIFY_REG(tmpccmr2, TIM_CCMR2_OC3M, TIM_OCInitStruct->OCMode); |
||
645 | |||
646 | /* Set the Output Compare Polarity */ |
||
647 | MODIFY_REG(tmpccer, TIM_CCER_CC3P, TIM_OCInitStruct->OCPolarity << 8U); |
||
648 | |||
649 | /* Set the Output State */ |
||
650 | MODIFY_REG(tmpccer, TIM_CCER_CC3E, TIM_OCInitStruct->OCState << 8U); |
||
651 | |||
652 | /* Write to TIMx CR2 */ |
||
653 | LL_TIM_WriteReg(TIMx, CR2, tmpcr2); |
||
654 | |||
655 | /* Write to TIMx CCMR2 */ |
||
656 | LL_TIM_WriteReg(TIMx, CCMR2, tmpccmr2); |
||
657 | |||
658 | /* Set the Capture Compare Register value */ |
||
659 | LL_TIM_OC_SetCompareCH3(TIMx, TIM_OCInitStruct->CompareValue); |
||
660 | |||
661 | /* Write to TIMx CCER */ |
||
662 | LL_TIM_WriteReg(TIMx, CCER, tmpccer); |
||
663 | |||
664 | return SUCCESS; |
||
665 | } |
||
666 | |||
667 | /** |
||
668 | * @brief Configure the TIMx output channel 4. |
||
669 | * @param TIMx Timer Instance |
||
670 | * @param TIM_OCInitStruct pointer to the the TIMx output channel 4 configuration data structure |
||
671 | * @retval An ErrorStatus enumeration value: |
||
672 | * - SUCCESS: TIMx registers are de-initialized |
||
673 | * - ERROR: not applicable |
||
674 | */ |
||
675 | static ErrorStatus OC4Config(TIM_TypeDef *TIMx, const LL_TIM_OC_InitTypeDef *TIM_OCInitStruct) |
||
676 | { |
||
677 | uint32_t tmpccmr2; |
||
678 | uint32_t tmpccer; |
||
679 | uint32_t tmpcr2; |
||
680 | |||
681 | /* Check the parameters */ |
||
682 | assert_param(IS_TIM_CC4_INSTANCE(TIMx)); |
||
683 | assert_param(IS_LL_TIM_OCMODE(TIM_OCInitStruct->OCMode)); |
||
684 | assert_param(IS_LL_TIM_OCSTATE(TIM_OCInitStruct->OCState)); |
||
685 | assert_param(IS_LL_TIM_OCPOLARITY(TIM_OCInitStruct->OCPolarity)); |
||
686 | |||
687 | /* Disable the Channel 4: Reset the CC4E Bit */ |
||
688 | CLEAR_BIT(TIMx->CCER, TIM_CCER_CC4E); |
||
689 | |||
690 | /* Get the TIMx CCER register value */ |
||
691 | tmpccer = LL_TIM_ReadReg(TIMx, CCER); |
||
692 | |||
693 | /* Get the TIMx CR2 register value */ |
||
694 | tmpcr2 = LL_TIM_ReadReg(TIMx, CR2); |
||
695 | |||
696 | /* Get the TIMx CCMR2 register value */ |
||
697 | tmpccmr2 = LL_TIM_ReadReg(TIMx, CCMR2); |
||
698 | |||
699 | /* Reset Capture/Compare selection Bits */ |
||
700 | CLEAR_BIT(tmpccmr2, TIM_CCMR2_CC4S); |
||
701 | |||
702 | /* Select the Output Compare Mode */ |
||
703 | MODIFY_REG(tmpccmr2, TIM_CCMR2_OC4M, TIM_OCInitStruct->OCMode << 8U); |
||
704 | |||
705 | /* Set the Output Compare Polarity */ |
||
706 | MODIFY_REG(tmpccer, TIM_CCER_CC4P, TIM_OCInitStruct->OCPolarity << 12U); |
||
707 | |||
708 | /* Set the Output State */ |
||
709 | MODIFY_REG(tmpccer, TIM_CCER_CC4E, TIM_OCInitStruct->OCState << 12U); |
||
710 | |||
711 | /* Write to TIMx CR2 */ |
||
712 | LL_TIM_WriteReg(TIMx, CR2, tmpcr2); |
||
713 | |||
714 | /* Write to TIMx CCMR2 */ |
||
715 | LL_TIM_WriteReg(TIMx, CCMR2, tmpccmr2); |
||
716 | |||
717 | /* Set the Capture Compare Register value */ |
||
718 | LL_TIM_OC_SetCompareCH4(TIMx, TIM_OCInitStruct->CompareValue); |
||
719 | |||
720 | /* Write to TIMx CCER */ |
||
721 | LL_TIM_WriteReg(TIMx, CCER, tmpccer); |
||
722 | |||
723 | return SUCCESS; |
||
724 | } |
||
725 | |||
726 | |||
727 | /** |
||
728 | * @brief Configure the TIMx input channel 1. |
||
729 | * @param TIMx Timer Instance |
||
730 | * @param TIM_ICInitStruct pointer to the the TIMx input channel 1 configuration data structure |
||
731 | * @retval An ErrorStatus enumeration value: |
||
732 | * - SUCCESS: TIMx registers are de-initialized |
||
733 | * - ERROR: not applicable |
||
734 | */ |
||
735 | static ErrorStatus IC1Config(TIM_TypeDef *TIMx, const LL_TIM_IC_InitTypeDef *TIM_ICInitStruct) |
||
736 | { |
||
737 | /* Check the parameters */ |
||
738 | assert_param(IS_TIM_CC1_INSTANCE(TIMx)); |
||
739 | assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); |
||
740 | assert_param(IS_LL_TIM_ACTIVEINPUT(TIM_ICInitStruct->ICActiveInput)); |
||
741 | assert_param(IS_LL_TIM_ICPSC(TIM_ICInitStruct->ICPrescaler)); |
||
742 | assert_param(IS_LL_TIM_IC_FILTER(TIM_ICInitStruct->ICFilter)); |
||
743 | |||
744 | /* Disable the Channel 1: Reset the CC1E Bit */ |
||
745 | TIMx->CCER &= (uint32_t)~TIM_CCER_CC1E; |
||
746 | |||
747 | /* Select the Input and set the filter and the prescaler value */ |
||
748 | MODIFY_REG(TIMx->CCMR1, |
||
749 | (TIM_CCMR1_CC1S | TIM_CCMR1_IC1F | TIM_CCMR1_IC1PSC), |
||
750 | (TIM_ICInitStruct->ICActiveInput | TIM_ICInitStruct->ICFilter | TIM_ICInitStruct->ICPrescaler) >> 16U); |
||
751 | |||
752 | /* Select the Polarity and set the CC1E Bit */ |
||
753 | MODIFY_REG(TIMx->CCER, |
||
754 | (TIM_CCER_CC1P | TIM_CCER_CC1NP), |
||
755 | (TIM_ICInitStruct->ICPolarity | TIM_CCER_CC1E)); |
||
756 | |||
757 | return SUCCESS; |
||
758 | } |
||
759 | |||
760 | /** |
||
761 | * @brief Configure the TIMx input channel 2. |
||
762 | * @param TIMx Timer Instance |
||
763 | * @param TIM_ICInitStruct pointer to the the TIMx input channel 2 configuration data structure |
||
764 | * @retval An ErrorStatus enumeration value: |
||
765 | * - SUCCESS: TIMx registers are de-initialized |
||
766 | * - ERROR: not applicable |
||
767 | */ |
||
768 | static ErrorStatus IC2Config(TIM_TypeDef *TIMx, const LL_TIM_IC_InitTypeDef *TIM_ICInitStruct) |
||
769 | { |
||
770 | /* Check the parameters */ |
||
771 | assert_param(IS_TIM_CC2_INSTANCE(TIMx)); |
||
772 | assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); |
||
773 | assert_param(IS_LL_TIM_ACTIVEINPUT(TIM_ICInitStruct->ICActiveInput)); |
||
774 | assert_param(IS_LL_TIM_ICPSC(TIM_ICInitStruct->ICPrescaler)); |
||
775 | assert_param(IS_LL_TIM_IC_FILTER(TIM_ICInitStruct->ICFilter)); |
||
776 | |||
777 | /* Disable the Channel 2: Reset the CC2E Bit */ |
||
778 | TIMx->CCER &= (uint32_t)~TIM_CCER_CC2E; |
||
779 | |||
780 | /* Select the Input and set the filter and the prescaler value */ |
||
781 | MODIFY_REG(TIMx->CCMR1, |
||
782 | (TIM_CCMR1_CC2S | TIM_CCMR1_IC2F | TIM_CCMR1_IC2PSC), |
||
783 | (TIM_ICInitStruct->ICActiveInput | TIM_ICInitStruct->ICFilter | TIM_ICInitStruct->ICPrescaler) >> 8U); |
||
784 | |||
785 | /* Select the Polarity and set the CC2E Bit */ |
||
786 | MODIFY_REG(TIMx->CCER, |
||
787 | (TIM_CCER_CC2P | TIM_CCER_CC2NP), |
||
788 | ((TIM_ICInitStruct->ICPolarity << 4U) | TIM_CCER_CC2E)); |
||
789 | |||
790 | return SUCCESS; |
||
791 | } |
||
792 | |||
793 | /** |
||
794 | * @brief Configure the TIMx input channel 3. |
||
795 | * @param TIMx Timer Instance |
||
796 | * @param TIM_ICInitStruct pointer to the the TIMx input channel 3 configuration data structure |
||
797 | * @retval An ErrorStatus enumeration value: |
||
798 | * - SUCCESS: TIMx registers are de-initialized |
||
799 | * - ERROR: not applicable |
||
800 | */ |
||
801 | static ErrorStatus IC3Config(TIM_TypeDef *TIMx, const LL_TIM_IC_InitTypeDef *TIM_ICInitStruct) |
||
802 | { |
||
803 | /* Check the parameters */ |
||
804 | assert_param(IS_TIM_CC3_INSTANCE(TIMx)); |
||
805 | assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); |
||
806 | assert_param(IS_LL_TIM_ACTIVEINPUT(TIM_ICInitStruct->ICActiveInput)); |
||
807 | assert_param(IS_LL_TIM_ICPSC(TIM_ICInitStruct->ICPrescaler)); |
||
808 | assert_param(IS_LL_TIM_IC_FILTER(TIM_ICInitStruct->ICFilter)); |
||
809 | |||
810 | /* Disable the Channel 3: Reset the CC3E Bit */ |
||
811 | TIMx->CCER &= (uint32_t)~TIM_CCER_CC3E; |
||
812 | |||
813 | /* Select the Input and set the filter and the prescaler value */ |
||
814 | MODIFY_REG(TIMx->CCMR2, |
||
815 | (TIM_CCMR2_CC3S | TIM_CCMR2_IC3F | TIM_CCMR2_IC3PSC), |
||
816 | (TIM_ICInitStruct->ICActiveInput | TIM_ICInitStruct->ICFilter | TIM_ICInitStruct->ICPrescaler) >> 16U); |
||
817 | |||
818 | /* Select the Polarity and set the CC3E Bit */ |
||
819 | MODIFY_REG(TIMx->CCER, |
||
820 | (TIM_CCER_CC3P | TIM_CCER_CC3NP), |
||
821 | ((TIM_ICInitStruct->ICPolarity << 8U) | TIM_CCER_CC3E)); |
||
822 | |||
823 | return SUCCESS; |
||
824 | } |
||
825 | |||
826 | /** |
||
827 | * @brief Configure the TIMx input channel 4. |
||
828 | * @param TIMx Timer Instance |
||
829 | * @param TIM_ICInitStruct pointer to the the TIMx input channel 4 configuration data structure |
||
830 | * @retval An ErrorStatus enumeration value: |
||
831 | * - SUCCESS: TIMx registers are de-initialized |
||
832 | * - ERROR: not applicable |
||
833 | */ |
||
834 | static ErrorStatus IC4Config(TIM_TypeDef *TIMx, const LL_TIM_IC_InitTypeDef *TIM_ICInitStruct) |
||
835 | { |
||
836 | /* Check the parameters */ |
||
837 | assert_param(IS_TIM_CC4_INSTANCE(TIMx)); |
||
838 | assert_param(IS_LL_TIM_IC_POLARITY(TIM_ICInitStruct->ICPolarity)); |
||
839 | assert_param(IS_LL_TIM_ACTIVEINPUT(TIM_ICInitStruct->ICActiveInput)); |
||
840 | assert_param(IS_LL_TIM_ICPSC(TIM_ICInitStruct->ICPrescaler)); |
||
841 | assert_param(IS_LL_TIM_IC_FILTER(TIM_ICInitStruct->ICFilter)); |
||
842 | |||
843 | /* Disable the Channel 4: Reset the CC4E Bit */ |
||
844 | TIMx->CCER &= (uint32_t)~TIM_CCER_CC4E; |
||
845 | |||
846 | /* Select the Input and set the filter and the prescaler value */ |
||
847 | MODIFY_REG(TIMx->CCMR2, |
||
848 | (TIM_CCMR2_CC4S | TIM_CCMR2_IC4F | TIM_CCMR2_IC4PSC), |
||
849 | (TIM_ICInitStruct->ICActiveInput | TIM_ICInitStruct->ICFilter | TIM_ICInitStruct->ICPrescaler) >> 8U); |
||
850 | |||
851 | /* Select the Polarity and set the CC2E Bit */ |
||
852 | MODIFY_REG(TIMx->CCER, |
||
853 | (TIM_CCER_CC4P | TIM_CCER_CC4NP), |
||
854 | ((TIM_ICInitStruct->ICPolarity << 12U) | TIM_CCER_CC4E)); |
||
855 | |||
856 | return SUCCESS; |
||
857 | } |
||
858 | |||
859 | |||
860 | /** |
||
861 | * @} |
||
862 | */ |
||
863 | |||
864 | /** |
||
865 | * @} |
||
866 | */ |
||
867 | |||
868 | #endif /* TIM2 || TIM3 || TIM4 || TIM5 || TIM9 || TIM10 || TIM11 TIM6 || TIM7 */ |
||
869 | |||
870 | /** |
||
871 | * @} |
||
872 | */ |
||
873 | |||
874 | #endif /* USE_FULL_LL_DRIVER */ |
||
875 |