HBBR Basic

  • Increase font size
  • Default font size
  • Decrease font size
Welcome, Guest
Please Login or Register.    Lost Password?

Calibrated Milisecond Delay
(1 viewing) (1) Guest
Go to bottomPage: 123
TOPIC: Calibrated Milisecond Delay
#135
Calibrated Milisecond Delay 2 Years, 3 Months ago Karma: 0
Does the Calibrated Milisecond Delay, Sub __hbbr_delay(delay As Integer), has
some modifications or was disabled at 1.300 version ?

The administrator has disabled public write access.
 
#136
Re: Calibrated Milisecond Delay 2 Years, 3 Months ago Karma: 0
Hi,

No there were no modifications in 1.300.
Anyway, HBBRB 1.300 will not be released and BETA17 is expired.

Thannks,
Pawel
The administrator has disabled public write access.
 
#137
Re: Calibrated Milisecond Delay 2 Years, 3 Months ago Karma: 0
In this code is not delay to me:

SUB MAIN()

DIM I AS BYTE

FOR I= 1 TO 10
Call __hbbr_delay(10000)
PRINT #0, I; " Wait 10 seconds more..."
NEXT I

END SUB

The administrator has disabled public write access.
 
#150
Re: Calibrated Milisecond Delay 2 Years, 1 Month ago Karma: 0
Another issue about this:
This routine accept short (32767), not integer.
The administrator has disabled public write access.
 
#153
Re: Calibrated Milisecond Delay 2 Years, 1 Month ago Karma: 0
Hi,
We are switching to hardware based implementation of the delay.
It will be a lot more precise then software based.
Look for it in the upcoming update.

Code:

 __hbbr_delay() 
takes UInteger as paramter but the values and thus range of delay
is limited. For new hardware based the limit will be 4095 which translates
to maximum of 4.095 s delay. Longer delays can be implemeted by calling it
multiple times.

Thanks,
Pawel

Pawel

The administrator has disabled public write access.
 
#157
Re: Calibrated Milisecond Delay 2 Years, 1 Month ago Karma: 0
What Timer and channel is using this new function ?
Any proper way to use this when I use same Timer for
other works ?
The administrator has disabled public write access.
 
Go to topPage: 123