We would like to create an embedded python application (interpreter together with a few custom python scripts in pyc format). The application would run on a VxWorks 653 platform (no file system, no Ethernet connection, etc.). I.e. it would be a completely stand-alone in RAM (and Flash memory) project. Yes, we can load RAM, Flash) over a connection, but in operation, it would be stand-alone except for our custom radio link.
Any pointers on how this can be done?
We don't need support from additional libraries and modules. Some of the standard library, but none of the OS specific stuff (files, os, tcp, etc.) will be used. (we do want the binary struct module).
It might be nice to be able to load strings of python scripts from memory and compile and run, but that is not crucial.