Hi, I am executing microTVM AOT + zephyr using below sample code: https://tvm.apache.org/docs/v0.10.0/how_to/work_with_microtvm/micro_aot.html The code executes successfully on Nucleo board. Now i want to separate below process which are happening inside the script : micro_aot.py
- Building
- Flashing
- Execution
For example i want to create 3 scripts to separate these processes:
- micro_aot_build.py
- micro_aot_flash.py
- micro_aot_exec.py
But the script has dependency of ‘project’ object. Could you please suggest how to separate these process for deploying real applications?
Thanks in advance