/* Copyright 2016 - 2021 Benjamin Vedder benjamin@vedder.se This file is part of the VESC firmware. The VESC firmware is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. The VESC firmware is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include "servo_simple.h" #include "ch.h" #include "hal.h" #include "conf_general.h" #include "stm32f4xx_conf.h" #include "utils.h" /** * TODO: Use the chibios driver instead of the ST-driver. */ // Settings #define TIM_CLOCK 1000000 // Hz // Private variables static volatile bool m_is_running = false; void servo_simple_init(void) { TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure; TIM_OCInitTypeDef TIM_OCInitStructure; palSetPadMode(HW_ICU_GPIO, HW_ICU_PIN, PAL_MODE_ALTERNATE(HW_ICU_GPIO_AF) | PAL_STM32_OSPEED_HIGHEST | PAL_STM32_PUDR_FLOATING); HW_ICU_TIM_CLK_EN(); TIM_TimeBaseStructure.TIM_Period = (uint16_t)((uint32_t)TIM_CLOCK / (uint32_t)SERVO_OUT_RATE_HZ); TIM_TimeBaseStructure.TIM_Prescaler = (uint16_t)((168000000 / 2) / TIM_CLOCK) - 1; TIM_TimeBaseStructure.TIM_ClockDivision = 0; TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up; TIM_TimeBaseInit(HW_ICU_TIMER, &TIM_TimeBaseStructure); TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1; TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable; TIM_OCInitStructure.TIM_Pulse = 0; TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High; if (HW_ICU_CHANNEL == ICU_CHANNEL_1) { TIM_OC1Init(HW_ICU_TIMER, &TIM_OCInitStructure); TIM_OC1PreloadConfig(HW_ICU_TIMER, TIM_OCPreload_Enable); } else if (HW_ICU_CHANNEL == ICU_CHANNEL_2) { TIM_OC2Init(HW_ICU_TIMER, &TIM_OCInitStructure); TIM_OC2PreloadConfig(HW_ICU_TIMER, TIM_OCPreload_Enable); } TIM_ARRPreloadConfig(HW_ICU_TIMER, ENABLE); servo_simple_set_output(0.5); TIM_Cmd(HW_ICU_TIMER, ENABLE); m_is_running = true; } void servo_simple_stop(void) { if (m_is_running) { palSetPadMode(HW_ICU_GPIO, HW_ICU_PIN, PAL_MODE_INPUT); TIM_Cmd(HW_ICU_TIMER, DISABLE); TIM_DeInit(HW_ICU_TIMER); m_is_running = false; } } bool servo_simple_is_running(void) { return m_is_running; } void servo_simple_set_output(float out) { if (!m_is_running) { return; } utils_truncate_number(&out, 0.0, 1.0); float us = (float)SERVO_OUT_PULSE_MIN_US + out * (float)(SERVO_OUT_PULSE_MAX_US - SERVO_OUT_PULSE_MIN_US); us *= (float)TIM_CLOCK / 1000000.0; if (HW_ICU_CHANNEL == ICU_CHANNEL_1) { HW_ICU_TIMER->CCR1 = (uint32_t)us; } else if (HW_ICU_CHANNEL == ICU_CHANNEL_2) { HW_ICU_TIMER->CCR2 = (uint32_t)us; } }