mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 09:44:13 +00:00
11 lines
273 B
Python
11 lines
273 B
Python
|
#!/usr/bin/env python3
|
||
|
# SPDX-License-Identifier: MIT
|
||
|
import sys, pathlib
|
||
|
import time
|
||
|
sys.path.append(str(pathlib.Path(__file__).resolve().parents[1]))
|
||
|
|
||
|
from m1n1.setup import *
|
||
|
|
||
|
p.usb_iodev_vuart_setup(p.iodev_whoami())
|
||
|
p.iodev_set_usage(IODEV.USB_VUART, USAGE.UARTPROXY)
|