473,770 Members | 2,781 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Timing?

hey all,

I am attempting to do motion control for
a final project, but I have a concern....

For motion control, timing is everyting,
the better it is, the better it works.
Currently I am trying to use the timer
function block to do a 10ms loop, but
if I remember correctly.... that timing
wasnt the best. Any suggestions to improve
upon it? eg. A high priority thread, calculating
the thread sleep myself? ....????

Thankyou in advance,
jamie.
Nov 17 '05 #1
7 3770
Take a look at the System.Threadin g.Timer It has better resolution and isn't
reliant on the load in the message queue for it's processing.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.

"jamie" <an*******@disc ussions.microso ft.com> wrote in message
news:01******** *************** *****@phx.gbl.. .
hey all,

I am attempting to do motion control for
a final project, but I have a concern....

For motion control, timing is everyting,
the better it is, the better it works.
Currently I am trying to use the timer
function block to do a 10ms loop, but
if I remember correctly.... that timing
wasnt the best. Any suggestions to improve
upon it? eg. A high priority thread, calculating
the thread sleep myself? ....????

Thankyou in advance,
jamie.

Nov 17 '05 #2
Hi,

I think that the best approach you can get is using System.Timer.

take a look at "Introducti on to Server-Based Timers" :

http://msdn.microsoft.com/library/de...asedTimers.asp
cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"jamie" <an*******@disc ussions.microso ft.com> wrote in message
news:01******** *************** *****@phx.gbl.. .
hey all,

I am attempting to do motion control for
a final project, but I have a concern....

For motion control, timing is everyting,
the better it is, the better it works.
Currently I am trying to use the timer
function block to do a 10ms loop, but
if I remember correctly.... that timing
wasnt the best. Any suggestions to improve
upon it? eg. A high priority thread, calculating
the thread sleep myself? ....????

Thankyou in advance,
jamie.

Nov 17 '05 #3
Hi,

Use a timer but you control the timing using System.Environm ent.TickCount
that retrieves the ticks from the processor in milliseconds, this is the most
precise method.

You can compare your starting tickcount and comparing it with the final one
the control your timing. The loop can be interrupted by other threads and you
won't realize if it takes 10, 20 or 30 milliseconds to loop.

cheers
Salva
"jamie" wrote:
hey all,

I am attempting to do motion control for
a final project, but I have a concern....

For motion control, timing is everyting,
the better it is, the better it works.
Currently I am trying to use the timer
function block to do a 10ms loop, but
if I remember correctly.... that timing
wasnt the best. Any suggestions to improve
upon it? eg. A high priority thread, calculating
the thread sleep myself? ....????

Thankyou in advance,
jamie.

Nov 17 '05 #4

"jamie" <an*******@disc ussions.microso ft.com> wrote in message
news:01******** *************** *****@phx.gbl.. .
hey all,

I am attempting to do motion control for
a final project, but I have a concern....

For motion control, timing is everyting,
the better it is, the better it works.
Currently I am trying to use the timer
function block to do a 10ms loop, but
if I remember correctly.... that timing
wasnt the best. Any suggestions to improve
upon it? eg. A high priority thread, calculating
the thread sleep myself? ....????

Thankyou in advance,
jamie.


I'm not entirely clear what you want exactly, but if you need a timer that
fires exactly every 10 msec , you have choosen the wrong platform - both OS
and .NET, You need a Real Time Operating system for this and Windows is not
a RTOS.

Willy.
Nov 17 '05 #5
Jamie:

One can't do really precise motion control under windows, or any PC
operating system for that matter. You will need a real-time operating system
(RTOS). By definition an RTOS can say that an event will occur within a
certain amount of time with absolute certainty.

That being said, and hoping that your final project is not implementing a
pace maker, if you want to do this in windows and you want to do this from
C# you will probably want use a System.Threadin g.Timer and from within your
OnTick routine call the Win32 function QueryPerformanc eCounter to calculate
the actual time elapsed with PInvoke.

Checkout

http://msdn.microsoft.com/library/de...nethowto09.asp

http://msdn.microsoft.com/library/de...ing/timers.asp

"jamie" <an*******@disc ussions.microso ft.com> wrote in message
news:01******** *************** *****@phx.gbl.. .
hey all,

I am attempting to do motion control for
a final project, but I have a concern....

For motion control, timing is everyting,
the better it is, the better it works.
Currently I am trying to use the timer
function block to do a 10ms loop, but
if I remember correctly.... that timing
wasnt the best. Any suggestions to improve
upon it? eg. A high priority thread, calculating
the thread sleep myself? ....????

Thankyou in advance,
jamie.

Nov 17 '05 #6
Jamie,

You'll have to use multimedia timers to achieve the best possible
resolution for the hardware. I'm not sure how the garbage collector
affects the resolution.

<http://msdn.microsoft. com/library/default.asp?url =/library/en-us/multimed/htm/_win32_multimed ia_timers.asp>

jamie wrote:
hey all,

I am attempting to do motion control for
a final project, but I have a concern....

For motion control, timing is everyting,
the better it is, the better it works.
Currently I am trying to use the timer
function block to do a 10ms loop, but
if I remember correctly.... that timing
wasnt the best. Any suggestions to improve
upon it? eg. A high priority thread, calculating
the thread sleep myself? ....????

Thankyou in advance,
jamie.


Nov 17 '05 #7
jamie wrote:
hey all,

I am attempting to do motion control for
a final project, but I have a concern....

For motion control, timing is everyting,
the better it is, the better it works.


C# and Windows aren't the best platforms for real time applications. If real
time is important for your application I would use a software PLC. Do the
real time stuff in the PLC and provide control access through a nice GUI
written in C#. :-)

Max

Nov 17 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1587
by: jj | last post by:
I've got one database server that works fine when transferring large amounts of data, but a new one that has been setup seems to want to timeout or drop the connection after a period of time. I've tried to compare the variables and they seem to be the same. The versions of MySQL are slightly different with the good one being 3.23.41 and the one timing out being 3.23.58 Any ideas on what I can check for that would be different or help...
10
2169
by: Greg Stark | last post by:
This query is odd, it seems to be taking over a second according to my log_duration logs and according to psql's \timing numbers. However explain analyze says it's running in about a third of a second. What would cause this? Is it some kind of postgresql.conf configuration failure? I have the same query running fine on a different machine. QUERY PLAN...
9
1756
by: Amir Ghezelbash | last post by:
Hey every body i had a question i am in process of writing an application, where this application needs to check the database on hourly bases to see if they are any information that are needed to be processed in the next upcoming hour so my application has to to connect to data base right on (for example) 5:00:00 then check all the jobs that are due on 5:00:00 5:15:00 5:30:00
1
1424
by: Novice | last post by:
Hi all, I'm at my wit's end on trying to insert some timing code into the server side code that parses the hashed data contained in the hidden field being submitted to the server I've tried placing timing code in all of the following: Page_Load OnInit LoadViewState(object savedState) object SaveViewState()
3
1696
by: gregory_may | last post by:
I have an application where I am using a System Thread to capture the screen & Broadcast it to clients. Its "working", but the timing on the background thread gets wildly erratic at times. Some times, its right away, some times after 10 seconds. I have included the setup of the process and the outline of the Call Back Method. As posted, the callback method can be mildly erratic (only doing a debug.writeline) I am guessing up to an 80%...
2
3307
by: Steven D'Aprano | last post by:
The timeit module is ideal for measuring small code snippets; I want to measure large function objects. Because the timeit module takes the code snippet argument as a string, it is quite handy to use from the command line, but it is less convenient for timing large pieces of code or when working in the interactive interpreter. E.g. variations on this *don't* work: $ python Python 2.4.3 (#1, Jun 13 2006, 11:46:08)
2
1547
by: julie.siebel | last post by:
Google apparently ate my original post to this (grr) so this'll be a bit more vague than the initial post, but...*sigh*. Javascript is not my forte, and I apologize for the acky-ness of the code. I'm working on a page for a travel company. There's way too much going on with it/on it, but I'm kind of stuck at this point - the client loves it, so I have to solve this problem.
3
1412
by: CSharpner | last post by:
Is it just me or is everyone having problems with the MSDN site today? It keeps timing out. http://msdn.microsoft.com I've tried from: Oak Ridge, TN A proxy through our company net via Frederick, VA A proxy through our company net via Houston, TX Remote controlling my own server from Houston, TX
0
1945
by: Daniel Fetchinson | last post by:
On 4/15/08, Daniel Fetchinson <fetchinson@googlemail.comwrote: BTW, using the following ###################################################################### # CODE TO TEST BOTH FUNCTIONS back = fill_matrix(generate_zero())
0
9591
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10228
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10002
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9869
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8883
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5312
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5449
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3970
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2816
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.