AVR Port for Micropython #12550
Replies: 4 comments
-
With 128k flash and 16k RAM this could be tricky. More than an absolute minimal system will not fit. |
Beta Was this translation helpful? Give feedback.
-
Ah I see and thanks.
Are the recommended memory limits for micorpython documentated anywhere?
- Keenan
…On Fri, Sep 29, 2023 at 10:06 AM Robert Hammelrath ***@***.***> wrote:
With 128k flash and 16k RAM this could be tricky. More than an absolute
minimal system will not fit.
—
Reply to this email directly, view it on GitHub
<#12550 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AATQ3FTLNZBBYOIG25SIES3X4352LANCNFSM6AAAAAA5MWUCDE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
The Microbit v1 board also has 16k RAM but 256k Flash, which together appears like a lower limit. |
Beta Was this translation helpful? Give feedback.
-
RAM is the critical limit. With 16 k RAM, reserving 4k for stack and 2k for static data, only 10k remain for the Python heap, which holds the compiled Python code & data. |
Beta Was this translation helpful? Give feedback.
-
Hello community! I was wondering if anyone has worked on a micropython port for an AVR architecture?
I just received a AVR128DB48 board and I was thinking that it might be great to start working on a micropython port that could run on the board.
Beta Was this translation helpful? Give feedback.
All reactions