代码搜索:以太网同步

找到约 2,725 项符合「以太网同步」的源代码

代码结果 2,725
www.eeworm.com/read/406209/11447817

c main.c

//******************************************** //采用TMS320F2812实现二相永磁同步电机的磁场定向控制 //文件名称:PMSM3_1.C //******************************************* //#include "IQmathLib.h"/*包含IQmath库函数的头文件*/ //void m
www.eeworm.com/read/400461/11576207

c main.c

//******************************************** //采用TMS320F2812实现二相永磁同步电机的磁场定向控制 //文件名称:PMSM3_1.C //******************************************* //#include "IQmathLib.h"/*包含IQmath库函数的头文件*/ //void m
www.eeworm.com/read/345339/11819055

vhd data_scanc.vhd

library IEEE; use IEEE.STD_LOGIC_1164.all; use IEEE.STD_LOGIC_UNSIGNED.ALL; entity data_scanC is PORT( sys_clk : in STD_LOGIC; --系统同步时钟 k_data : in STD_LOGIC; --键盘数据 k
www.eeworm.com/read/153613/12021515

txt send.txt

library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; --发送端程序 entity send is Port ( clk : in std_logic; --同步时钟 start : in std_logic;
www.eeworm.com/read/124343/14571312

html 1858.html

linux知识宝库/mysql/MYSQL的master/slave数据同步配置
www.eeworm.com/read/117623/14911352

htm odbg 中 的 同 步 与 异 步 .htm

ODBC中的同步与异步执行模式
www.eeworm.com/read/474613/6813993

bas modwin.bas

Attribute VB_Name = "modWin" Public iniOp As clsIniOp '定义一个对象 Public m_ud As CUpDown Public strServer As String '定义时间服务器 Public valTimer As Long '定义时间同步频率 Public ckRun As Long '是否开
www.eeworm.com/read/110097/15464082

java app14_7.java

// app14_7, 没有同步处理的线程 class CBank { private static int sum=0; public static void add(int n){ int tmp=sum; tmp=tmp+n; // 累加汇款总额 try{ Thread.sleep((int)(1000*M
www.eeworm.com/read/110340/15536183

java app14_7.java

// app14_7, 没有同步处理的线程 class CBank { private static int sum=0; public static void add(int n){ int tmp=sum; tmp=tmp+n; // 累加汇款总额 try{ Thread.sleep((int)(1000*M
www.eeworm.com/read/192685/8362662

txt 怎样做来确保数据的实时性.txt

ADO中 没有 refresh 方法,但是有 requery 方法。客户端所有打开的recordset全部是在内存中的。也就是说如果想实现数据库和recordset的完全同步并不是件容易的事情。 解决的方法,我就想到这些。 1、想要服务器定时发回,太简单了,客户端有个timer控件,每次都rs.requery一下就OK了。 2、上面并不是完全的同步,如果想服 ...