Closed pkendall64 closed 4 months ago
It looks like the __init__.py
and __main__.py
will have to be updated to reflect the rename.
With the files changed, the configurator throws a generic build error without any indication of an issue in the logs.
python files importing as expected - still having the same issue of the the generic build error. The firmware completes the build, but right before it attempts to flash, the build error is thrown.
python files importing as expected - still having the same issue of the the generic build error. The firmware completes the build, but right before it attempts to flash, the build error is thrown.
I'm not having any error, it reports success. I selected the PR and Flash and it said success and popped up the finder window.
Figured out what is causing my issues. In the upload_espxx_xx
functions, args.platform
is used, but is never parsed in or set.
Adding args.platform = targets[vendor][hardware][target]['platform']
after the args are parsed in the main function got things going for me.
Adding
args.platform = targets[vendor][hardware][target]['platform']
after the args are parsed in the main function got things going for me.
Thanks for that.
seems legit 👍
Rename the
binary_flash.py
file tobinary_configurator.py
so builds from git using Configurator work correctly.