在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → LabWindowsCVI虚拟仪器测试技术及工程应用源程序代码实例

LabWindowsCVI虚拟仪器测试技术及工程应用源程序代码实例

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:65.51M
  • 下载次数:9
  • 浏览次数:151
  • 发布时间:2020-08-08
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
LabWindowsCVI虚拟仪器测试技术及工程应用光盘代码实例
【实例截图】
【核心代码】
LabWindowsCVI技术及工程应用_代码
└── LabWindowsCVI技术及工程应用_代码
├── 10
│   ├── depends
│   │   ├── depends.cnt
│   │   ├── depends.dll
│   │   ├── depends.exe
│   │   ├── depends.GID
│   │   └── depends.hlp
│   └── dll
│   ├── dll显式调用
│   │   ├── cvibuild.dllexe
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── dllexe.nidobj
│   │   │   ├── dllsample.nidobj
│   │   │   └── resources.res
│   │   ├── cvibuild.dllsample
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── dllsample.nidobj
│   │   │   └── resources.res
│   │   ├── dll.cws
│   │   ├── dllexe.c
│   │   ├── dllexe.cws
│   │   ├── dllexe_dbg.cdb
│   │   ├── dllexe_dbg.exe
│   │   ├── dllexe.h
│   │   ├── dllexe.prj
│   │   ├── dllexe.uir
│   │   ├── dllsample.c
│   │   ├── dllsample.cdb
│   │   ├── dllsample.cws
│   │   ├── dllsample.dll
│   │   ├── dllsample.h
│   │   ├── dllsample.lib
│   │   ├── dllsample.obj
│   │   └── dllsample.prj
│   ├── 创建dll(无界面)
│   │   ├── cvibuild.dllexe
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── dllexe.nidobj
│   │   │   └── resources.res
│   │   ├── cvibuild.dllsample
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── dllsample.nidobj
│   │   │   └── resources.res
│   │   ├── dllexe.c
│   │   ├── dllexe.cws
│   │   ├── dllexe_dbg.cdb
│   │   ├── dllexe_dbg.exe
│   │   ├── dllexe.h
│   │   ├── dllexe.prj
│   │   ├── dllexe.uir
│   │   ├── dllsample.c
│   │   ├── dllsample.cdb
│   │   ├── dllsample.cws
│   │   ├── dllsample.dll
│   │   ├── dllsample.h
│   │   ├── dllsample.lib
│   │   └── dllsample.prj
│   ├── 创建dll(有界面)
│   │   ├── cvibuild.dll
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── dllmain.nidobj
│   │   │   ├── dll.nidobj
│   │   │   └── resources.res
│   │   ├── dll.c
│   │   ├── dll.cdb
│   │   ├── dll.cws
│   │   ├── dll.dll
│   │   ├── dll.exe
│   │   ├── dll.h
│   │   ├── dll.lib
│   │   ├── dllmain.c
│   │   ├── dll.prj
│   │   ├── dllres.h
│   │   └── dll.uir
│   ├── 创建lib
│   │   ├── cvibuild.dllexe
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── dllexe.nidobj
│   │   │   └── resources.res
│   │   ├── cvibuild.dllsample
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── dllsample.nidobj
│   │   │   ├── dllsample.niobj
│   │   │   └── resources.res
│   │   ├── dllexe.c
│   │   ├── dllexe.cws
│   │   ├── dllexe_dbg.cdb
│   │   ├── dllexe_dbg.exe
│   │   ├── dllexe.h
│   │   ├── dllexe.prj
│   │   ├── dllexe.uir
│   │   ├── dllsample.c
│   │   ├── dllsample.cws
│   │   ├── dllsample.h
│   │   ├── dllsample.lib
│   │   └── dllsample.prj
│   └── 创建obj
│   ├── cvibuild.dllexe
│   │   ├── build.ini
│   │   ├── dependencies.bri
│   │   ├── dllexe.nidobj
│   │   └── resources.res
│   ├── cvibuild.dllsample
│   │   ├── build.ini
│   │   └── dllsample.niobj
│   ├── dllexe.c
│   ├── dllexe.cws
│   ├── dllexe_dbg.cdb
│   ├── dllexe_dbg.exe
│   ├── dllexe.h
│   ├── dllexe.prj
│   ├── dllexe.uir
│   ├── dllsample.c
│   ├── dllsample.cws
│   ├── dllsample.h
│   ├── dllsample.obj
│   └── dllsample.prj
├── 11
│   ├── asynchronous timer
│   │   ├── asynchronoustimer.c
│   │   ├── asynchronoustimer.cws
│   │   ├── asynchronoustimer_dbg.cdb
│   │   ├── asynchronoustimer_dbg.exe
│   │   ├── asynchronoustimer.h
│   │   ├── asynchronoustimer.prj
│   │   ├── asynchronoustimer.uir
│   │   └── cvibuild.asynchronoustimer
│   │   ├── asynchronoustimer.nidobj
│   │   ├── build.ini
│   │   ├── dependencies.bri
│   │   └── resources.res
│   ├── dragandrop
│   │   ├── cvibuild.dragandrop
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── dragandrop.nidobj
│   │   │   └── resources.res
│   │   ├── dragandrop.c
│   │   ├── dragandrop.cws
│   │   ├── dragandrop_dbg.cdb
│   │   ├── dragandrop_dbg.exe
│   │   ├── dragandrop.h
│   │   ├── dragandrop.prj
│   │   └── dragandrop.uir
│   ├── ini
│   │   ├── cvibuild.ini
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── ini.nidobj
│   │   │   └── resources.res
│   │   ├── ini.c
│   │   ├── ini.cws
│   │   ├── ini_dbg.cdb
│   │   ├── ini_dbg.exe
│   │   ├── ini.h
│   │   ├── ini.prj
│   │   └── ini.uir
│   ├── multithread
│   │   ├── cvibuild.multi thread
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── multi thread.nidobj
│   │   │   └── resources.res
│   │   ├── multi thread.c
│   │   ├── multi thread.cws
│   │   ├── multi thread_dbg.cdb
│   │   ├── multi thread_dbg.exe
│   │   ├── multi thread.h
│   │   ├── multi thread.prj
│   │   └── multi thread.uir
│   ├── tool bar
│   │   ├── about.ico
│   │   ├── copy.ico
│   │   ├── cut.ico
│   │   ├── cvibuild.tool bar
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── resources.res
│   │   │   └── tool bar.nidobj
│   │   ├── exit.ico
│   │   ├── menustatus.ini
│   │   ├── new.ico
│   │   ├── open.ico
│   │   ├── paste.ico
│   │   ├── print.ico
│   │   ├── save.ico
│   │   ├── tool bar.c
│   │   ├── tool bar.cws
│   │   ├── tool bar_dbg.cdb
│   │   ├── toolbar_dbg.cdb
│   │   ├── tool bar_dbg.exe
│   │   ├── tool bar.h
│   │   ├── tool bar.prj
│   │   ├── tool bar.uir
│   │   └── Toolbox.ico
│   └── tray
│   ├── cvibuild.系统参数
│   │   ├── build.ini
│   │   ├── dependencies.bri
│   │   ├── resources.res
│   │   └── 系统参数.nidobj
│   ├── hide.ico
│   ├── show.ico
│   ├── 系统参数.c
│   ├── 系统参数.cws
│   ├── 系统参数_dbg.cdb
│   ├── 系统参数_dbg.exe
│   ├── 系统参数.h
│   ├── 系统参数.prj
│   └── 系统参数.uir
├── 2
│   ├── callfunction
│   │   ├── callfunction.c
│   │   ├── callfunction.cws
│   │   ├── callfunction_dbg.cdb
│   │   ├── callfunction_dbg.exe
│   │   ├── callfunction.h
│   │   ├── callfunction.prj
│   │   ├── callfunction.uir
│   │   └── cvibuild.callfunction
│   │   ├── build.ini
│   │   ├── callfunction.nidobj
│   │   ├── dependencies.bri
│   │   └── resources.res
│   ├── 温度
│   │   ├── cvibuild.温度
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── resources.res
│   │   │   ├── 温度.nidobj
│   │   │   └── 温度.niobj
│   │   ├── cvidistkit.温度
│   │   │   └── Volume1
│   │   │   ├── bin
│   │   │   │   ├── dp
│   │   │   │   │   ├── DevPartDef.xml
│   │   │   │   │   ├── Distfile.cab
│   │   │   │   │   └── 温度.msi
│   │   │   │   ├── p0
│   │   │   │   │   ├── CVIRTE.msi
│   │   │   │   │   ├── CVIRTE.msi_chs.mst
│   │   │   │   │   ├── CVIRTE.msi_cht.mst
│   │   │   │   │   ├── CVIRTE.msi_deu.mst
│   │   │   │   │   ├── CVIRTE.msi_fra.mst
│   │   │   │   │   ├── CVIRTE.msi_jpn.mst
│   │   │   │   │   └── CVIRTE.msi_kor.mst
│   │   │   │   ├── p1
│   │   │   │   │   └── MU
│   │   │   │   │   ├── MetaUninstaller_mft.cab
│   │   │   │   │   ├── MetaUninstaller.msi
│   │   │   │   │   ├── MetaUninstaller.msi_chs.mst
│   │   │   │   │   ├── MetaUninstaller.msi_cht.mst
│   │   │   │   │   ├── MetaUninstaller.msi_deu.mst
│   │   │   │   │   ├── MetaUninstaller.msi_fra.mst
│   │   │   │   │   ├── MetaUninstaller.msi_jpn.mst
│   │   │   │   │   ├── MetaUninstaller.msi_kor.mst
│   │   │   │   │   └── MetaUninstallerR1.cab
│   │   │   │   ├── p2
│   │   │   │   │   └── MKL700
│   │   │   │   │   ├── deu.mst
│   │   │   │   │   ├── fra.mst
│   │   │   │   │   ├── jpn.mst
│   │   │   │   │   ├── kor.mst
│   │   │   │   │   ├── mib.cab
│   │   │   │   │   ├── mkl_mft.cab
│   │   │   │   │   └── mkl.msi
│   │   │   │   └── p3
│   │   │   │   └── MDF
│   │   │   │   ├── EulaDepot.msi
│   │   │   │   ├── EulaDepot.msi_chs.mst
│   │   │   │   ├── EulaDepot.msi_cht.mst
│   │   │   │   ├── EulaDepot.msi_deu.mst
│   │   │   │   ├── EulaDepot.msi_fra.mst
│   │   │   │   ├── EulaDepot.msi_jpn.mst
│   │   │   │   ├── EulaDepot.msi_kor.mst
│   │   │   │   ├── MDFSupport1.cab
│   │   │   │   ├── MDFSupport_mft.cab
│   │   │   │   ├── MDFSupport.msi
│   │   │   │   ├── MDFSupport.msi_chs.mst
│   │   │   │   ├── MDFSupport.msi_cht.mst
│   │   │   │   ├── MDFSupport.msi_deu.mst
│   │   │   │   ├── MDFSupport.msi_fra.mst
│   │   │   │   ├── MDFSupport.msi_jpn.mst
│   │   │   │   └── MDFSupport.msi_kor.mst
│   │   │   ├── license
│   │   │   │   ├── NI Released License Agreement - English.rtf
│   │   │   │   ├── NI Released License Agreement - French.rtf
│   │   │   │   ├── NI Released License Agreement - German.rtf
│   │   │   │   ├── NI Released License Agreement - Italian.rtf
│   │   │   │   ├── NI Released License Agreement - Japanese.rtf
│   │   │   │   ├── NI Released License Agreement - Korean.rtf
│   │   │   │   └── NI Released License Agreement - Spanish.rtf
│   │   │   ├── nidist.id
│   │   │   ├── readme.rtf
│   │   │   ├── setup.exe
│   │   │   ├── setup.ini
│   │   │   └── supportfiles
│   │   │   ├── customResource0009.dll
│   │   │   ├── instmsiw.exe
│   │   │   ├── merged.bin
│   │   │   ├── niPie.exe
│   │   │   └── NISysInf.dll
│   │   ├── readme.rtf
│   │   ├── 温度.c
│   │   ├── 温度.cds
│   │   ├── 温度.cws
│   │   ├── 温度_dbg.cdb
│   │   ├── 温度_dbg.exe
│   │   ├── 温度.exe
│   │   ├── 温度.h
│   │   ├── 温度.prj
│   │   └── 温度.uir
│   └── 温度-无UIR
│   ├── cvibuild.温度
│   │   ├── build.ini
│   │   ├── dependencies.bri
│   │   ├── resources.res
│   │   ├── 温度.nidobj
│   │   └── 温度-无UIR.nidobj
│   ├── 温度.c
│   ├── 温度.cws
│   ├── 温度_dbg.cdb
│   ├── 温度_dbg.exe
│   ├── 温度.h
│   ├── 温度.prj
│   ├── 温度.uir
│   ├── 温度-无UIR.c
│   └── 温度-无UIR.h
├── 3
│   ├── graph
│   │   ├── cvibuild.graph
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── graph.nidobj
│   │   │   └── resources.res
│   │   ├── graph.c
│   │   ├── graph.cws
│   │   ├── graph_dbg.cdb
│   │   ├── graph_dbg.exe
│   │   ├── graph.h
│   │   ├── graph.prj
│   │   └── graph.uir
│   ├── scroll bar
│   │   ├── cvibuild.scrollbar
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── resources.res
│   │   │   └── scrollbar.nidobj
│   │   ├── scrollbar.c
│   │   ├── scrollbar.cws
│   │   ├── scrollbar_dbg.cdb
│   │   ├── scrollbar_dbg.exe
│   │   ├── scrollbar.h
│   │   ├── scrollbar.prj
│   │   └── scrollbar.uir
│   ├── splitter
│   │   ├── cvibuild.splitter
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── resources.res
│   │   │   └── splitter.nidobj
│   │   ├── spliter_dbg.cdb
│   │   ├── spliter_dbg.exe
│   │   ├── splitter.c
│   │   ├── splitter.cws
│   │   ├── splitter.h
│   │   ├── splitter.prj
│   │   └── splitter.uir
│   ├── textlisttree
│   │   ├── cvibuild.textlisttree
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── resources.res
│   │   │   └── textlisttree.nidobj
│   │   ├── textlisttree.c
│   │   ├── textlisttree.cws
│   │   ├── textlisttree_dbg.cdb
│   │   ├── textlisttree_dbg.exe
│   │   ├── textlisttree.h
│   │   ├── textlisttree.prj
│   │   └── textlisttree.uir
│   ├── 弹出对话框
│   │   ├── cvibuild.popup
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── popup.nidobj
│   │   │   └── resources.res
│   │   ├── popup.c
│   │   ├── popup.cws
│   │   ├── popup_dbg.cdb
│   │   ├── popup_dbg.exe
│   │   ├── popup.h
│   │   ├── popup.prj
│   │   └── popup.uir
│   ├── 板球游戏
│   │   ├── 24Help.ico
│   │   ├── cvibuild.game
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── game.nidobj
│   │   │   └── resources.res
│   │   ├── game.c
│   │   ├── game.cws
│   │   ├── game_dbg.cdb
│   │   ├── game_dbg.exe
│   │   ├── game.h
│   │   ├── game.prj
│   │   └── game.uir
│   └── 计算器
│   ├── 1
│   │   ├── About.ico
│   │   ├── calc.c
│   │   ├── calc.cws
│   │   ├── calc_dbg.cdb
│   │   ├── calc_dbg.exe
│   │   ├── calc.h
│   │   ├── calc.prj
│   │   ├── calc.uir
│   │   ├── Copy.ico
│   │   ├── cvibuild.calc
│   │   │   ├── build.ini
│   │   │   ├── calc.nidobj
│   │   │   ├── dependencies.bri
│   │   │   └── resources.res
│   │   ├── money.ico
│   │   ├── quit.ICO
│   │   └── Top.ico
│   └── 2
│   ├── About.ico
│   ├── calc.c
│   ├── Calc.cds
│   ├── calc.cws
│   ├── calc_dbg.cdb
│   ├── calc_dbg.exe
│   ├── calc.exe
│   ├── calc.h
│   ├── calc.prj
│   ├── calc.uir
│   ├── Copy.ico
│   ├── cvibuild.calc
│   │   ├── build.ini
│   │   ├── calc.nidobj
│   │   ├── calc.niobj
│   │   ├── dependencies.bri
│   │   └── resources.res
│   ├── money.ico
│   ├── quit.ICO
│   ├── smartread4.h
│   ├── smartread4.lib
│   ├── smartread.dll
│   ├── Top.ico
│   ├── 图片.bmp
│   ├── 新建 文本文档.txt
│   └── 计算器.txt
├── 4
│   ├── 3D控件
│   │   ├── 3Dcontrol.c
│   │   ├── 3Dcontrol.cws
│   │   ├── 3Dcontrol_dbg.cdb
│   │   ├── 3Dcontrol_dbg.exe
│   │   ├── 3Dcontrol.h
│   │   ├── 3Dcontrol.prj
│   │   ├── 3Dcontrol.uir
│   │   └── cvibuild.3Dcontrol
│   │   ├── 3Dcontrol.nidobj
│   │   ├── build.ini
│   │   ├── dependencies.bri
│   │   └── resources.res
│   ├── graph cursor
│   │   ├── cvibuild.graphcursor
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── graphcursor.nidobj
│   │   │   └── resources.res
│   │   ├── graphcursor.c
│   │   ├── graphcursor.cws
│   │   ├── graphcursor_dbg.cdb
│   │   ├── graphcursor_dbg.exe
│   │   ├── graphcursor.h
│   │   ├── graphcursor.prj
│   │   └── graphcursor.uir
│   ├── hotring
│   │   ├── cvibuild.hotring
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── hotring.nidobj
│   │   │   └── resources.res
│   │   ├── hotring.c
│   │   ├── hotring.cws
│   │   ├── hotring_dbg.cdb
│   │   ├── hotring_dbg.exe
│   │   ├── hotring.h
│   │   ├── hotring.prj
│   │   └── hotring.uir
│   ├── 动画控件
│   │   ├── animationcontroler.c
│   │   ├── animationcontroler.cws
│   │   ├── animationcontroler_dbg.cdb
│   │   ├── animationcontroler_dbg.exe
│   │   ├── animationcontroler.h
│   │   ├── animationcontroler.prj
│   │   ├── animationcontroler.uir
│   │   └── cvibuild.animationcontroler
│   │   ├── animate.nidobj
│   │   ├── animationcontroler.nidobj
│   │   ├── build.ini
│   │   ├── dependencies.bri
│   │   └── resources.res
│   ├── 密码操作
│   │   ├── cvibuild.userandpassword
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── resources.res
│   │   │   └── userandpassword.nidobj
│   │   ├── userandpassword.c
│   │   ├── userandpassword.cws
│   │   ├── userandpassword_dbg.cdb
│   │   ├── userandpassword_dbg.exe
│   │   ├── userandpassword.h
│   │   ├── userandpassword.prj
│   │   └── userandpassword.uir
│   ├── 帮助文件制作
│   │   ├── cvibuild.helpsample
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── helpsample.nidobj
│   │   │   └── resources.res
│   │   ├── helpsample.c
│   │   ├── helpsample.cws
│   │   ├── helpsample_dbg.cdb
│   │   ├── helpsample_dbg.exe
│   │   ├── helpsample.h
│   │   ├── helpsample.prj
│   │   ├── helpsample.uir
│   │   ├── input.GID
│   │   ├── input.hlp
│   │   ├── input.txt
│   │   ├── PINTLGNT.GID
│   │   ├── sounds.chm
│   │   ├── sounds.chw
│   │   └── workshop.GID
│   └── 文件操作
│   ├── cvibuild.fileio
│   │   ├── build.ini
│   │   ├── dependencies.bri
│   │   ├── fileio.nidobj
│   │   └── resources.res
│   ├── fileio.c
│   ├── fileio.cws
│   ├── fileio_dbg.cdb
│   ├── fileio_dbg.exe
│   ├── fileio.h
│   ├── fileio.prj
│   └── fileio.uir
├── 5
│   ├── Pc-6330D
│   │   ├── cvibuild.Pc6330
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── Pc6330.nidobj
│   │   │   └── resources.res
│   │   ├── Pc6330.c
│   │   ├── Pc6330.cws
│   │   ├── Pc6330_dbg.cdb
│   │   ├── Pc6330_dbg.exe
│   │   ├── Pc6330.doc
│   │   ├── Pc6330.h
│   │   ├── Pc6330.prj
│   │   └── Pc6330.uir
│   ├── PCI-6023E
│   │   ├── cvibuild.NI-DAQmx
│   │   │   ├── build.ini
│   │   │   ├── DAQTaskInProject.nidobj
│   │   │   ├── dependencies.bri
│   │   │   ├── NI-DAQmx.nidobj
│   │   │   └── resources.res
│   │   ├── DAQTaskInProject.c
│   │   ├── DAQTaskInProject.h
│   │   ├── DAQTaskInProject.mxb
│   │   ├── NI-DAQmx.c
│   │   ├── NI-DAQmx.cws
│   │   ├── NI-DAQmx_dbg.cdb
│   │   ├── NI-DAQmx_dbg.exe
│   │   ├── NI-DAQmx.h
│   │   ├── NI-DAQmx.prj
│   │   └── NI-DAQmx.uir
│   ├── PCI-6023E1
│   │   ├── cvibuild.PCI-6023E1
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── PCI-6023E1.nidobj
│   │   │   └── resources.res
│   │   ├── PCI-6023E1.c
│   │   ├── PCI-6023E1.cws
│   │   ├── PCI-6023E1_dbg.cdb
│   │   ├── PCI-6023E1_dbg.exe
│   │   ├── PCI-6023E1.h
│   │   ├── PCI-6023E1.prj
│   │   └── PCI-6023E1.uir
│   └── PCI-8333
│   ├── cvibuild.pci8333
│   │   ├── build.ini
│   │   ├── dependencies.bri
│   │   ├── pci8333.nidobj
│   │   └── resources.res
│   ├── Module1.bas
│   ├── MSSCCPRJ.SCC
│   ├── pci8333.c
│   ├── pci8333.cws
│   ├── pci8333_dbg.cdb
│   ├── pci8333_dbg.exe
│   ├── PCI-8333.doc
│   ├── pci8333.h
│   ├── pci8333.prj
│   ├── pci8333.uir
│   ├── pci8333驱动及实例
│   │   ├── 8333_drv.exe
│   │   └── 8333test_vb.exe
│   ├── PCI8KP.DLL
│   ├── PCI8KP.H
│   └── PCI8KP.lib
├── 6
│   ├── filter
│   │   ├── cvibuild.filter
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── filter.nidobj
│   │   │   └── resources.res
│   │   ├── filter.c
│   │   ├── filter.cws
│   │   ├── filter_dbg.cdb
│   │   ├── filter_dbg.exe
│   │   ├── filter.h
│   │   ├── filter.prj
│   │   └── filter.uir
│   ├── frequency domain
│   │   ├── cvibuild.frequencydomainanalysis
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── frequencydomainanalysis.nidobj
│   │   │   └── resources.res
│   │   ├── frequencydomainanalysis.c
│   │   ├── frequencydomainanalysis.cws
│   │   ├── frequencydomainanalysis_dbg.cdb
│   │   ├── frequencydomainanalysis_dbg.exe
│   │   ├── frequencydomainanalysis.h
│   │   ├── frequencydomainanalysis.prj
│   │   └── frequencydomainanalysis.uir
│   ├── signal generation
│   │   ├── cvibuild.signal generation
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── resources.res
│   │   │   └── signal generation.nidobj
│   │   ├── signal generation.c
│   │   ├── signal generation.cws
│   │   ├── signal generation_dbg.cdb
│   │   ├── signal generation_dbg.exe
│   │   ├── signal generation.h
│   │   ├── signal generation.prj
│   │   └── signal generation.uir
│   └── time domain
│   ├── cvibuild.timedomainanalysis
│   │   ├── build.ini
│   │   ├── dependencies.bri
│   │   ├── resources.res
│   │   └── timedomainanalysis.nidobj
│   ├── timedomainanalysis.c
│   ├── timedomainanalysis.cws
│   ├── timedomainanalysis_dbg.cdb
│   ├── timedomainanalysis_dbg.exe
│   ├── timedomainanalysis.h
│   ├── timedomainanalysis.prj
│   └── timedomainanalysis.uir
├── 7
│   ├── dde
│   │   ├── cvibuild.ddesample
│   │   │   ├── build.ini
│   │   │   ├── ddesample.nidobj
│   │   │   ├── dependencies.bri
│   │   │   └── resources.res
│   │   ├── ddesample.c
│   │   ├── ddesample.cws
│   │   ├── ddesample_dbg.cdb
│   │   ├── ddesample_dbg.exe
│   │   ├── ddesample.h
│   │   ├── ddesample.prj
│   │   ├── ddesample.uir
│   │   └── wjx.xls
│   ├── rs232
│   │   ├── rs232文件发送程序
│   │   │   ├── 232.c
│   │   │   ├── 232.cws
│   │   │   ├── 232_dbg.cdb
│   │   │   ├── 232_dbg.exe
│   │   │   ├── 232.exe
│   │   │   ├── 232.h
│   │   │   ├── 232.prj
│   │   │   ├── 232.uir
│   │   │   ├── cvibuild.232
│   │   │   │   ├── 232.nidobj
│   │   │   │   ├── 232.niobj
│   │   │   │   ├── build.ini
│   │   │   │   ├── dependencies.bri
│   │   │   │   └── resources.res
│   │   │   ├── cvidistkit.232
│   │   │   │   ├── 232.msi
│   │   │   │   ├── DistFile.cab
│   │   │   │   ├── instmsi.exe
│   │   │   │   ├── instmsiw.exe
│   │   │   │   ├── setup.exe
│   │   │   │   └── setup.ini
│   │   │   ├── notepad.exe
│   │   │   └── 文件传输.exe
│   │   └── rs232文件接收程序
│   │   ├── 232.c
│   │   ├── 232.cws
│   │   ├── 232_dbg.cdb
│   │   ├── 232_dbg.exe
│   │   ├── 232.h
│   │   ├── 232.prj
│   │   ├── 232.uir
│   │   ├── cvibuild.232
│   │   │   ├── 232.nidobj
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   └── resources.res
│   │   └── 文件传输
│   │   ├── 232.msi
│   │   ├── DistFile.cab
│   │   ├── instmsi.exe
│   │   ├── instmsiw.exe
│   │   ├── setup.exe
│   │   └── setup.ini
│   ├── RS-232与外部设备接口
│   │   ├── cvibuild.RS232实例
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── resources.res
│   │   │   └── RS232实例.nidobj
│   │   ├── RS232实例.c
│   │   ├── RS232实例.cws
│   │   ├── RS232实例_dbg.cdb
│   │   ├── RS232实例_dbg.exe
│   │   ├── RS232实例.h
│   │   ├── RS232实例.prj
│   │   └── RS232实例.uir
│   └── 串口调试助手
│   └── UartAssis.exe
├── 8
│   ├── DataSocket
│   │   ├── cvibuild.datasocket
│   │   │   ├── build.ini
│   │   │   ├── datasocket.nidobj
│   │   │   ├── datasocket.niobj
│   │   │   ├── dependencies.bri
│   │   │   └── resources.res
│   │   ├── datasocket.c
│   │   ├── Datasocket.cds
│   │   ├── datasocket.cws
│   │   ├── datasocket_dbg.cdb
│   │   ├── datasocket_dbg.exe
│   │   ├── datasocket.exe
│   │   ├── datasocket.h
│   │   ├── datasocket.prj
│   │   └── datasocket.uir
│   ├── polling
│   │   ├── client
│   │   │   ├── cvibuild.pollingclient
│   │   │   │   ├── build.ini
│   │   │   │   ├── dependencies.bri
│   │   │   │   ├── pollingclient.nidobj
│   │   │   │   └── resources.res
│   │   │   ├── pollingclient.c
│   │   │   ├── pollingclient.cws
│   │   │   ├── pollingclient_dbg.cdb
│   │   │   ├── pollingclient_dbg.exe
│   │   │   ├── pollingclient.h
│   │   │   ├── pollingclient.prj
│   │   │   └── pollingclient.uir
│   │   └── server
│   │   ├── cvibuild.pollingserver
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── pollingserver.nidobj
│   │   │   └── resources.res
│   │   ├── pollingserver.c
│   │   ├── pollingserver.cws
│   │   ├── pollingserver_dbg.cdb
│   │   ├── pollingserver_dbg.exe
│   │   ├── pollingserver.h
│   │   ├── pollingserver.prj
│   │   └── pollingserver.uir
│   └── TCP
│   ├── TCPClient
│   │   ├── cvibuild.tcp
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── resources.res
│   │   │   └── tcp.nidobj
│   │   ├── tcp.c
│   │   ├── tcp.cws
│   │   ├── tcp_dbg.cdb
│   │   ├── tcp_dbg.exe
│   │   ├── tcp.h
│   │   ├── tcp.prj
│   │   └── tcp.uir
│   └── TCPServer
│   ├── cvibuild.tcp
│   │   ├── build.ini
│   │   ├── dependencies.bri
│   │   ├── resources.res
│   │   └── tcp.nidobj
│   ├── tcp.c
│   ├── tcp.cws
│   ├── tcp_dbg.cdb
│   ├── tcp_dbg.exe
│   ├── tcp.h
│   ├── tcp.prj
│   └── tcp.uir
└── 9
├── api
│   ├── 图形操作
│   │   ├── cvibuild.shapeoperate
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── resources.res
│   │   │   └── shapeoperate.nidobj
│   │   ├── shapeoperate.c
│   │   ├── shapeoperate.cws
│   │   ├── shapeoperate_dbg.cdb
│   │   ├── shapeoperate_dbg.exe
│   │   ├── shapeoperate.h
│   │   ├── shapeoperate.prj
│   │   └── shapeoperate.uir
│   ├── 拖拽
│   │   ├── cvibuild.draganddrop
│   │   │   ├── build.ini
│   │   │   ├── dependencies.bri
│   │   │   ├── draganddrop.nidobj
│   │   │   └── resources.res
│   │   ├── draganddrop.c
│   │   ├── draganddrop.cws
│   │   ├── draganddrop_dbg.cdb
│   │   ├── draganddrop_dbg.exe
│   │   ├── draganddrop.h
│   │   ├── draganddrop.prj
│   │   └── draganddrop.uir
│   └── 驱蚊
│   ├── cvibuild.mos
│   │   ├── build.ini
│   │   ├── dependencies.bri
│   │   ├── mos.nidobj
│   │   └── resources.res
│   ├── kernel32.h
│   ├── kernel32.lib
│   ├── mo.h
│   ├── mos.c
│   ├── mos.cws
│   ├── mos_dbg.cdb
│   ├── mos_dbg.exe
│   ├── mos.h
│   ├── mos.prj
│   └── mos.uir
└── reg
├── 删除增加工具栏按键
│   ├── cvibuild.regoperation
│   │   ├── build.ini
│   │   ├── dependencies.bri
│   │   ├── regoperation.nidobj
│   │   └── resources.res
│   ├── hoticon.ico
│   ├── icon.ico
│   ├── regoperation.c
│   ├── regoperation.cws
│   ├── regoperation_dbg.cdb
│   ├── regoperation_dbg.exe
│   ├── regoperation.h
│   ├── regoperation.prj
│   ├── regoperation.uir
│   ├── 新建 文本文档 (2).txt
│   ├── 新建 文本文档 (3).txt
│   └── 新建 文本文档.txt
└── 起动运行
├── cvibuild.startrun
│   ├── build.ini
│   ├── dependencies.bri
│   ├── resources.res
│   └── startrun.nidobj
├── startrun.c
├── startrun.cws
├── startrun_dbg.cdb
├── startrun_dbg.exe
├── startrun.h
├── startrun.prj
└── startrun.uir

142 directories, 762 files

标签:

实例下载地址

LabWindowsCVI虚拟仪器测试技术及工程应用源程序代码实例

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警