Porting Python to an embedded system

前端 未结 6 1930
渐次进展
渐次进展 2021-02-05 05:28

I am working with an ARM Cortex M3 on which I need to port Python (without operating system). What would be my best approach? I just need the core Python and basic I/O.

6条回答
  •  迷失自我
    2021-02-05 05:30

    There are a few projects that have attempted to port Python to the situation you mention, take a look at python-on-a-chip, PyMite or tinypy. These are aimed at lower power microcontrollers without an OS and tend to focus on slightly older versions of the Python language and reduced library support.

提交回复
热议问题