加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
speed_test.py 334 Bytes
一键复制 编辑 原始数据 按行查看 历史
import time
from drivers.osc import Oscilloscope
from drivers.usbd import USBDevice
if __name__ == '__main__':
usbd = USBDevice(idVendor=0xffff)
osc = Oscilloscope(usbd)
osc.sps = 500000
n = 64
while True:
t0 = time.time()
b = usbd.read(n)
t1 = time.time()
print(len(b)/(t1 - t0))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化