jondaddio / arduino-tvout

Automatically exported from code.google.com/p/arduino-tvout
0 stars 0 forks source link

Leonardo/Micro/Esplora <32u4 Does Not Work> #76

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Arduino Leonardo has no support <Important>
2. Arduino Micro has no support
3. Arduino Esplora has no support
4. All 3 use the same chip

What is the expected output? What do you see instead?
The code compiles per issue 52, but it won't show anything on the display.

Hardware.h was modified according to 
http://code.google.com/p/arduino-tvout/issues/detail?id=52

And all other links on that page. 

The RX Led lights up and remains on. Reading with a voltimeter shows that 
Digital Pin 9 and Ground have movement, but no other pins.

What version of the product are you using? On what operating system?
Newest Beta, on Windows 8

Please provide any additional information below.

#elif defined(__AVR_ATmega32U4__)
//video
 #define _VID_PORT PORTE
 #define _VID_DDR DDRE
 #define _VID_PIN 6
 //sync
 #define _SYNC_PORT PORTB
 #define _SYNC_DDR DDRB
 #define _SYNC_PIN 5
 //sound
 #define _SND_PORT PORTB
 #define _SND_DDR DDRB
 #define _PIN_SND 7
#define _ANDI_HWS "andi r16, 0xBF \n"
#define _BLD_HWS "bld r16, 6\n\t"

That is the code that compiles.

Original issue reported on code.google.com by stxbfran...@gmail.com on 16 Nov 2013 at 8:52