/*************************************************************************** * 16ch RGB 8bit PWM controller * * * * Copyright (C) 2011 - 2012 by Olaf Rempel * * razzor AT kopf MINUS tisch DOT 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 #include #include "rgb16mpm.h" /* * using ATmega32 @8MHz: * Fuse H: 0xD9 (no bootloader, jtag disabled) * Fuse L: 0xD4 (int. 8MHz Osz, fast rising power, no BOD) * * PA0..7 -> COL1..8 * PC0..7 -> COL9..16 * PB0 / PD7(OC2) -> ROW2/GREEN (OC2 not used) * PB1 / PD5(OC1A) -> ROW1/RED (OC1A not used) * PB2 / PD4(OC1B) -> ROW4 (OC1B not used) * PB3(OC0) / PD6 -> ROW3/BLUE (OC0 not used) * PD0 -> RXD * PD1 -> TXD * PD2 -> /RX_TX * PD3 -> /LED */ int main(void) __attribute__ ((noreturn)); int main(void) { DDRD = (1< 0) { /* x * 8 / (8MHz/1024) */ TCNT1 = 0xFFFF - (wait << 3); } } } }