This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Can I run CPython on Cortex M3 with CMSIS RTOS

Hi
I was asked to look into the possibility of running a set of cpython programs on our ARM cortex M3 using the CMSIS RTOS. Right now the system collects sensor data and downloads it to a PC where it is processed into digital signal images. This is a slow process and they would like to be able to do this data processing on board the ARM processor.

I do not have any experience with cpython or python and have just started to look into it. I am hoping the it is simply python with a C wrapper around it that I can compile and link with the existing code.

Has anyone every attempted to do something like this?

I would really appreciate any ideas or suggestions you may have about how I can/should approach this issue.

Steve

Parents
  • "I do not have any experience with cpython or python and have just started to look into it"

    You hardly even need to google - you know the 1st hit will be wikipedia:

    en.wikipedia.org/.../CPython

    That should immediately give you a feel for the types of systems that CPython is implemented on...

    "I am hoping the it is simply python with a C wrapper around"

    No, it isn't - see the Wikipedia article!

    And, of course, the official Python site: https://www.python.org

Reply
  • "I do not have any experience with cpython or python and have just started to look into it"

    You hardly even need to google - you know the 1st hit will be wikipedia:

    en.wikipedia.org/.../CPython

    That should immediately give you a feel for the types of systems that CPython is implemented on...

    "I am hoping the it is simply python with a C wrapper around"

    No, it isn't - see the Wikipedia article!

    And, of course, the official Python site: https://www.python.org

Children