使用 Windows 和 AMD 芯片组限制串行端口

使用 Windows 和 AMD 芯片组限制串行端口

使用 pgm LBB - Liberty Basic Booster 和以下代码:

''open "com12:115200,n,8,1,cs0" for random as #serial        ' LB
open "com16:115200,n,8,1" for random as #serial              ' LBB
    start = time$("ms")
    for n = 1 to 10000
      print #serial, "ABCDEFGHIJKLMNOPQRST"
    next n
    finish = time$("ms")
    nchars = 10000 * (20 + 2)
    print "Actual time taken = "; finish - start; " milliseconds"
    print "Expected time = "; nchars / 11.520 ; " milliseconds"

close #serial

    end

我的响应非常糟糕,时间应该在 19 秒以上,这是在配备 I7 芯片组的开发人员笔记本电脑上。在我的 AMD w10 台式机上,我得到了 220 多秒在 Dell w10 笔记本电脑 I5 芯片组上,我得到了 30 多秒在旧的 Dell Inspiron WinXP 上,我得到了 19 多秒有什么方法可以提高速度吗????

相关内容