logoalt Hacker News

tl2dotoday at 12:16 AM1 replyview on HN

For a hobbyist embedded developer like me, the adoption of RISC-V in the ESP series is big news. In day-to-day development, instruction sets are often abstracted away by the compiler, but I appreciate open specifications and architectures. This makes me particularly interested in how an emulator like Emuko could facilitate evaluating code without the slow process of repeatedly burning it to ROM. I'm keen to see reports of its application in actual ESP32 development.


Replies

general1465today at 12:39 AM

Or you can write code which can directly run on x86, i.e. FreeRTOS does support that without issues. For peripherals drivers you will need to burn it on chip regardless because emulator rarely can emulate peripherals in some reasonable way.

So if you correctly abstract business logic from peripheral code, you can do most of your development without ever uploading to target.

show 1 reply