teensy: Fix execution of frozen boot.py and main.py
This commit is contained in:
parent
d2d9dfcd40
commit
253e1a6f67
|
@ -302,7 +302,7 @@ soft_reset:
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if MICROPY_MODULE_FROZEN
|
#if MICROPY_MODULE_FROZEN
|
||||||
pyexec_frozen_module("boot");
|
pyexec_frozen_module("boot.py");
|
||||||
#else
|
#else
|
||||||
if (!pyexec_file("/boot.py")) {
|
if (!pyexec_file("/boot.py")) {
|
||||||
flash_error(4);
|
flash_error(4);
|
||||||
|
@ -314,7 +314,7 @@ soft_reset:
|
||||||
|
|
||||||
// run main script
|
// run main script
|
||||||
#if MICROPY_MODULE_FROZEN
|
#if MICROPY_MODULE_FROZEN
|
||||||
pyexec_frozen_module("main");
|
pyexec_frozen_module("main.py");
|
||||||
#else
|
#else
|
||||||
{
|
{
|
||||||
vstr_t *vstr = vstr_new();
|
vstr_t *vstr = vstr_new();
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import pyb
|
||||||
|
|
||||||
print("Executing main.py")
|
print("Executing main.py")
|
||||||
|
|
||||||
led = pyb.LED(1)
|
led = pyb.LED(1)
|
||||||
|
|
Loading…
Reference in New Issue