implement a microsecond resolution Delay? (微秒级延迟)
implement a microsecond resolution Delay? (微秒级延迟) https://github.com/fundamentalslib/fundamentals5/tree/master/Source http://robotics.stackexchange.com/questions/7502/control-both-velocity-and-position-linear-actuator/7512#7512 http://electronics.stackexchange.com/questions/38573/smooth-a-motor-movement http://delphi.cjcsoft.net//viewthread.php?tid=391 http://guy.carpenter.id.au/gaugette/2012/01/26/simplified-acceleration-model/ implement a microsecond resolution Delay? Author: Lemy Homepage: http://www.swissdelphicenter.com 0 Comments to this tip [Write new comment] [ Print tip ] Tip Rating (8): epicTimer.pas // Wait 0.2ms procedure PerformanceDelay; var hrRes, hrT1, hrT2, dif: Int64; begin if QueryPerformanceFrequency(hrRes) then begin QueryPerformanceCounter(hrT1); repeat Qu...