Method procedure TLClockGen.TTLBasicClock.Pump()
 (Automated Syncronization with Documentation)  | 
		 (Automated Syncronization with Documentation)  | 
		||
| Line 24: | Line 24: | ||
== Summary ==  | == Summary ==  | ||
| − | Generates   | + | Generates a clock event if enabled and ClockSource is [[Enum item SLTypes.TSLClockSource.csExternal|csExternal]].    | 
== Description ==  | == Description ==  | ||
| Line 55: | Line 55: | ||
</code>  | </code>  | ||
C# Example:  | C# Example:  | ||
| + | <pre>  | ||
| + | <c>clockGen1.Pump();</c>  | ||
| + | </pre>  | ||
<code>  | <code>  | ||
| − | |||
</code>  | </code>  | ||
Revision as of 20:28, 10 June 2013
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TTLBasicClock
Contents | 
Syntax
Delphi:
procedure Pump();
C++ Builder:
void __fastcall Pump();
Visual C++ (MFC):
void Pump();
Summary
Generates a clock event if enabled and ClockSource is csExternal.
Description
Use the Pump procedure to generate a single clock event. In order to use Pump you must set the Mode to tcmExternal. If there is a higher level pump in the chain such as hardware device the Pump procedure will be ignored. The highest level pump in the chain serves as a master pump and obtains full control of the pumping.
Delphi example:
TLClockGen1.Pump();
C++ Builder example:
TLClockGen1->Pump();
Visual C++(MFC) example:
TLClockGen1.Pump();
C# Example:
<c>clockGen1.Pump();</c>
Visual C++/CLI example:
clockGen1->Pump();
C# Example:
clockGen1.Pump();
VB Example:
ClockGen1.Pump