20 lines
431 B
C#
20 lines
431 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Future.Platform
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 等待控制:等待同步时序信号变更为期望的信号再执行
|
|||
|
|
/// </summary>
|
|||
|
|
internal class Wait
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 检查同步信号的频率
|
|||
|
|
/// </summary>
|
|||
|
|
public int Internal { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|