/* * Xytronic LF-1600 * Current PWM * * Copyright (c) 2015-2017 Michael Buesch * * This program 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 2 of the License, or * (at your option) any later version. * * This program 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, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "pwm_current.h" #include "scale.h" #include "controller_current.h" #include "util.h" #include /* The max duty value (which actually is min current). * Note that changing this changes the PWM frequency. */ #define PWMCURR_MAX_DUTY 0x1FFF void pwmcurr_set(fixpt_t current_amps) { uint16_t duty; /* Scale amps to duty cycle duration. * Scaling is inverse: * 0 -> full current * pwm-max -> no current */ duty = (uint16_t)unscale(current_amps, float_to_fixpt(CONTRCURR_NEGLIM), float_to_fixpt(CONTRCURR_POSLIM), (int16_t)PWMCURR_MAX_DUTY, 0); /* Program the hardware */ OCR1A = duty; } void pwmcurr_init(void) { build_assert(F_CPU == 8000000UL); /* Configure the port as output; high level. */ PORTB |= (1 << PB1); DDRB |= (1 << DDB1); /* Set frequency and initial duty cycle. */ ICR1 = (uint16_t)PWMCURR_MAX_DUTY; OCR1A = (uint16_t)PWMCURR_MAX_DUTY; /* Enable timer: Fast PWM (Mode 14), OC1A clr/set, PS 256 */ TCCR1A = (1 << COM1A1) | (0 << COM1A0) | (0 << COM1B1) | (0 << COM1B0) | (1 << WGM11) | (0 << WGM10); TCCR1C = 0; TCCR1B = (1 << WGM13) | (1 << WGM12) | (1 << CS12) | (0 << CS11) | (0 << CS10); TCNT1 = 0; }