Search found 2 matches
- Mon Oct 06, 2014 4:21 pm
- Forum: Development of MicroPython
- Topic: Python objects in ROM?
- Replies: 3
- Views: 6093
Re: Python objects in ROM?
2. How do we put it in ROM? (Should we make an assembler-file with just databytes out of it and link as the C-libraries) 3. How do we get micro python to find it for our real .py files when they use import? 4. Can this be done for immutable datastructures as well? It is possible to put many python ...
- Mon Oct 06, 2014 5:55 am
- Forum: Development of MicroPython
- Topic: Python objects in ROM?
- Replies: 3
- Views: 6093
Python objects in ROM?
Hi, we will have about 6000 lines of python code ported from another project, which we would like to move to the micro-controller. It will run out of RAM memory during compilation. We could write it as C libraries, but then we would have no benefit of Python. What is the best approach to pre-compile...