/*************************************************************************** * Copyright (C) 02/2021 by Olaf Rempel * * razzor@kopf-tisch.de * * * * 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; version 2 of the License, * * * * 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., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #include #include "pwm.h" /* *********************************************************************** */ #define PWM_MIN 0x0000 #define PWM_MAX 0xFFFF #define PWM_TIM_INIT() { \ /* enable output for OC1A, OC1B, OC3A */ \ DDRB |= (1<type == EVENT_TYPE_PWM_VALUE) { pwm_update(p_event->num, p_event->value); } } /* pwm_event_handler */ uint8_t pwm_get_sleep_mode(void) { return !!(PWM_TIM1_RUNNING() || PWM_TIM3_RUNNING()); } /* pwm_get_sleep_mode */ void pwm_init(void) { PWM_TIM_INIT(); } /* pwm_init */