Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I can run my main.py (blinky_1.py) test but the put command does not work #119

Open
Timon-E opened this issue Apr 4, 2023 · 0 comments
Open

Comments

@Timon-E
Copy link

Timon-E commented Apr 4, 2023

I am using an Arduino Nano 33 BLE and generating my .py file using openMV IDE

When I use the run command from ampy it gives me this error but successfully runs my script and correctly blinks the LED's.

PS C:\Users\Achtu\OneDrive\Documents\OpenMV> ampy --port COM8 run main.py
Traceback (most recent call last):
File "", line 198, in _run_module_as_main
File "", line 88, in run_code
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Scripts\ampy.exe_main
.py", line 7, in
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 1130, in call
return self.main(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 1055, in main
rv = self.invoke(ctx)
^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 1657, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 1404, in invoke
return ctx.invoke(self.callback, **ctx.params)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 760, in invoke
return _callback(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\ampy\cli.py", line 338, in run
output = board_files.run(local_file, not no_output, not no_output)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\ampy\files.py", line 309, in run
self.pyboard.execfile(filename, stream_output=True)
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\ampy\pyboard.py", line 285, in execfile
return self.exec
(pyfile, stream_output=stream_output)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\ampy\pyboard.py", line 277, in exec

ret, ret_err = self.exec_raw(command, data_consumer=data_consumer)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\ampy\pyboard.py", line 265, in exec_raw
self.exec_raw_no_follow(command);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\ampy\pyboard.py", line 262, in exec_raw_no_follow
raise PyboardError('could not exec command')
ampy.pyboard.PyboardError: could not exec command

When I run the put command I get this error and the LED's do not blink.

PS C:\Users\Achtu\OneDrive\Documents\OpenMV> ampy --port COM8 put main.py
Traceback (most recent call last):
File "", line 198, in _run_module_as_main
File "", line 88, in run_code
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Scripts\ampy.exe_main
.py", line 7, in
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 1130, in call
return self.main(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 1055, in main
rv = self.invoke(ctx)
^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 1657, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 1404, in invoke
return ctx.invoke(self.callback, **ctx.params)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 760, in invoke
return _callback(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\ampy\cli.py", line 264, in put
board_files.put(remote, infile.read())
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\ampy\files.py", line 223, in put
self.pyboard.exec("f.write({0})".format(chunk))
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\ampy\pyboard.py", line 279, in exec

raise PyboardError('exception', ret, ret_err)
ampy.pyboard.PyboardError: ('exception', b'', b'Traceback (most recent call last):\r\n File "", line 1, in \r\nOSError: 28\r\n')

If I try to get the boot.py I get this error and it says there is not boot.py

PS C:\Users\Achtu\OneDrive\Documents\OpenMV> ampy --port COM8 get boot.py
Traceback (most recent call last):
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\ampy\files.py", line 74, in get
out = self.pyboard.exec(textwrap.dedent(command))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\ampy\pyboard.py", line 279, in exec_
raise PyboardError('exception', ret, ret_err)
ampy.pyboard.PyboardError: ('exception', b'', b'Traceback (most recent call last):\r\n File "", line 4, in \r\nOSError: [Errno 2] ENOENT\r\n')

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "", line 198, in _run_module_as_main
File "", line 88, in run_code
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Scripts\ampy.exe_main
.py", line 7, in
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 1130, in call
return self.main(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 1055, in main
rv = self.invoke(ctx)
^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 1657, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 1404, in invoke
return ctx.invoke(self.callback, **ctx.params)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\click\core.py", line 760, in invoke
return __callback(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\ampy\cli.py", line 126, in get
contents = board_files.get(remote_file)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Achtu\AppData\Local\Programs\Python\Python311\Lib\site-packages\ampy\files.py", line 80, in get
raise RuntimeError("No such file: {0}".format(filename))
RuntimeError: No such file: boot.py

Any help would be appreciated. I am rather new to coding but I am giving it my best shot.

@Timon-E Timon-E changed the title I can run my main.py (blink_1.py) test but put does not work I can run my main.py (blinky_1.py) test but put does not work Apr 5, 2023
@Timon-E Timon-E changed the title I can run my main.py (blinky_1.py) test but put does not work I can run my main.py (blinky_1.py) test but the put command does not work Apr 5, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant