fix(pm3py): disable CRC for USB (matching C client), fix CRC byte order for FPC UART

This commit is contained in:
michael
2026-03-16 00:03:23 -07:00
parent d9ec661d06
commit c015082b41
576 changed files with 201565 additions and 21 deletions

8
venv/bin/pip3.12 Executable file
View File

@@ -0,0 +1,8 @@
#!/home/work/pm3py/venv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())