You are reading a single comment by @FManga and its replies. Click here to read the full conversation.
  • I had also assumed atob('string literal') was being pretokenized into a binary-safe format that doesn't need escaping, since that would be smaller/faster. It would allow displaying graphics without taking up RAM... but would it be just as fast, or is external flash slower to access?

    atob() is function call, makes new buffer in RAM when called, yes external flash is slower, every byte from SPI flash is read by toggling GPIOs in software, it is fast but much slower than internal RAM/Flash

  • atob() is function call

    Yes, but so is E.compiledC. In the same way that compiledC is replaced, so can an atob call.

    SPI flash is read by toggling GPIOs in software

    It's bit bangging SPI? o_O

About

Avatar for FManga @FManga started