Search found 3 matches

by brianh
Wed Jun 19, 2019 4:01 pm
Forum: Development of MicroPython
Topic: Executing frozen module code at REPL startup.
Replies: 4
Views: 3469

Re: [SOLVED] Executing frozen module code at REPL startup.

Thanks for the feedback, gentleman. Lo and behold, it is working fine for me now. I didn't change anything and the frozen module is now running fine at startup and defines my convenience functions as desired, without resorting to the exec() workaround. The only thing I can figure is that I had messe...
by brianh
Wed Jun 19, 2019 3:22 pm
Forum: Development of MicroPython
Topic: Executing frozen module code at REPL startup.
Replies: 4
Views: 3469

Re: Executing frozen module code at REPL startup.

Yep, that's exactly what I want. Well now that I know it is suppose to work, I need to look more deeply into my build scripts to see where the code is (probably) misconfigured. I don't have a pyboard, but I'll try to reproduce your results in ports/unix, then use that as a basis to compare to my ARM...
by brianh
Tue Jun 18, 2019 4:28 pm
Forum: Development of MicroPython
Topic: Executing frozen module code at REPL startup.
Replies: 4
Views: 3469

Executing frozen module code at REPL startup.

Hi. I am new to MicroPython and I've been experimenting with building and running (REPL) on an ARMv6. I'm sure I am misunderstanding some basic concepts re: frozen modules. What I want to do is have a simple uPy boot script that is frozen and which executes before I enter the REPL. The primary goal ...