-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DVI and MicroPython support #12
Comments
You can take a look at this fork where I hacked in a virtual console with DVI: https://github.com/Wren6991/micropython/tree/dvi-vt100 It's not for the faint of heart, and IIRC I broke a few things (like flash programming). The code is there if you want to hack on it. The approach was to steal the second core from MicroPython, and run some bare metal DVI stuff on core 1, with the MicroPython interpreter on core 0. |
I followed your approach to integrate DVI in Micropython. Yes its not so easy/possible to get flash programming running while DVI is running. I stopped trying this because of some notes from flash.h: "* Like other hardware_flash functions, the flash is not
After some hours of trying the flash thing, I decided to store the data on SD. Setup: DVI uses
The DAC is for sound generation has 8 channels sine/saw/triangle/rectangle/noise generation The Micropython core modules are enhanced for vga, sprite, graphic and sound. Finally I have a nice retro computer running Python. |
Is there any way being able to have DVI output from MicroPython script (eg: create a terminal, having REPL available on screen, display some graphics) ?
The text was updated successfully, but these errors were encountered: