]>
git.defcon.no Git - avrfbosd/blob - fbosd.c
8299540af749acda36724270487026b52052b1d4
2 #include <avr/interrupt.h>
3 #include <util/delay.h>
6 #include "video_properties.h"
10 void (*line_handler
)( void );
12 const int vres_scale
= ( SCREEN_LINES
/ VRES
-1 );
13 const int hres_bytes
= HRES
/ 8;
15 volatile uint8_t* screen_buffer
;
18 volatile int buffer_position
;
20 void Delay_ms(int cnt
)
22 while(cnt
-->0) _delay_ms(1);
25 void active_lines ( void )
35 if ( buffer_position
< ((VRES
*hres_bytes
)) )
36 buffer_position
+= hres_bytes
;
43 void blank_lines ( void )
45 if ( line
< FIRST_LINE
)
50 line_handler
= active_lines
;
61 line_handler
= &blank_lines
;
62 EIMSK
&= ~(uint8_t)(1<<INT1
);
68 // VSync is getting close to done.
69 // Set line-handler to blank-handler to count-up the undesired lines,
70 // and enable HSync interrupts.
72 line_handler
= &blank_lines
;
82 // Using some pins on PORTB for debug-indicator-LEDs
83 DDRB
= (1<< PB0
)|(1 << PB1
)|(1 << PB2
);
86 // Using pin 7 on PD to clock out pixels \o/
90 /* LM1881 pins are connected to:
91 INT0 / PCINT18 / PD2 <- VSYNC
92 INT1 / PCINT19 / PD3 <- CSYNC
93 PCINT20 / PD4 <- ODD/EVEN
95 EICRA
|= (1<<ISC01
)|(1<<ISC00
); // Select Rising-edge interrupt for VSync
96 EICRA
|= (1<<ISC11
)|(1<<ISC10
); // Select Rising-edge interrupt for HSync
97 EIMSK
|= (1<<INT0
); // Enable VSync-interrupts
99 // And enable interrupts globally.
102 // Allocate the framebuffer :D
103 screen_buffer
= (uint8_t*) malloc( hres_bytes
* VRES
* sizeof(uint8_t) );
104 // And make sure it's cleared
107 // Do some static drawing :P
109 set_pixel(92, 82, 1);
112 set_pixel(28, 82, 1);
115 draw_line(0, 0, 128, 92, 1);
116 draw_line(128, 0, 0, 92, 1);
118 draw_rect( 0, 1, 127, 91, 1);
120 draw_rect( 34, 21, 60, 50, 1);
121 _draw_rect( 24, 11, 80, 70, 1, -1);
122 draw_rect( 34, 21, 60, 50, 1);
125 _draw_circle( 64,46, 35, 1, -1 );
126 draw_circle( 64,46, 30, 1 );
127 fill_circle( 64,46, 25, 1 );
128 fill_circle( 64,46, 20, 0 );
129 fill_rect( 44, 31, 40, 30, 1);
130 fill_rect( 54, 41, 20, 10, 0);
136 for ( int j
= 8; j
< 89; j
++ )
138 draw_line(8,88-j
,120,j
, 2);
139 draw_line(120,j
,8,88-j
, 2);
141 draw_line(8,88-j
,120,j
, 2);