Recent content by oranga

  1. oranga

    Hacking Raspberry PI Pico Dongle?

    even dragonboot requires an sd card ? yeah with arduino it's very much possible and possibly even trivial since i saw the trinketm0 code [https://github.com/atlas44/sam-fusee-launcher/blob/master/src/main.cpp] and it would be possible for me to port it for the pico but the usb.h module isn't...
  2. oranga

    Hacking Raspberry PI Pico Dongle?

    The amount of flash storage available is 16kb in total and 253 bytes per block. unfortunately, even the smallest payload is around 65kb[bin compressed] source: https://kalumajs.org/docs/boards/rp2
  3. oranga

    Hacking Raspberry PI Pico Dongle?

    That's a nice idea I'll try to implement this, But if you could find an example of the same in javascript it would be helpful either way ill just try it out Thanks!!
  4. oranga

    Hacking Raspberry PI Pico Dongle?

    currently, if you see run my code from [github com omijh PicoFusee] {<- replace spaces with .then /} I have pushed the compressed payload for dragon boot which too is too big if you remove about half of it and print with console.log with just the include, you will notice the log being printed...
  5. oranga

    Hacking Raspberry PI Pico Dongle?

    The problem is with the lack of ram unable to load the entire bin in the memory tiny2040 has 8 mb flash storage which is enough in the pico
  6. oranga

    Hacking Raspberry PI Pico Dongle?

    I tried this dragonboot payload & the bin file is still too big, I tried to rebuild the payload injector since the source code was available, it uses the Arduino USB host library which is still incompatible with rp2040. As soon as this library or similar library is available for rp2040 it will...
  7. oranga

    Hacking Raspberry PI Pico Dongle?

    I tried argon-nx payload(65kb file when extracted takes ~200kb), it's around 200kb small but still too big to be read in one blob, ill look for another way. Pico returns null if it's too big so I'll have to try to stream it
  8. oranga

    Hacking Raspberry PI Pico Dongle?

    wow!! I didn't know that was possible ill try it out next Thanks!!
  9. oranga

    Hacking Raspberry PI Pico Dongle?

    I started working on this with kaluma js for pico but got stuck because the Hekate payload size is bigger than the SRAM on the pico [github com omijh PicoFusee] {<- replace spaces with .then /} If anyone knows a way to stream the payload someway so it doesn't fill the ram would help. It's...