summaryrefslogtreecommitdiff
path: root/Libraries/TouchSense/STMTouch_Driver/src/tsl_time_stm8l.c
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2023-03-05 20:20:45 +0300
committerOxore <oxore@protonmail.com>2023-03-05 20:20:45 +0300
commitea807de65b0485ac58b6eae576209c64d4d5c4e9 (patch)
treeb4264d20e1d700cfd9e0ece9d847a825dd1dfc03 /Libraries/TouchSense/STMTouch_Driver/src/tsl_time_stm8l.c
parentdd01e7ed22cea652061f0d12cecf929e04b285e9 (diff)
Split app code and third party libraries
Diffstat (limited to 'Libraries/TouchSense/STMTouch_Driver/src/tsl_time_stm8l.c')
-rw-r--r--Libraries/TouchSense/STMTouch_Driver/src/tsl_time_stm8l.c108
1 files changed, 0 insertions, 108 deletions
diff --git a/Libraries/TouchSense/STMTouch_Driver/src/tsl_time_stm8l.c b/Libraries/TouchSense/STMTouch_Driver/src/tsl_time_stm8l.c
deleted file mode 100644
index 06904eb..0000000
--- a/Libraries/TouchSense/STMTouch_Driver/src/tsl_time_stm8l.c
+++ /dev/null
@@ -1,108 +0,0 @@
-/**
- ******************************************************************************
- * @file tsl_time_stm8l.c
- * @author MCD Application Team
- * @version V1.4.4
- * @date 31-March-2014
- * @brief This file contains all functions to manage the timing with STM8L products.
- ******************************************************************************
- * @attention
- *
- * <h2><center>&copy; COPYRIGHT 2014 STMicroelectronics</center></h2>
- *
- * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
- * You may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * http://www.st.com/software_license_agreement_liberty_v2
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- ******************************************************************************
- */
-
-/* Includes ------------------------------------------------------------------*/
-#include "tsl_time_stm8l.h"
-#include "tsl_time.h"
-
-/* Private typedefs ----------------------------------------------------------*/
-/* Private defines -----------------------------------------------------------*/
-/* Private macros ------------------------------------------------------------*/
-/* Private variables ---------------------------------------------------------*/
-/* Private functions prototype -----------------------------------------------*/
-
-
-/**
- * @brief Initialization of the timing module.
- * @param None
- * @retval Status Return TSL_STATUS_ERROR if the clock divider is wrong
- */
-TSL_Status_enum_T TSL_tim_Init(void)
-{
- // Enable TIM4 clock
-#if defined(STM8L10X)
- CLK->PCKENR |= CLK_PCKENR_TIM4;
-#else // STM8L15X
- CLK->PCKENR1 |= CLK_PCKENR1_TIM4;
-#endif
-
- if (CLK->CKDIVR != 0x00) // Warning: The CPU frequency must be equal to 16 MHz
- {
- return TSL_STATUS_ERROR;
- }
-
- TIM4->SR1 = 0; // Clear overflow flag
-
-#if (TSLPRM_TICK_FREQ == 2000)
- TIM4->PSCR = 6; // 16 MHz / 64 = 4 us clock
- TIM4->ARR = 124; // 125 * 4 us = 0.5 ms
-#endif
-
-#if (TSLPRM_TICK_FREQ == 1000)
- TIM4->PSCR = 6; // 16 MHz / 64 = 4 us clock
- TIM4->ARR = 249; // 250 * 4 us = 1 ms
-#endif
-
-#if (TSLPRM_TICK_FREQ == 500)
- TIM4->PSCR = 8; // 16 MHz / 256 = 16 us clock
- TIM4->ARR = 124; // 125 * 16 us = 2 ms
-#endif
-
-#if (TSLPRM_TICK_FREQ == 250)
- TIM4->PSCR = 8; // 16 MHz / 256 = 16 us clock
- TIM4->ARR = 249; // 250 * 16 us = 4 ms
-#endif
-
-#if (TSLPRM_TICK_FREQ == 125)
- TIM4->PSCR = 10; // 16 MHz / 1024 = 64 us clock
- TIM4->ARR = 124; // 125 * 64 us = 8 ms
-#endif
-
- TIM4->IER = 0x01; // Enable interrupt
- TIM4->CR1 = 0x01; // Start timer
-
- return TSL_STATUS_OK;
-}
-
-
-/**
- * @brief Interrupt handler for TIM4 dedicated to ECS
- * @param None
- * @retval None
- */
-#if defined(_COSMIC_)
-// 'svlreg option' is added to force the saving of the virtual long register
-@svlreg INTERRUPT_HANDLER(TSL_Timer_ISR, 25)
-#else
-INTERRUPT_HANDLER(TSL_Timer_ISR, 25)
-#endif
-{
- TIM4->SR1 &= (uint8_t)(~TIM4_SR1_UIF);
- TSL_tim_ProcessIT();
-}
-
-/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/