2008-12-03 05:40:16 +00:00
|
|
|
#include "../config.h"
|
|
|
|
#include "../makros.h"
|
|
|
|
|
|
|
|
#include <avr/interrupt.h>
|
|
|
|
#include <avr/io.h>
|
|
|
|
#include <avr/wdt.h>
|
|
|
|
#include "borg_hw.h"
|
|
|
|
|
|
|
|
/*
|
2011-08-17 01:16:25 +00:00
|
|
|
// those macros get defined via menuconfig, now
|
|
|
|
|
|
|
|
// 16 columns total directly controlled, therefore 2 ports
|
|
|
|
#define COLPORT1 PORTA
|
|
|
|
#define COLDDR1 DDRA
|
|
|
|
|
|
|
|
#define COLPORT2 PORTC
|
|
|
|
#define COLDDR2 DDRC
|
|
|
|
|
|
|
|
// the other port controls the shift registers
|
|
|
|
#define ROWPORT PORTD
|
|
|
|
#define ROWDDR DDRD
|
|
|
|
|
|
|
|
// both clock and reset are connected to each shift register
|
|
|
|
// reset pin is negated
|
|
|
|
#define PIN_MCLR PD4
|
|
|
|
#define PIN_CLK PD5
|
|
|
|
|
|
|
|
// these are the individual data input pins for the shift registers
|
|
|
|
#define PIN_DATA1 PD6
|
|
|
|
#define PIN_DATA2 PD7
|
2008-12-03 05:40:16 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define COLDDR1 DDR(COLPORT1)
|
|
|
|
#define COLDDR2 DDR(COLPORT2)
|
|
|
|
#define ROWDDR DDR(ROWPORT)
|
|
|
|
|
2012-02-12 20:47:55 +00:00
|
|
|
#if defined (__AVR_ATmega644P__) || defined (__AVR_ATmega644__)
|
2010-01-29 01:06:50 +00:00
|
|
|
/* more ifdef magic :-( */
|
|
|
|
#define OCR0 OCR0A
|
2012-03-23 01:27:59 +00:00
|
|
|
#define TIMER0_COMP_vect TIMER0_COMPA_vect
|
2010-01-29 01:06:50 +00:00
|
|
|
#endif
|
|
|
|
|
2011-08-17 01:16:25 +00:00
|
|
|
// buffer which holds the currently shown frame
|
2008-12-03 05:40:16 +00:00
|
|
|
unsigned char pixmap[NUMPLANE][NUM_ROWS][LINEBYTES];
|
|
|
|
|
2011-08-17 01:16:25 +00:00
|
|
|
// display a row
|
|
|
|
static void rowshow(unsigned char row, unsigned char plane) {
|
|
|
|
//reset states of preceding row
|
2008-12-03 05:40:16 +00:00
|
|
|
COLPORT1 = 0;
|
|
|
|
COLPORT2 = 0;
|
2011-08-17 01:16:25 +00:00
|
|
|
|
|
|
|
// short delay loop, to ensure proper deactivation of the drivers
|
2008-12-03 05:40:16 +00:00
|
|
|
unsigned char i;
|
2011-08-17 01:16:25 +00:00
|
|
|
for (i = 0; i < 20; i++) {
|
2008-12-03 05:40:16 +00:00
|
|
|
asm volatile("nop");
|
|
|
|
}
|
2011-08-17 01:16:25 +00:00
|
|
|
|
|
|
|
if (row == 0) {
|
|
|
|
// row 0: initialize first shift register
|
|
|
|
ROWPORT &= ~(1 << PIN_MCLR);
|
|
|
|
ROWPORT |= (1 << PIN_MCLR);
|
|
|
|
ROWPORT |= (1 << PIN_DATA1);
|
|
|
|
ROWPORT |= (1 << PIN_CLK);
|
|
|
|
ROWPORT &= ~(1 << PIN_CLK);
|
|
|
|
ROWPORT &= ~(1 << PIN_DATA1);
|
|
|
|
|
|
|
|
// depending on the currently drawn plane, display the row for a
|
|
|
|
// specific amount of time
|
|
|
|
static unsigned char const ocr0_table[] = {5, 8, 20};
|
|
|
|
OCR0 = ocr0_table[plane];
|
|
|
|
} else if (row == 8) {
|
|
|
|
// row 8: initialize second shift register
|
|
|
|
ROWPORT &= ~(1 << PIN_MCLR);
|
|
|
|
ROWPORT |= (1 << PIN_MCLR);
|
|
|
|
ROWPORT |= (1 << PIN_DATA2);
|
|
|
|
ROWPORT |= (1 << PIN_CLK);
|
|
|
|
ROWPORT &= ~(1 << PIN_CLK);
|
|
|
|
ROWPORT &= ~(1 << PIN_DATA2);
|
|
|
|
} else {
|
|
|
|
// remaining rows: just shift forward
|
|
|
|
ROWPORT |= (1 << PIN_CLK);
|
|
|
|
ROWPORT &= ~(1 << PIN_CLK);
|
2008-12-03 05:40:16 +00:00
|
|
|
}
|
2011-08-17 01:16:25 +00:00
|
|
|
|
|
|
|
// another delay loop, to ensure that the drivers are ready
|
|
|
|
for (i = 0; i < 20; i++) {
|
2008-12-03 05:40:16 +00:00
|
|
|
asm volatile("nop");
|
|
|
|
}
|
2011-08-17 01:16:25 +00:00
|
|
|
|
|
|
|
// output data of the current row to the column drivers
|
2008-12-03 05:40:16 +00:00
|
|
|
COLPORT1 = pixmap[plane][row][0];
|
|
|
|
COLPORT2 = pixmap[plane][row][1];
|
|
|
|
}
|
|
|
|
|
2011-08-17 01:16:25 +00:00
|
|
|
// depending on the plane this interrupt gets triggered at 50 kHz, 31.25 kHz or
|
|
|
|
// 12.5 kHz
|
2012-03-23 01:27:59 +00:00
|
|
|
ISR(TIMER0_COMP_vect) {
|
2008-12-03 05:40:16 +00:00
|
|
|
static unsigned char plane = 0;
|
|
|
|
static unsigned char row = 0;
|
2011-08-17 01:16:25 +00:00
|
|
|
|
|
|
|
// reset watchdog
|
2008-12-03 05:40:16 +00:00
|
|
|
wdt_reset();
|
2011-08-17 01:16:25 +00:00
|
|
|
|
|
|
|
// output current row according to current plane
|
2008-12-03 05:40:16 +00:00
|
|
|
rowshow(row, plane);
|
2011-08-17 01:16:25 +00:00
|
|
|
|
|
|
|
// increment both row and plane
|
|
|
|
if (++row == NUM_ROWS) {
|
2008-12-03 05:40:16 +00:00
|
|
|
row = 0;
|
2011-08-17 01:16:25 +00:00
|
|
|
if (++plane == NUMPLANE) {
|
|
|
|
plane = 0;
|
|
|
|
}
|
2008-12-03 05:40:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-17 01:16:25 +00:00
|
|
|
void timer0_off() {
|
2008-12-03 05:40:16 +00:00
|
|
|
cli();
|
|
|
|
|
|
|
|
COLPORT1 = 0;
|
|
|
|
COLPORT2 = 0;
|
|
|
|
ROWPORT = 0;
|
|
|
|
|
2012-02-12 20:47:55 +00:00
|
|
|
#if defined (__AVR_ATmega644P__) || defined (__AVR_ATmega644__)
|
2011-08-17 01:16:25 +00:00
|
|
|
TCCR0A = 0x00;
|
|
|
|
TCCR0B = 0x00;
|
2010-01-29 01:06:50 +00:00
|
|
|
#else
|
2008-12-03 05:40:16 +00:00
|
|
|
TCCR0 = 0x00;
|
2010-01-29 01:06:50 +00:00
|
|
|
#endif
|
2008-12-03 05:40:16 +00:00
|
|
|
sei();
|
|
|
|
}
|
|
|
|
|
2011-08-17 01:16:25 +00:00
|
|
|
// initialize timer which triggers the interrupt
|
|
|
|
static void timer0_on() {
|
|
|
|
/* TCCR0: FOC0 WGM00 COM01 COM00 WGM01 CS02 CS01 CS00
|
|
|
|
CS02 CS01 CS00
|
|
|
|
0 0 0 stop
|
|
|
|
0 0 1 clk
|
|
|
|
0 1 0 clk/8
|
|
|
|
0 1 1 clk/64
|
|
|
|
1 0 0 clk/256
|
|
|
|
1 0 1 clk/1024
|
|
|
|
*/
|
2010-01-29 01:06:50 +00:00
|
|
|
|
2012-02-12 20:47:55 +00:00
|
|
|
#if defined (__AVR_ATmega644P__) || defined (__AVR_ATmega644__)
|
2011-08-17 01:16:25 +00:00
|
|
|
TCCR0A = 0x02; // CTC Mode
|
|
|
|
TCCR0B = 0x03; // clk/64
|
|
|
|
TCNT0 = 0; // reset timer
|
|
|
|
OCR0 = 20; // compare with this value
|
|
|
|
TIMSK0 = 0x02; // compare match Interrupt on
|
2010-01-29 01:06:50 +00:00
|
|
|
#else
|
2011-08-17 01:16:25 +00:00
|
|
|
TCCR0 = 0x0B; // CTC Mode, clk/64
|
|
|
|
TCNT0 = 0; // reset timer
|
|
|
|
OCR0 = 20; // compare with this value
|
|
|
|
TIMSK = 0x02; // compare match Interrupt on
|
2010-01-29 01:06:50 +00:00
|
|
|
#endif
|
2008-12-03 05:40:16 +00:00
|
|
|
}
|
|
|
|
|
2011-08-17 01:16:25 +00:00
|
|
|
void borg_hw_init() {
|
|
|
|
// switch column ports to output mode
|
2008-12-03 05:40:16 +00:00
|
|
|
COLDDR1 = 0xFF;
|
|
|
|
COLDDR2 = 0xFF;
|
2011-08-17 01:16:25 +00:00
|
|
|
|
|
|
|
// switch pins of the row port to output mode
|
|
|
|
ROWDDR = (1<<PIN_MCLR) | (1<<PIN_CLK) | (1<<PIN_DATA1) | (1<<PIN_DATA2);
|
|
|
|
|
|
|
|
// switch off all columns for now
|
2008-12-03 05:40:16 +00:00
|
|
|
COLPORT1 = 0;
|
|
|
|
COLPORT2 = 0;
|
2011-08-17 01:16:25 +00:00
|
|
|
|
|
|
|
// reset shift registers for the rows
|
2008-12-03 05:40:16 +00:00
|
|
|
ROWPORT = 0;
|
2011-08-17 01:16:25 +00:00
|
|
|
|
2008-12-03 05:40:16 +00:00
|
|
|
timer0_on();
|
|
|
|
|
2011-08-17 01:16:25 +00:00
|
|
|
// activate watchdog timer
|
2008-12-03 05:40:16 +00:00
|
|
|
wdt_reset();
|
2011-08-17 01:16:25 +00:00
|
|
|
wdt_enable(0x00); // 17ms watchdog
|
2008-12-03 05:40:16 +00:00
|
|
|
}
|