qt - how to set QTimer in nanoseconds -
is possible set timer value earlier set in linux
struct timespec intervaltime; long seconds,nanoseconds; seconds = 0; nanoseconds = 100000;
intervaltime.tv_sec = seconds; intervaltime.tv_nsec = nanoseconds;
is possible me set same time in qt of qtimer
qtimer::setvalue( 1 millisec) , how can set nanoseconds ..
please , thx in advance
nanoseconds - no, if set timer type qt::precisetimer can millisecond accuracy
Comments
Post a Comment