Merge pull request #2394 from openmv/tools_cleanup

tools: Clean up tools.
This commit is contained in:
Ibrahim Abdelkader 2024-08-28 21:31:14 +03:00 committed by GitHub
commit 936a3d4bc1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
18 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,4 @@
#!/usr/bin/env python
import sys, serial, struct
port = "/dev/ttyACM0"
serial.Serial(port, baudrate=1200, bytesize=serial.EIGHTBITS, parity=serial.PARITY_NONE).close()