souldiver / open9x

Automatically exported from code.google.com/p/open9x
0 stars 0 forks source link

Trainer Port not working #139

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Trainer port on sky9x board does not seem to work.

I have tested under ersky9x and it is ok.  Under open9x it does not work :-)

Rob

Original issue reported on code.google.com by r...@marotori.com on 17 Sep 2012 at 4:27

GoogleCodeExporter commented 8 years ago

Original comment by bson...@gmail.com on 19 Sep 2012 at 9:48

GoogleCodeExporter commented 8 years ago
In board_ersky9x.cpp would you try this change in function config_free_pins:

Replace:
configure_pins( PIO_PB6 | PIO_PB14, PIN_ENABLE | PIN_INPUT | PIN_PORTB | 
PIN_PULLUP ) ;
configure_pins( PIO_PC19 | PIO_PC21, PIN_ENABLE | PIN_INPUT | PIN_PORTC | 
PIN_PULLUP ) ;

By:
configure_pins( PIO_PB14, PIN_ENABLE | PIN_INPUT | PIN_PORTB | PIN_PULLUP ) ;

At least the Rotary Encoder will be working ;)

Original comment by bson...@gmail.com on 21 Sep 2012 at 10:32

GoogleCodeExporter commented 8 years ago
Fixed on his own! Cool. It remains issues, perhaps it will be contagious :)

Original comment by bson...@gmail.com on 2 Oct 2012 at 5:04