• Hello @Gordon

    i'm testing code with pcd8054 lcd.

    the example works well with 2.04 firmware, but not with the 2.05 firmware. (i updated to try the scale factor feature on Font).
    If i downgrade to 2.04 it works again...

    SPI1.setup({ sck:B3, mosi:B5 });
    var g = require("PCD8544").connect(SPI1, B6 /*DC*/, B7 /*CE*/, B8 /*RST*/, function() {
      g.clear();
      g.drawString("Hello",0,0);
      g.drawLine(0,10,84,10);
      g.flip();
    });
    
    ____                 _
    |  __|___ ___ ___ _ _|_|___ ___
    |  __|_ -| . |  _| | | |   | . |
    |____|___|  _|_| |___|_|_|_|___|
            |_| espruino.com
    2v05 (c) 2019 G.Williams
    >
    Uncaught InternalError: Timeout on SPI RX
    at line 1 col 30
    b.write([33,191,20,6,32,12],d);void 0!==e&&e()
                                ^
    in function called from system
    
    
About

Avatar for Mrbbp @Mrbbp started