Hacker News new | ask | show | jobs
by matt_trentini 358 days ago
It's obviously not directly comparable - each port will be different - but startup time is <50ms on an RP2040 (Cortex M0 @133MHz):

https://github.com/micropython/micropython/issues/8420

1 comments

That's a useful comparison since it gives some insight to some important differences: part of the difference might be an order of magnitude increase in clock speed (say from 15 MHz to 133+ MHz); another might be an increase in I/O speed. A final one might be memory pressure - classic Mac OS applications conservatively specified memory to reserve in advance since they shared the same memory space, and a lot of purging/reloading of nonessential relocatable resources might be happening.