• 1 Post
  • 5 Comments
Joined 5 months ago
cake
Cake day: March 18th, 2025

help-circle
  • I have a Prusa MK4 and i really like it. Even though you would get better quality prints with the same amount of money else where, its just good enough for my needs. And i love having the peace of mind that the owner behind it really likes open source. I do not have the feeling that i get features stripped away from me or some other corpo bullshit ruining my day. Use it since 2.5 years (~5 prints/month) now never had to fix anything.




  • Thank you for your input. That does sound reasonable, currently i am closing and opening for each pixel i am setting. However the example code mine is based on also implemented away to set the cursor on an area. And i can then probably just provide more bytes than just two here. I will try this out later!

    I don’t think mine is AVR based. It is the architecture of the CPU right? The datasheet says it has two Harvard Architecture Xtensa LX7 CPUs


  • Thank you for your reply. Sorry for forgetting the most important part about my setup. The Controller i am using, it is a NORA-W106 on a Arduino Nano ESP32 and according to its docs it has a clock speed of up to 240MHz, so i guess that would be enough depending on if that’s also base clock speed its running on right now…

    NORA-W10 series modules have a dual-core system with two Harvard Architecture Xtensa LX7 CPUs operating at a maximum 240 MHz internal clock frequency.

    Currently i set the SPI speed using SPI.setClockDivider(SPI_CLOCK_DIV2); Which would be 120MHz to my understanding assuming it runs at maximum speed. Too fast for SPI but that is not how it feels like. I will try some things out once i am back home especially as the method i use seems to be deprecated.