AVR RRD works

LPC1768 VIKI2 & RRDFG are working

looks like all SPIs are working

library change

sh1106 locks up

fixed lockup, started I2C SW com

pretty

re-org

restore a few files

make library happy

switched HAL version of rrd

fix travis error

travis error fixes

another travis fix

cleanup

minor update

one more

correct spacing in platformio.ini
This commit is contained in:
Bob-the-Kuhn
2017-11-02 20:57:08 -05:00
parent a34b5a2bfa
commit 0483a7df91
25 changed files with 2711 additions and 369 deletions

View File

@ -4758,6 +4758,11 @@ void lcd_update() {
#if ENABLED(DOGLCD) // Changes due to different driver architecture of the DOGM display
if (!drawing_screen) {
#if defined(TARGET_LPC1768)
digitalWrite(P1_4, !digitalRead(P1_4)); //re-arm (was 77 in the old system)
#else
digitalWrite(29, !digitalRead(29)); //2560
#endif
u8g.firstPage();
drawing_screen = 1;
}