├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_request_template.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── advanced-sysdef-api ├── README.md └── Source │ ├── Advanced System Definition API.lvproj │ ├── Menus │ └── functions_ni_lib_Advanced_SysDef_API.mnu │ ├── SysDef API │ ├── Advanced System Definition.lvlib │ ├── SysDef.CreateChannel.vi │ ├── SysDef.CreateDescription.vi │ ├── SysDef.CreateSection.vi │ ├── SysDef.CreateWaveform.vi │ ├── SysDef.Item.Remove.vi │ ├── SysDef.Node.Info.vi │ ├── SysDef.Node.Pointer.Get.vi │ ├── SysDef.Property.Get.vi │ ├── SysDef.Property.Remove.vi │ ├── SysDef.Property.Set.vi │ ├── SysDef.Rename.vi │ ├── SysDef.Search.vi │ ├── SysDef.Table.Set.vi │ ├── SysDef.UpdateCDVersionFromXML.vi │ ├── SysDef.Version.Get.vi │ └── SysDef.Version.Set.vi │ ├── _SubVIs │ ├── SysDef.Globals.vi │ ├── SysDef.Node.Info.Get.vi │ ├── SysDef.Property.Get.Boolean.vi │ ├── SysDef.Property.Get.DBL.Array.vi │ ├── SysDef.Property.Get.DBL.vi │ ├── SysDef.Property.Get.DependentFile.vi │ ├── SysDef.Property.Get.I32.Array.vi │ ├── SysDef.Property.Get.I32.vi │ ├── SysDef.Property.Get.Node.vi │ ├── SysDef.Property.Get.Path.vi │ ├── SysDef.Property.Get.String.Array.vi │ ├── SysDef.Property.Get.String.vi │ ├── SysDef.Property.Get.U16.vi │ ├── SysDef.Property.Get.U32.Array.vi │ ├── SysDef.Property.Get.U32.vi │ ├── SysDef.Property.Get.Variant.vi │ ├── SysDef.Property.Set.Boolean.vi │ ├── SysDef.Property.Set.DBL.Array.vi │ ├── SysDef.Property.Set.DBL.vi │ ├── SysDef.Property.Set.DependentFile.vi │ ├── SysDef.Property.Set.I32.Array.vi │ ├── SysDef.Property.Set.I32.vi │ ├── SysDef.Property.Set.Node.vi │ ├── SysDef.Property.Set.Path.vi │ ├── SysDef.Property.Set.String.Array.vi │ ├── SysDef.Property.Set.String.vi │ ├── SysDef.Property.Set.U16.vi │ ├── SysDef.Property.Set.U32.Array.vi │ ├── SysDef.Property.Set.U32.vi │ ├── SysDef.Property.Set.Variant.vi │ ├── SysDef.Search.GUID.vi │ ├── SysDef.Search.GUIDs.vi │ ├── SysDef.Search.Name.vi │ ├── SysDef.Search.Parent.vi │ ├── SysDef.Search.Target.vi │ ├── Sysdef.LoadFile.vi │ ├── TreeItem.Get.vi │ ├── TreeItem.Property.Get.vi │ ├── TreeItem.Property.Set.vi │ ├── _TreeItem.Property.Get.Dictionary.Info.vi │ ├── _TreeItem.Property.Get.Dictionary.Read.vi │ ├── _TreeItem.Property.Get.Dictionary.vi │ ├── _TreeItem.Property.Set.Dictionary.Info.vi │ ├── _TreeItem.Property.Set.Dictionary.Write.vi │ └── _TreeItem.Property.Set.Dictionary.vi │ └── _Types │ ├── Dictionary Item.ctl │ ├── File.DataType.ctl │ ├── Property.DependentFile.ctl │ ├── Property.Dictionary.ctl │ ├── SysDef.Export.ctl │ ├── TreeItem.Info.ctl │ ├── TreeItem.Property.ctl │ └── TreeItem.ctl ├── azure-pipelines.yml ├── control ├── control_custom_device_labview_support_common ├── control_lvmm ├── custom-device-labview-common └── Source │ ├── Custom Device Common.lvproj │ ├── Menus │ ├── RT │ │ └── dir.mnu │ └── Windows │ │ └── dir.mnu │ └── Utilities │ └── Post-Build Action.vi ├── custom-device-serialization ├── README.md └── Source │ ├── Custom Device Serialization.lvproj │ ├── Custom Device Serialization │ ├── Add BaseNodeType Child.vi │ ├── Custom Device Serialization.lvlib │ ├── Export.vi │ ├── Force Remove Item.vi │ ├── Get Item Name.vi │ ├── Get System Definition Schema Path.vi │ ├── Import as Child.vi │ ├── Import in Place.vi │ ├── Import.vi │ ├── Item Ref to BaseNodeType.vi │ ├── Load BaseNodeType from System Storage File.vi │ ├── NI VeriStand - Visually Update the System Explorer Tree.vi │ ├── Remove Broken Mappings.vi │ ├── Rename BaseNodeType if not Empty.vi │ ├── Reroll BaseNodeType Identifiers.vi │ ├── Save BaseNodeType to System Storage File.vi │ └── System Explorer Action.ctl │ └── Menus │ └── functions_ni_lib_VeriStand_Custom_Device_Serialization.mnu ├── docs ├── error_codes.md └── error_codes_files │ ├── Copy Errors to Built Directory.vi │ └── custom-device-development-tools-errors.txt ├── encoding-decoding ├── Docs │ └── EncodingAndDecoding-errors.txt ├── Source │ ├── BCD Decode Integer.vim │ ├── BCD Decode.vim │ ├── BCD Encode Integer.vim │ ├── BCD Encode.vim │ ├── BNR Decode Integer.vim │ ├── BNR Decode.vim │ ├── BNR Encode Integer.vim │ ├── BNR Encode.vim │ ├── Copy Encoding Errors to Built Directory.vi │ ├── Encoding and Decoding.lvlib │ ├── Encoding and Decoding.lvproj │ ├── Encoding.ctl │ ├── Get Bits Per Digit from Base.vi │ ├── Parity.ctl │ ├── Scale.vim │ ├── Unscale.vim │ ├── Update Bit Field.vim │ └── Write Parity.vim └── Tests │ ├── BCD │ ├── BCD.lvclass │ ├── setUp.vi │ ├── tearDown.vi │ ├── test Data Types (Integer Decoding).vi │ ├── test Data Types.vi │ ├── test Data Width 1 to 64.vi │ ├── test Data Width and Data Loss Error (Integer).vi │ ├── test Data Width and Data Loss Error.vi │ ├── test Scaling and Unscaling.vi │ └── test Signed and Unsigned.vi │ ├── BNR │ ├── BNR.lvclass │ ├── setUp.vi │ ├── tearDown.vi │ ├── test Data Types.vi │ ├── test Data Width 1 to 53.vi │ ├── test Data Width and Data Loss Error.vi │ ├── test Scaled and Unscaled.vi │ └── test Signed and Unsigned.vi │ ├── Discrete │ ├── Discrete.lvclass │ ├── setUp.vi │ ├── tearDown.vi │ ├── test Update Discrete Bit Field by Data Type.vi │ ├── test Update Discrete Bit Field by Index.vi │ └── test Update Discrete Bit Field.vi │ └── Parity │ ├── Parity.lvclass │ ├── setUp.vi │ ├── tearDown.vi │ ├── test Set Even Parity by Index.vi │ ├── test Set Odd Parity by Index.vi │ └── test Set Parity.vi ├── error-api └── Source │ ├── Clear All Errors.vi │ ├── Clear Error.vi │ ├── Menus │ ├── Controls │ │ └── controls_ni_lib_VeriStand_Error_API.mnu │ └── Functions │ │ └── functions_ni_lib_VeriStand_Error_API.mnu │ ├── Read All Errors.vi │ ├── Read Error.vi │ ├── Throw Error.vi │ ├── VeriStand Error API.lvlib │ ├── VeriStand Error API.lvproj │ └── VeriStand Error.ctl ├── hardware-discovery ├── README.md └── Source │ ├── Hardware Resource Discovery.lvproj │ ├── Menus │ └── NI VeriStand Hardware Resource Discovery.mnu │ └── vi.lib │ └── NI │ └── NI VeriStand Hardware Resource Discovery │ ├── NIVS Hardware Discovery.lvlib │ ├── Select Device Dialog.vi │ ├── _SubVIs │ ├── Create Resource Name.vi │ ├── Get PXI Device List.vi │ ├── Get Target IP Address.vi │ └── Refresh Available Resources(High Level).vi │ └── _Types │ └── Filter Type.ctl ├── html-help-tools └── Source │ ├── Compiled HTML Menu Tool │ ├── Compile HTML Menu Tool.lvproj │ ├── Menus │ │ └── functions_ni_lib_Compiled_HTML_Menu_Tool.mnu │ ├── Post-Build Action.vi │ ├── project │ │ ├── Compiled Help Menu Wizard.vi │ │ └── _Compiled HTML Menu Tool │ │ │ ├── Build CHM.vi │ │ │ ├── HTML Help Source │ │ │ ├── css │ │ │ │ ├── VSsystemexplorer.css │ │ │ │ └── expandable_tree.css │ │ │ └── js │ │ │ │ ├── Globals.js │ │ │ │ ├── arraytools.js │ │ │ │ ├── checkinstalled.js │ │ │ │ ├── common.js │ │ │ │ ├── cssframes.js │ │ │ │ ├── domtools.js │ │ │ │ ├── dynamiccontent.js │ │ │ │ ├── dynamicjumps.js │ │ │ │ ├── dynamiclinks.js │ │ │ │ ├── expandable_tree.js │ │ │ │ ├── feedbacklink.js │ │ │ │ ├── initpagedyn.js │ │ │ │ ├── launchhelp.js │ │ │ │ ├── linking.js │ │ │ │ ├── objectnames.js │ │ │ │ ├── osbrowser.js │ │ │ │ ├── pdf.js │ │ │ │ ├── polyviselect.js │ │ │ │ ├── stylesheets.js │ │ │ │ ├── variables.js │ │ │ │ └── web.js │ │ │ ├── Wizard │ │ │ ├── Copy Template Files.vi │ │ │ ├── Create HTML Files.vi │ │ │ ├── New CHM Wizard.vi │ │ │ └── Wizard State.ctl │ │ │ └── html_template.htm │ └── vi.lib │ │ ├── CHM Generator │ │ ├── Append Section to HHP.vi │ │ ├── Append String to HHP.vi │ │ ├── Append Value to HHP.vi │ │ ├── CHM Generator.lvclass │ │ ├── Compile CHM.vi │ │ ├── Generate HHP.vi │ │ ├── New.vi │ │ └── Write Files.vi │ │ ├── Keyed Value Tree │ │ ├── Get All Values.vi │ │ ├── Get Value.vi │ │ ├── Keyed Value Pair.ctl │ │ ├── Keyed Value Tree.lvclass │ │ └── Set Value.vi │ │ └── Load CHM Page.vi │ └── TOC Editor │ ├── Classes │ ├── TOC │ │ ├── Append Topic Ref.vi │ │ ├── Assets │ │ │ └── New TOC.txt │ │ ├── From XML.vi │ │ ├── TOC.lvclass │ │ └── To XML.vi │ ├── Topic │ │ ├── Add Key.vi │ │ ├── Append Subtopic.vi │ │ ├── Build Param List.vi │ │ ├── From XML.vi │ │ ├── Subtopics to XML.vi │ │ ├── To XML.vi │ │ └── Topic.lvclass │ └── XMLInterface │ │ ├── From XML.vi │ │ ├── Make XML Param.vi │ │ ├── Tag Text.vi │ │ ├── To XML.vi │ │ └── XmlInterface.lvclass │ ├── New Text Document.txt │ ├── TOC Editor.lvproj │ └── Test.vi ├── import-export └── Source │ ├── Export Custom Device Configuration.vi │ ├── File Interface Class │ ├── File Interface.lvclass │ ├── Get Pattern.vi │ ├── Read File.vi │ └── Write File.vi │ ├── Import Custom Device Configuration.vi │ ├── ImportExport.lvlib │ ├── Menus │ └── functions_ni_lib_VeriStand_Custom_Device_Import_and_Export_Tool.mnu │ ├── Pre-Import Action.vit │ ├── VeriStand Custom Device Import Export Tool.lvproj │ └── subVIs │ ├── Sysdef.SimpleExport.vi │ └── Sysdef.SimpleImport.vi ├── inline-async-api ├── README.md └── Source │ ├── Menus │ └── Categories │ │ └── VeriStand Development Tools │ │ ├── _functions_ni_lib_nivs_inline_async_api_1.mnu │ │ ├── _functions_ni_lib_nivs_inline_async_api_2.mnu │ │ ├── _functions_ni_lib_nivs_inline_async_api_3.mnu │ │ ├── _functions_ni_lib_nivs_inline_async_api_4.mnu │ │ └── functions_ni_lib_NIVS_Inline_Async_API.mnu │ ├── Project.lvproj │ └── vi.lib │ └── NI │ └── NIVS Inline Async API │ ├── _Data Access Engine │ ├── Access Type Classes │ │ ├── Read │ │ │ ├── Read.Close.vi │ │ │ ├── Read.EngineData.vi │ │ │ ├── Read.Initialize.vi │ │ │ ├── Read.ProcessData.Detect.vi │ │ │ ├── Read.ProcessData.vi │ │ │ ├── Read.ReadValues.vi │ │ │ └── Read.lvclass │ │ ├── ReadWrite │ │ │ ├── ReadWrite.Close.vi │ │ │ ├── ReadWrite.EngineData.vi │ │ │ ├── ReadWrite.Initialize.vi │ │ │ ├── ReadWrite.ProcessData.Buffer.vi │ │ │ ├── ReadWrite.ProcessData.Commit.vi │ │ │ ├── ReadWrite.ProcessData.Read.vi │ │ │ ├── ReadWrite.ProcessData.Reset.vi │ │ │ ├── ReadWrite.ProcessData.Write.vi │ │ │ ├── ReadWrite.ProcessData.vi │ │ │ ├── ReadWrite.ReadValues.vi │ │ │ └── ReadWrite.lvclass │ │ └── Write │ │ │ ├── Write.Buffer.vi │ │ │ ├── Write.Close.vi │ │ │ ├── Write.Commit.vi │ │ │ ├── Write.EngineData.vi │ │ │ ├── Write.Initialize.vi │ │ │ ├── Write.ProcessData.vi │ │ │ ├── Write.ReadValues.vi │ │ │ └── Write.lvclass │ ├── Data Access Engine.lvlib │ └── Data Access Engine │ │ ├── Data Access Engine.lvclass │ │ ├── Methods │ │ ├── Data.Engine.Close.vi │ │ ├── Data.Engine.Initialize.vi │ │ ├── Data.Engine.ReInitialize.vi │ │ ├── Data.Engine.Read Data from HW.vi │ │ ├── Data.Engine.Write Data to HW.vi │ │ ├── Data.Processes.Execute.vi │ │ ├── Data.Processes.Lookup.vi │ │ ├── Read.Data.Detect.vi │ │ ├── Read.Data.vi │ │ ├── Read.Lookup.vi │ │ ├── ReadWrite.Data.Buffer.vi │ │ ├── ReadWrite.Data.Commit.vi │ │ ├── ReadWrite.Data.Read.vi │ │ ├── ReadWrite.Data.Reset.vi │ │ ├── ReadWrite.Data.Write.vi │ │ ├── ReadWrite.Data.vi │ │ ├── ReadWrite.Lookup.vi │ │ ├── Write.Data.Buffer.vi │ │ ├── Write.Data.Commit.vi │ │ ├── Write.Data.vi │ │ └── Write.Lookup.vi │ │ └── Types │ │ ├── Read.DVR.ctl │ │ ├── ReadWrite.DVR.ctl │ │ ├── VS Channel Group Type.ctl │ │ └── Write.DVR.ctl │ ├── _Data Access System Explorer │ ├── Data Access System Explorer.lvlib │ ├── Methods │ │ └── Data.OnCompile.Execute.vi │ ├── SubVIs │ │ └── LUT.CreateEntry.vi │ └── Types │ │ ├── VS Channel Group Type.ctl │ │ └── VS Channel Ref Groups.ctl │ ├── _Template │ └── Async.Template.vit │ └── _VS Inline Async API │ ├── Error Handling Process │ ├── Display and Log Process.vi │ └── SubVIs │ │ ├── Error.ConvertArray.vi │ │ ├── Error.Format.vi │ │ ├── Error.GetError.vi │ │ ├── Error.Message.Format.vi │ │ └── Error.Tags.Check.vi │ ├── Process │ ├── Data Member Access │ │ ├── Read Data Access.vi │ │ ├── Read Name.vi │ │ ├── Read Process.Stop.vi │ │ ├── Read Process.Trigger.vi │ │ ├── Write Data Access.vi │ │ ├── Write Name.vi │ │ ├── Write Process.Stop.vi │ │ └── Write Process.Trigger.vi │ ├── Methods │ │ ├── Async.Processes.Report.vi │ │ └── Async.Processes.WaitonStart.vi │ └── Process.lvclass │ ├── VS Inline Async API.lvlib │ └── VS Inline Async API │ ├── Methods │ ├── Async.Engine.Close.vi │ ├── Async.Engine.Initialize.vi │ ├── Async.Engine.Read Data from HW.vi │ ├── Async.Engine.Start.vi │ ├── Async.Engine.Update Data Access.vi │ └── Async.Engine.Write Data to HW.vi │ ├── SubVIs │ ├── Close Error Handles.vi │ ├── Connect to Error Handles.vi │ ├── Display and Log Custom Device Error.vi │ ├── Initialize Global Stop.vi │ ├── Run Process.vi │ └── Stop Processes.vi │ ├── Types │ ├── Error Handling Settings.ctl │ └── Parameters.ctl │ └── VS Inline Async API.lvclass ├── lv-memory-manager ├── .gitignore ├── Development Utilities │ └── Build │ │ ├── Build Automation.lvlib │ │ ├── Close Progress Window.vi │ │ ├── Configure VI Blacklist.vi │ │ ├── Find Project Library.vi │ │ ├── Get All Library Classes.vi │ │ ├── Get All Library VIs.vi │ │ ├── New Progress Window.vi │ │ ├── Open and Save All Library VIs.vi │ │ ├── Post-Build Action.vi │ │ ├── Progress Window.vi │ │ ├── Save VI.vi │ │ ├── Set VI Debugging.vi │ │ ├── Set VI Inlining.vi │ │ ├── Set VI Reentrancy.vi │ │ ├── Set Window Progress.vi │ │ ├── Set Window Status.vi │ │ └── Stop Progress Window.vi ├── LabVIEW Memory Manager.lvproj ├── Menus │ ├── _functions_ni_lib_lv_memory_1.mnu │ ├── _functions_ni_lib_lv_memory_2.mnu │ ├── _functions_ni_lib_lv_memory_3.mnu │ ├── _functions_ni_lib_lv_memory_4.mnu │ └── functions_ni_lib_lv_memory.mnu ├── README.md └── Source │ ├── Classes │ └── Pointer │ │ ├── Adjust Copy Parameters.vi │ │ ├── Allocate.vi │ │ ├── Buffer Underflow.vi │ │ ├── Byte Order.ctl │ │ ├── Byte Order.vi │ │ ├── Check Bounds (Buffer).vi │ │ ├── Check Bounds (Pointer).vi │ │ ├── Check Bounds (Power of 2).vi │ │ ├── Check Bounds.vi │ │ ├── Check Count.vi │ │ ├── Check Equal Contents.vi │ │ ├── Check Equal Size.vi │ │ ├── Check Length.vi │ │ ├── Check Move.vi │ │ ├── Check Null Pointer.vi │ │ ├── Check Size.vi │ │ ├── Check.vi │ │ ├── Clear (No Check).vi │ │ ├── Clear.vi │ │ ├── Copy (No Check).vi │ │ ├── Copy All (No Check).vi │ │ ├── Copy All.vi │ │ ├── Copy.vi │ │ ├── Create Error.vi │ │ ├── Deallocate.vi │ │ ├── Duplicate.vi │ │ ├── Encapsulate.vi │ │ ├── Errors.ctl │ │ ├── Errors.vi │ │ ├── Get Address.vi │ │ ├── Get Internal.vi │ │ ├── Get Size.vi │ │ ├── Is Null.vi │ │ ├── Malleables │ │ ├── Allocate.vim │ │ ├── Read.vim │ │ ├── Sizeof.vim │ │ └── Write.vim │ │ ├── Null Pointer.vi │ │ ├── Out of Bounds.vi │ │ ├── Pointer Error Info.vi │ │ ├── Pointer.lvclass │ │ ├── Read (No Check) 1D Bool.vi │ │ ├── Read (No Check) 1D DBL.vi │ │ ├── Read (No Check) 1D I16.vi │ │ ├── Read (No Check) 1D I32.vi │ │ ├── Read (No Check) 1D I64.vi │ │ ├── Read (No Check) 1D I8.vi │ │ ├── Read (No Check) 1D SGL.vi │ │ ├── Read (No Check) 1D U16.vi │ │ ├── Read (No Check) 1D U32.vi │ │ ├── Read (No Check) 1D U64.vi │ │ ├── Read (No Check) 1D U8.vi │ │ ├── Read (No Check) Bool.vi │ │ ├── Read (No Check) DBL.vi │ │ ├── Read (No Check) I16.vi │ │ ├── Read (No Check) I32.vi │ │ ├── Read (No Check) I64.vi │ │ ├── Read (No Check) I8.vi │ │ ├── Read (No Check) SGL.vi │ │ ├── Read (No Check) String.vi │ │ ├── Read (No Check) U16.vi │ │ ├── Read (No Check) U32.vi │ │ ├── Read (No Check) U64.vi │ │ ├── Read (No Check) U8.vi │ │ ├── Read (No Check).vi │ │ ├── Read 1D Bool.vi │ │ ├── Read 1D DBL.vi │ │ ├── Read 1D I16.vi │ │ ├── Read 1D I32.vi │ │ ├── Read 1D I64.vi │ │ ├── Read 1D I8.vi │ │ ├── Read 1D SGL.vi │ │ ├── Read 1D U16.vi │ │ ├── Read 1D U32.vi │ │ ├── Read 1D U64.vi │ │ ├── Read 1D U8.vi │ │ ├── Read Bool.vi │ │ ├── Read DBL.vi │ │ ├── Read I16.vi │ │ ├── Read I32.vi │ │ ├── Read I64.vi │ │ ├── Read I8.vi │ │ ├── Read SGL.vi │ │ ├── Read String.vi │ │ ├── Read U16.vi │ │ ├── Read U32.vi │ │ ├── Read U64.vi │ │ ├── Read U8.vi │ │ ├── Read.vi │ │ ├── Set Address.vi │ │ ├── Set Internal.vi │ │ ├── Set Size.vi │ │ ├── Size Mismatch.vi │ │ ├── Stop │ │ ├── Assert Stop.vi │ │ ├── Create.vi │ │ └── Stop Pointer.lvclass │ │ ├── Subset.vi │ │ ├── Swap (No Check).vi │ │ ├── Swap.vi │ │ ├── Write (No Check) 1D Bool.vi │ │ ├── Write (No Check) 1D DBL.vi │ │ ├── Write (No Check) 1D I16.vi │ │ ├── Write (No Check) 1D I32.vi │ │ ├── Write (No Check) 1D I64.vi │ │ ├── Write (No Check) 1D I8.vi │ │ ├── Write (No Check) 1D SGL.vi │ │ ├── Write (No Check) 1D U16.vi │ │ ├── Write (No Check) 1D U32.vi │ │ ├── Write (No Check) 1D U64.vi │ │ ├── Write (No Check) 1D U8.vi │ │ ├── Write (No Check) Bool.vi │ │ ├── Write (No Check) DBL.vi │ │ ├── Write (No Check) I16.vi │ │ ├── Write (No Check) I32.vi │ │ ├── Write (No Check) I64.vi │ │ ├── Write (No Check) I8.vi │ │ ├── Write (No Check) SGL.vi │ │ ├── Write (No Check) String.vi │ │ ├── Write (No Check) U16.vi │ │ ├── Write (No Check) U32.vi │ │ ├── Write (No Check) U64.vi │ │ ├── Write (No Check) U8.vi │ │ ├── Write (No Check).vi │ │ ├── Write 1D Bool.vi │ │ ├── Write 1D DBL.vi │ │ ├── Write 1D I16.vi │ │ ├── Write 1D I32.vi │ │ ├── Write 1D I64.vi │ │ ├── Write 1D I8.vi │ │ ├── Write 1D SGL.vi │ │ ├── Write 1D U16.vi │ │ ├── Write 1D U32.vi │ │ ├── Write 1D U64.vi │ │ ├── Write 1D U8.vi │ │ ├── Write Bool.vi │ │ ├── Write DBL.vi │ │ ├── Write I16.vi │ │ ├── Write I32.vi │ │ ├── Write I64.vi │ │ ├── Write I8.vi │ │ ├── Write Pointer Size to Error.vi │ │ ├── Write SGL.vi │ │ ├── Write String.vi │ │ ├── Write U16.vi │ │ ├── Write U32.vi │ │ ├── Write U64.vi │ │ ├── Write U8.vi │ │ ├── Write.vi │ │ └── Zone.vi │ ├── Constants │ ├── Constants.vi │ ├── Library Name.vi │ └── Pointer Class Name.vi │ ├── Examples │ └── Memory Benchmark │ │ ├── Memory Benchmark Async.vi │ │ ├── Memory Benchmark.lvproj │ │ ├── Memory Benchmark.vi │ │ └── UI Pointers.ctl │ ├── Memory Manager.lvlib │ ├── Static Errors.lvlib │ ├── Tests │ ├── Memory Manager │ │ ├── Memory Manager Tests.lvlib │ │ └── Pointer Tests │ │ │ ├── Data Manipulation Tests │ │ │ ├── Data Manipulation Tests.lvclass │ │ │ ├── setUp.vi │ │ │ ├── tearDown.vi │ │ │ ├── test Boolean Data Integrity.vi │ │ │ ├── test Clear Data.vi │ │ │ ├── test Copy Equal Size.vi │ │ │ ├── test Copy To Larger Destinationvi.vi │ │ │ ├── test Copy To Smaller Destination.vi │ │ │ ├── test Duplicate.vi │ │ │ ├── test Float Data Integrity.vi │ │ │ ├── test Signed Integer Data Integrity.vi │ │ │ ├── test Swap Data.vi │ │ │ ├── test Unsigned Integer Data Integrity.vi │ │ │ └── testExample.vit │ │ │ ├── Lifecycle Tests │ │ │ ├── Lifecycle Tests.lvclass │ │ │ ├── setUp.vi │ │ │ ├── tearDown.vi │ │ │ ├── test Encapsulate.vi │ │ │ ├── test Pointer Lifecycle.vi │ │ │ ├── test Subset Pointer.vi │ │ │ └── testExample.vit │ │ │ └── Read Value Tests │ │ │ ├── Read Value Tests.lvclass │ │ │ ├── setUp.vi │ │ │ ├── tearDown.vi │ │ │ ├── test Write and Read Boolean Array.vi │ │ │ ├── test Write and Read Boolean.vi │ │ │ ├── test Write and Read Float Array.vi │ │ │ ├── test Write and Read Float.vi │ │ │ ├── test Write and Read Signed Integer Array.vi │ │ │ ├── test Write and Read Signed Integer.vi │ │ │ ├── test Write and Read Unsigned Integer Array.vi │ │ │ ├── test Write and Read Unsigned Integer.vi │ │ │ └── testExample.vit │ └── Static Errors │ │ ├── Creation │ │ ├── Creation.lvclass │ │ ├── setUp.vi │ │ ├── tearDown.vi │ │ ├── testCreation1024.vi │ │ ├── testCreation256.vi │ │ ├── testCreation512.vi │ │ └── testExample.vit │ │ ├── Parameter Setting │ │ ├── Parameter Setting.lvclass │ │ ├── setUp.vi │ │ ├── tearDown.vi │ │ ├── test Error Code.vi │ │ ├── test Float Writes to Source.vi │ │ ├── test IXX Writes to Source.vi │ │ ├── test Source.vi │ │ ├── test Status.vi │ │ ├── test String Writes to Source.vi │ │ ├── test UXX Writes to Source.vi │ │ └── testExample.vit │ │ └── Static Errors Tests.lvlib │ └── VIs │ ├── Include Limit in Compare String.vi │ ├── New Error Cluster (1024B).vi │ ├── New Error Cluster (256B).vi │ ├── New Error Cluster (512B).vi │ ├── New Error Cluster (Custom).vi │ ├── New Error Cluster.vi │ ├── Set Error Code.vi │ ├── Set Error Description.vi │ ├── Set Error Source.vi │ ├── Set Error Status.vi │ ├── Write Numeric Range to Source (Base08 I16).vi │ ├── Write Numeric Range to Source (Base08 I32).vi │ ├── Write Numeric Range to Source (Base08 I64).vi │ ├── Write Numeric Range to Source (Base08 I8).vi │ ├── Write Numeric Range to Source (Base08 U16).vi │ ├── Write Numeric Range to Source (Base08 U32).vi │ ├── Write Numeric Range to Source (Base08 U64).vi │ ├── Write Numeric Range to Source (Base08 U8).vi │ ├── Write Numeric Range to Source (Base10 I16).vi │ ├── Write Numeric Range to Source (Base10 I32).vi │ ├── Write Numeric Range to Source (Base10 I64).vi │ ├── Write Numeric Range to Source (Base10 I8).vi │ ├── Write Numeric Range to Source (Base10 U16).vi │ ├── Write Numeric Range to Source (Base10 U32).vi │ ├── Write Numeric Range to Source (Base10 U64).vi │ ├── Write Numeric Range to Source (Base10 U8).vi │ ├── Write Numeric Range to Source (Base16 I16).vi │ ├── Write Numeric Range to Source (Base16 I32).vi │ ├── Write Numeric Range to Source (Base16 I64).vi │ ├── Write Numeric Range to Source (Base16 I8).vi │ ├── Write Numeric Range to Source (Base16 U16).vi │ ├── Write Numeric Range to Source (Base16 U32).vi │ ├── Write Numeric Range to Source (Base16 U64).vi │ ├── Write Numeric Range to Source (Base16 U8).vi │ ├── Write Numeric Range to Source (DBL).vi │ ├── Write Numeric Range to Source (SGL).vi │ ├── Write Numeric Range to Source.vi │ ├── Write Numeric Scalar to Source (Base08 I16).vi │ ├── Write Numeric Scalar to Source (Base08 I32).vi │ ├── Write Numeric Scalar to Source (Base08 I64).vi │ ├── Write Numeric Scalar to Source (Base08 I8).vi │ ├── Write Numeric Scalar to Source (Base08 U16).vi │ ├── Write Numeric Scalar to Source (Base08 U32).vi │ ├── Write Numeric Scalar to Source (Base08 U64).vi │ ├── Write Numeric Scalar to Source (Base08 U8).vi │ ├── Write Numeric Scalar to Source (Base10 I16).vi │ ├── Write Numeric Scalar to Source (Base10 I32).vi │ ├── Write Numeric Scalar to Source (Base10 I64).vi │ ├── Write Numeric Scalar to Source (Base10 I8).vi │ ├── Write Numeric Scalar to Source (Base10 U16).vi │ ├── Write Numeric Scalar to Source (Base10 U32).vi │ ├── Write Numeric Scalar to Source (Base10 U64).vi │ ├── Write Numeric Scalar to Source (Base10 U8).vi │ ├── Write Numeric Scalar to Source (Base16 I16).vi │ ├── Write Numeric Scalar to Source (Base16 I32).vi │ ├── Write Numeric Scalar to Source (Base16 I64).vi │ ├── Write Numeric Scalar to Source (Base16 I8).vi │ ├── Write Numeric Scalar to Source (Base16 U16).vi │ ├── Write Numeric Scalar to Source (Base16 U32).vi │ ├── Write Numeric Scalar to Source (Base16 U64).vi │ ├── Write Numeric Scalar to Source (Base16 U8).vi │ ├── Write Numeric Scalar to Source (DBL).vi │ ├── Write Numeric Scalar to Source (SGL).vi │ ├── Write Numeric to Source.vi │ └── Write String to Source.vi ├── network-comm ├── README.md └── Source │ ├── Menus │ └── NI VeriStand Addon Network Comm.mnu │ ├── VeriStand Addon Network Comm.lvproj │ └── vi.lib │ └── NI │ └── NI VeriStand Addon Network Comm │ ├── Engine │ ├── Comm API │ │ ├── Read Command.vi │ │ ├── Respond to Command.vi │ │ ├── Send Command.vi │ │ ├── Send Commands.vi │ │ └── dir.mnu │ ├── NI VeriStand Addon Network Comm.lvlib │ ├── Process │ │ ├── Close Comm Refs.vi │ │ ├── Get Comm Connections.vi │ │ ├── Initialize Comm Refs.vi │ │ ├── Main Comm Loops.vi │ │ └── dir.mnu │ ├── VeriStand Comm.lvclass │ ├── _SubVIs │ │ ├── Comm Command Engine.vi │ │ └── Comm Connection Engine.vi │ ├── _Types │ │ └── Response Information.ctl │ └── dir.mnu │ └── Shared │ ├── Comm Constants.vi │ ├── Comm Send and Receive.vi │ ├── NI VeriStand Addon Network Comm Shared.lvlib │ ├── _Types │ └── Comm Message.ctl │ └── dir.mnu ├── shared ├── Common Post-Build Action.vi └── Copy Built Files.vi └── vi-packages ├── VeriStand Custom Device Dependencies.vipb ├── ni_lib_veristand_custom_device_dev_dependencies-1.0.0.4.vip └── readme.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Add names of code owners for this repo 2 | * @skolthay @gahegde-ni 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/.github/ISSUE_TEMPLATE/support_request_template.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/README.md -------------------------------------------------------------------------------- /advanced-sysdef-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/README.md -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/Advanced System Definition API.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/Advanced System Definition API.lvproj -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/Menus/functions_ni_lib_Advanced_SysDef_API.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/Menus/functions_ni_lib_Advanced_SysDef_API.mnu -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/Advanced System Definition.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/Advanced System Definition.lvlib -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.CreateChannel.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.CreateChannel.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.CreateDescription.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.CreateDescription.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.CreateSection.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.CreateSection.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.CreateWaveform.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.CreateWaveform.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.Item.Remove.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.Item.Remove.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.Node.Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.Node.Info.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.Node.Pointer.Get.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.Node.Pointer.Get.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.Property.Get.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.Property.Get.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.Property.Remove.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.Property.Remove.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.Property.Set.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.Property.Set.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.Rename.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.Rename.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.Search.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.Search.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.Table.Set.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.Table.Set.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.UpdateCDVersionFromXML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.UpdateCDVersionFromXML.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.Version.Get.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.Version.Get.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/SysDef API/SysDef.Version.Set.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/SysDef API/SysDef.Version.Set.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Globals.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Globals.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Node.Info.Get.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Node.Info.Get.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.Boolean.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.Boolean.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.DBL.Array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.DBL.Array.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.DBL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.DBL.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.DependentFile.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.DependentFile.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.I32.Array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.I32.Array.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.I32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.I32.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.Node.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.Node.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.Path.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.String.Array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.String.Array.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.String.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.U16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.U16.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.U32.Array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.U32.Array.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.U32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.U32.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.Variant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Get.Variant.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.Boolean.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.Boolean.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.DBL.Array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.DBL.Array.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.DBL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.DBL.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.DependentFile.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.DependentFile.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.I32.Array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.I32.Array.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.I32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.I32.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.Node.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.Node.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.Path.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.String.Array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.String.Array.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.String.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.U16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.U16.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.U32.Array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.U32.Array.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.U32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.U32.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.Variant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Property.Set.Variant.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Search.GUID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Search.GUID.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Search.GUIDs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Search.GUIDs.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Search.Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Search.Name.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Search.Parent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Search.Parent.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/SysDef.Search.Target.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/SysDef.Search.Target.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/Sysdef.LoadFile.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/Sysdef.LoadFile.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/TreeItem.Get.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/TreeItem.Get.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/TreeItem.Property.Get.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/TreeItem.Property.Get.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/TreeItem.Property.Set.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/TreeItem.Property.Set.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/_TreeItem.Property.Get.Dictionary.Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/_TreeItem.Property.Get.Dictionary.Info.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/_TreeItem.Property.Get.Dictionary.Read.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/_TreeItem.Property.Get.Dictionary.Read.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/_TreeItem.Property.Get.Dictionary.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/_TreeItem.Property.Get.Dictionary.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/_TreeItem.Property.Set.Dictionary.Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/_TreeItem.Property.Set.Dictionary.Info.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/_TreeItem.Property.Set.Dictionary.Write.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/_TreeItem.Property.Set.Dictionary.Write.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_SubVIs/_TreeItem.Property.Set.Dictionary.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_SubVIs/_TreeItem.Property.Set.Dictionary.vi -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_Types/Dictionary Item.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_Types/Dictionary Item.ctl -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_Types/File.DataType.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_Types/File.DataType.ctl -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_Types/Property.DependentFile.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_Types/Property.DependentFile.ctl -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_Types/Property.Dictionary.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_Types/Property.Dictionary.ctl -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_Types/SysDef.Export.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_Types/SysDef.Export.ctl -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_Types/TreeItem.Info.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_Types/TreeItem.Info.ctl -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_Types/TreeItem.Property.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_Types/TreeItem.Property.ctl -------------------------------------------------------------------------------- /advanced-sysdef-api/Source/_Types/TreeItem.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/advanced-sysdef-api/Source/_Types/TreeItem.ctl -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/control -------------------------------------------------------------------------------- /control_custom_device_labview_support_common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/control_custom_device_labview_support_common -------------------------------------------------------------------------------- /control_lvmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/control_lvmm -------------------------------------------------------------------------------- /custom-device-labview-common/Source/Custom Device Common.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-labview-common/Source/Custom Device Common.lvproj -------------------------------------------------------------------------------- /custom-device-labview-common/Source/Menus/RT/dir.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-labview-common/Source/Menus/RT/dir.mnu -------------------------------------------------------------------------------- /custom-device-labview-common/Source/Menus/Windows/dir.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-labview-common/Source/Menus/Windows/dir.mnu -------------------------------------------------------------------------------- /custom-device-labview-common/Source/Utilities/Post-Build Action.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-labview-common/Source/Utilities/Post-Build Action.vi -------------------------------------------------------------------------------- /custom-device-serialization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/README.md -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization.lvproj -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Add BaseNodeType Child.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Add BaseNodeType Child.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Custom Device Serialization.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Custom Device Serialization.lvlib -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Export.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Export.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Force Remove Item.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Force Remove Item.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Get Item Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Get Item Name.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Get System Definition Schema Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Get System Definition Schema Path.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Import as Child.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Import as Child.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Import in Place.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Import in Place.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Import.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Import.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Item Ref to BaseNodeType.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Item Ref to BaseNodeType.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Load BaseNodeType from System Storage File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Load BaseNodeType from System Storage File.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/NI VeriStand - Visually Update the System Explorer Tree.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/NI VeriStand - Visually Update the System Explorer Tree.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Remove Broken Mappings.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Remove Broken Mappings.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Rename BaseNodeType if not Empty.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Rename BaseNodeType if not Empty.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Reroll BaseNodeType Identifiers.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Reroll BaseNodeType Identifiers.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/Save BaseNodeType to System Storage File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/Save BaseNodeType to System Storage File.vi -------------------------------------------------------------------------------- /custom-device-serialization/Source/Custom Device Serialization/System Explorer Action.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Custom Device Serialization/System Explorer Action.ctl -------------------------------------------------------------------------------- /custom-device-serialization/Source/Menus/functions_ni_lib_VeriStand_Custom_Device_Serialization.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/custom-device-serialization/Source/Menus/functions_ni_lib_VeriStand_Custom_Device_Serialization.mnu -------------------------------------------------------------------------------- /docs/error_codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/docs/error_codes.md -------------------------------------------------------------------------------- /docs/error_codes_files/Copy Errors to Built Directory.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/docs/error_codes_files/Copy Errors to Built Directory.vi -------------------------------------------------------------------------------- /docs/error_codes_files/custom-device-development-tools-errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/docs/error_codes_files/custom-device-development-tools-errors.txt -------------------------------------------------------------------------------- /encoding-decoding/Docs/EncodingAndDecoding-errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Docs/EncodingAndDecoding-errors.txt -------------------------------------------------------------------------------- /encoding-decoding/Source/BCD Decode Integer.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/BCD Decode Integer.vim -------------------------------------------------------------------------------- /encoding-decoding/Source/BCD Decode.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/BCD Decode.vim -------------------------------------------------------------------------------- /encoding-decoding/Source/BCD Encode Integer.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/BCD Encode Integer.vim -------------------------------------------------------------------------------- /encoding-decoding/Source/BCD Encode.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/BCD Encode.vim -------------------------------------------------------------------------------- /encoding-decoding/Source/BNR Decode Integer.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/BNR Decode Integer.vim -------------------------------------------------------------------------------- /encoding-decoding/Source/BNR Decode.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/BNR Decode.vim -------------------------------------------------------------------------------- /encoding-decoding/Source/BNR Encode Integer.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/BNR Encode Integer.vim -------------------------------------------------------------------------------- /encoding-decoding/Source/BNR Encode.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/BNR Encode.vim -------------------------------------------------------------------------------- /encoding-decoding/Source/Copy Encoding Errors to Built Directory.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/Copy Encoding Errors to Built Directory.vi -------------------------------------------------------------------------------- /encoding-decoding/Source/Encoding and Decoding.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/Encoding and Decoding.lvlib -------------------------------------------------------------------------------- /encoding-decoding/Source/Encoding and Decoding.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/Encoding and Decoding.lvproj -------------------------------------------------------------------------------- /encoding-decoding/Source/Encoding.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/Encoding.ctl -------------------------------------------------------------------------------- /encoding-decoding/Source/Get Bits Per Digit from Base.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/Get Bits Per Digit from Base.vi -------------------------------------------------------------------------------- /encoding-decoding/Source/Parity.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/Parity.ctl -------------------------------------------------------------------------------- /encoding-decoding/Source/Scale.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/Scale.vim -------------------------------------------------------------------------------- /encoding-decoding/Source/Unscale.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/Unscale.vim -------------------------------------------------------------------------------- /encoding-decoding/Source/Update Bit Field.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/Update Bit Field.vim -------------------------------------------------------------------------------- /encoding-decoding/Source/Write Parity.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Source/Write Parity.vim -------------------------------------------------------------------------------- /encoding-decoding/Tests/BCD/BCD.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BCD/BCD.lvclass -------------------------------------------------------------------------------- /encoding-decoding/Tests/BCD/setUp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BCD/setUp.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BCD/tearDown.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BCD/tearDown.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BCD/test Data Types (Integer Decoding).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BCD/test Data Types (Integer Decoding).vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BCD/test Data Types.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BCD/test Data Types.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BCD/test Data Width 1 to 64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BCD/test Data Width 1 to 64.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BCD/test Data Width and Data Loss Error (Integer).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BCD/test Data Width and Data Loss Error (Integer).vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BCD/test Data Width and Data Loss Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BCD/test Data Width and Data Loss Error.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BCD/test Scaling and Unscaling.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BCD/test Scaling and Unscaling.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BCD/test Signed and Unsigned.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BCD/test Signed and Unsigned.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BNR/BNR.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BNR/BNR.lvclass -------------------------------------------------------------------------------- /encoding-decoding/Tests/BNR/setUp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BNR/setUp.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BNR/tearDown.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BNR/tearDown.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BNR/test Data Types.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BNR/test Data Types.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BNR/test Data Width 1 to 53.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BNR/test Data Width 1 to 53.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BNR/test Data Width and Data Loss Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BNR/test Data Width and Data Loss Error.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BNR/test Scaled and Unscaled.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BNR/test Scaled and Unscaled.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/BNR/test Signed and Unsigned.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/BNR/test Signed and Unsigned.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/Discrete/Discrete.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/Discrete/Discrete.lvclass -------------------------------------------------------------------------------- /encoding-decoding/Tests/Discrete/setUp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/Discrete/setUp.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/Discrete/tearDown.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/Discrete/tearDown.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/Discrete/test Update Discrete Bit Field by Data Type.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/Discrete/test Update Discrete Bit Field by Data Type.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/Discrete/test Update Discrete Bit Field by Index.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/Discrete/test Update Discrete Bit Field by Index.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/Discrete/test Update Discrete Bit Field.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/Discrete/test Update Discrete Bit Field.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/Parity/Parity.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/Parity/Parity.lvclass -------------------------------------------------------------------------------- /encoding-decoding/Tests/Parity/setUp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/Parity/setUp.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/Parity/tearDown.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/Parity/tearDown.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/Parity/test Set Even Parity by Index.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/Parity/test Set Even Parity by Index.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/Parity/test Set Odd Parity by Index.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/Parity/test Set Odd Parity by Index.vi -------------------------------------------------------------------------------- /encoding-decoding/Tests/Parity/test Set Parity.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/encoding-decoding/Tests/Parity/test Set Parity.vi -------------------------------------------------------------------------------- /error-api/Source/Clear All Errors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/error-api/Source/Clear All Errors.vi -------------------------------------------------------------------------------- /error-api/Source/Clear Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/error-api/Source/Clear Error.vi -------------------------------------------------------------------------------- /error-api/Source/Menus/Controls/controls_ni_lib_VeriStand_Error_API.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/error-api/Source/Menus/Controls/controls_ni_lib_VeriStand_Error_API.mnu -------------------------------------------------------------------------------- /error-api/Source/Menus/Functions/functions_ni_lib_VeriStand_Error_API.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/error-api/Source/Menus/Functions/functions_ni_lib_VeriStand_Error_API.mnu -------------------------------------------------------------------------------- /error-api/Source/Read All Errors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/error-api/Source/Read All Errors.vi -------------------------------------------------------------------------------- /error-api/Source/Read Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/error-api/Source/Read Error.vi -------------------------------------------------------------------------------- /error-api/Source/Throw Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/error-api/Source/Throw Error.vi -------------------------------------------------------------------------------- /error-api/Source/VeriStand Error API.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/error-api/Source/VeriStand Error API.lvlib -------------------------------------------------------------------------------- /error-api/Source/VeriStand Error API.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/error-api/Source/VeriStand Error API.lvproj -------------------------------------------------------------------------------- /error-api/Source/VeriStand Error.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/error-api/Source/VeriStand Error.ctl -------------------------------------------------------------------------------- /hardware-discovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/hardware-discovery/README.md -------------------------------------------------------------------------------- /hardware-discovery/Source/Hardware Resource Discovery.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/hardware-discovery/Source/Hardware Resource Discovery.lvproj -------------------------------------------------------------------------------- /hardware-discovery/Source/Menus/NI VeriStand Hardware Resource Discovery.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/hardware-discovery/Source/Menus/NI VeriStand Hardware Resource Discovery.mnu -------------------------------------------------------------------------------- /hardware-discovery/Source/vi.lib/NI/NI VeriStand Hardware Resource Discovery/NIVS Hardware Discovery.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/hardware-discovery/Source/vi.lib/NI/NI VeriStand Hardware Resource Discovery/NIVS Hardware Discovery.lvlib -------------------------------------------------------------------------------- /hardware-discovery/Source/vi.lib/NI/NI VeriStand Hardware Resource Discovery/Select Device Dialog.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/hardware-discovery/Source/vi.lib/NI/NI VeriStand Hardware Resource Discovery/Select Device Dialog.vi -------------------------------------------------------------------------------- /hardware-discovery/Source/vi.lib/NI/NI VeriStand Hardware Resource Discovery/_SubVIs/Create Resource Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/hardware-discovery/Source/vi.lib/NI/NI VeriStand Hardware Resource Discovery/_SubVIs/Create Resource Name.vi -------------------------------------------------------------------------------- /hardware-discovery/Source/vi.lib/NI/NI VeriStand Hardware Resource Discovery/_SubVIs/Get PXI Device List.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/hardware-discovery/Source/vi.lib/NI/NI VeriStand Hardware Resource Discovery/_SubVIs/Get PXI Device List.vi -------------------------------------------------------------------------------- /hardware-discovery/Source/vi.lib/NI/NI VeriStand Hardware Resource Discovery/_SubVIs/Get Target IP Address.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/hardware-discovery/Source/vi.lib/NI/NI VeriStand Hardware Resource Discovery/_SubVIs/Get Target IP Address.vi -------------------------------------------------------------------------------- /hardware-discovery/Source/vi.lib/NI/NI VeriStand Hardware Resource Discovery/_Types/Filter Type.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/hardware-discovery/Source/vi.lib/NI/NI VeriStand Hardware Resource Discovery/_Types/Filter Type.ctl -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/Compile HTML Menu Tool.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/Compile HTML Menu Tool.lvproj -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/Menus/functions_ni_lib_Compiled_HTML_Menu_Tool.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/Menus/functions_ni_lib_Compiled_HTML_Menu_Tool.mnu -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/Post-Build Action.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/Post-Build Action.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/Compiled Help Menu Wizard.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/Compiled Help Menu Wizard.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/Build CHM.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/Build CHM.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/css/VSsystemexplorer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/css/VSsystemexplorer.css -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/css/expandable_tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/css/expandable_tree.css -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/Globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/Globals.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/arraytools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/arraytools.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/checkinstalled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/checkinstalled.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/common.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/cssframes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/cssframes.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/domtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/domtools.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/dynamiccontent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/dynamiccontent.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/dynamicjumps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/dynamicjumps.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/dynamiclinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/dynamiclinks.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/expandable_tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/expandable_tree.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/feedbacklink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/feedbacklink.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/initpagedyn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/initpagedyn.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/launchhelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/launchhelp.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/linking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/linking.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/objectnames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/objectnames.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/osbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/osbrowser.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/pdf.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/polyviselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/polyviselect.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/stylesheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/stylesheets.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/variables.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/HTML Help Source/js/web.js -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/Wizard/Copy Template Files.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/Wizard/Copy Template Files.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/Wizard/Create HTML Files.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/Wizard/Create HTML Files.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/Wizard/New CHM Wizard.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/Wizard/New CHM Wizard.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/Wizard/Wizard State.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/Wizard/Wizard State.ctl -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/html_template.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/project/_Compiled HTML Menu Tool/html_template.htm -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/Append Section to HHP.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/Append Section to HHP.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/Append String to HHP.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/Append String to HHP.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/Append Value to HHP.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/Append Value to HHP.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/CHM Generator.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/CHM Generator.lvclass -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/Compile CHM.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/Compile CHM.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/Generate HHP.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/Generate HHP.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/New.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/New.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/Write Files.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/CHM Generator/Write Files.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/Keyed Value Tree/Get All Values.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/Keyed Value Tree/Get All Values.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/Keyed Value Tree/Get Value.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/Keyed Value Tree/Get Value.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/Keyed Value Tree/Keyed Value Pair.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/Keyed Value Tree/Keyed Value Pair.ctl -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/Keyed Value Tree/Keyed Value Tree.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/Keyed Value Tree/Keyed Value Tree.lvclass -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/Keyed Value Tree/Set Value.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/Keyed Value Tree/Set Value.vi -------------------------------------------------------------------------------- /html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/Load CHM Page.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/Compiled HTML Menu Tool/vi.lib/Load CHM Page.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/TOC/Append Topic Ref.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/TOC/Append Topic Ref.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/TOC/Assets/New TOC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/TOC/Assets/New TOC.txt -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/TOC/From XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/TOC/From XML.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/TOC/TOC.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/TOC/TOC.lvclass -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/TOC/To XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/TOC/To XML.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/Topic/Add Key.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/Topic/Add Key.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/Topic/Append Subtopic.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/Topic/Append Subtopic.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/Topic/Build Param List.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/Topic/Build Param List.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/Topic/From XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/Topic/From XML.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/Topic/Subtopics to XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/Topic/Subtopics to XML.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/Topic/To XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/Topic/To XML.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/Topic/Topic.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/Topic/Topic.lvclass -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/XMLInterface/From XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/XMLInterface/From XML.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/XMLInterface/Make XML Param.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/XMLInterface/Make XML Param.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/XMLInterface/Tag Text.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/XMLInterface/Tag Text.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/XMLInterface/To XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/XMLInterface/To XML.vi -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Classes/XMLInterface/XmlInterface.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Classes/XMLInterface/XmlInterface.lvclass -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/New Text Document.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/TOC Editor.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/TOC Editor.lvproj -------------------------------------------------------------------------------- /html-help-tools/Source/TOC Editor/Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/html-help-tools/Source/TOC Editor/Test.vi -------------------------------------------------------------------------------- /import-export/Source/Export Custom Device Configuration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/import-export/Source/Export Custom Device Configuration.vi -------------------------------------------------------------------------------- /import-export/Source/File Interface Class/File Interface.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/import-export/Source/File Interface Class/File Interface.lvclass -------------------------------------------------------------------------------- /import-export/Source/File Interface Class/Get Pattern.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/import-export/Source/File Interface Class/Get Pattern.vi -------------------------------------------------------------------------------- /import-export/Source/File Interface Class/Read File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/import-export/Source/File Interface Class/Read File.vi -------------------------------------------------------------------------------- /import-export/Source/File Interface Class/Write File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/import-export/Source/File Interface Class/Write File.vi -------------------------------------------------------------------------------- /import-export/Source/Import Custom Device Configuration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/import-export/Source/Import Custom Device Configuration.vi -------------------------------------------------------------------------------- /import-export/Source/ImportExport.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/import-export/Source/ImportExport.lvlib -------------------------------------------------------------------------------- /import-export/Source/Menus/functions_ni_lib_VeriStand_Custom_Device_Import_and_Export_Tool.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/import-export/Source/Menus/functions_ni_lib_VeriStand_Custom_Device_Import_and_Export_Tool.mnu -------------------------------------------------------------------------------- /import-export/Source/Pre-Import Action.vit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/import-export/Source/Pre-Import Action.vit -------------------------------------------------------------------------------- /import-export/Source/VeriStand Custom Device Import Export Tool.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/import-export/Source/VeriStand Custom Device Import Export Tool.lvproj -------------------------------------------------------------------------------- /import-export/Source/subVIs/Sysdef.SimpleExport.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/import-export/Source/subVIs/Sysdef.SimpleExport.vi -------------------------------------------------------------------------------- /import-export/Source/subVIs/Sysdef.SimpleImport.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/import-export/Source/subVIs/Sysdef.SimpleImport.vi -------------------------------------------------------------------------------- /inline-async-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/README.md -------------------------------------------------------------------------------- /inline-async-api/Source/Menus/Categories/VeriStand Development Tools/_functions_ni_lib_nivs_inline_async_api_1.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/Menus/Categories/VeriStand Development Tools/_functions_ni_lib_nivs_inline_async_api_1.mnu -------------------------------------------------------------------------------- /inline-async-api/Source/Menus/Categories/VeriStand Development Tools/_functions_ni_lib_nivs_inline_async_api_2.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/Menus/Categories/VeriStand Development Tools/_functions_ni_lib_nivs_inline_async_api_2.mnu -------------------------------------------------------------------------------- /inline-async-api/Source/Menus/Categories/VeriStand Development Tools/_functions_ni_lib_nivs_inline_async_api_3.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/Menus/Categories/VeriStand Development Tools/_functions_ni_lib_nivs_inline_async_api_3.mnu -------------------------------------------------------------------------------- /inline-async-api/Source/Menus/Categories/VeriStand Development Tools/_functions_ni_lib_nivs_inline_async_api_4.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/Menus/Categories/VeriStand Development Tools/_functions_ni_lib_nivs_inline_async_api_4.mnu -------------------------------------------------------------------------------- /inline-async-api/Source/Menus/Categories/VeriStand Development Tools/functions_ni_lib_NIVS_Inline_Async_API.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/Menus/Categories/VeriStand Development Tools/functions_ni_lib_NIVS_Inline_Async_API.mnu -------------------------------------------------------------------------------- /inline-async-api/Source/Project.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/Project.lvproj -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Read/Read.Close.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Read/Read.Close.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Read/Read.EngineData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Read/Read.EngineData.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Read/Read.Initialize.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Read/Read.Initialize.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Read/Read.ProcessData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Read/Read.ProcessData.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Read/Read.ReadValues.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Read/Read.ReadValues.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Read/Read.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Read/Read.lvclass -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/ReadWrite/ReadWrite.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/ReadWrite/ReadWrite.lvclass -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.Buffer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.Buffer.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.Close.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.Close.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.Commit.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.Commit.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.EngineData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.EngineData.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.Initialize.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.Initialize.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.ProcessData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.ProcessData.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Access Type Classes/Write/Write.lvclass -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine.lvlib -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Methods/Read.Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Methods/Read.Data.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Methods/Read.Lookup.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Methods/Read.Lookup.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Methods/ReadWrite.Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Methods/ReadWrite.Data.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Methods/Write.Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Methods/Write.Data.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Methods/Write.Lookup.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Methods/Write.Lookup.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Types/Read.DVR.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Types/Read.DVR.ctl -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Types/ReadWrite.DVR.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Types/ReadWrite.DVR.ctl -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Types/Write.DVR.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine/Types/Write.DVR.ctl -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access System Explorer/Data Access System Explorer.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access System Explorer/Data Access System Explorer.lvlib -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access System Explorer/Methods/Data.OnCompile.Execute.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access System Explorer/Methods/Data.OnCompile.Execute.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access System Explorer/SubVIs/LUT.CreateEntry.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access System Explorer/SubVIs/LUT.CreateEntry.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access System Explorer/Types/VS Channel Group Type.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access System Explorer/Types/VS Channel Group Type.ctl -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access System Explorer/Types/VS Channel Ref Groups.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Data Access System Explorer/Types/VS Channel Ref Groups.ctl -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Template/Async.Template.vit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_Template/Async.Template.vit -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/Process/Data Member Access/Read Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/Process/Data Member Access/Read Name.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/Process/Data Member Access/Write Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/Process/Data Member Access/Write Name.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/Process/Methods/Async.Processes.Report.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/Process/Methods/Async.Processes.Report.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/Process/Process.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/Process/Process.lvclass -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/VS Inline Async API.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/VS Inline Async API.lvlib -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/VS Inline Async API/SubVIs/Run Process.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/VS Inline Async API/SubVIs/Run Process.vi -------------------------------------------------------------------------------- /inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/VS Inline Async API/Types/Parameters.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/inline-async-api/Source/vi.lib/NI/NIVS Inline Async API/_VS Inline Async API/VS Inline Async API/Types/Parameters.ctl -------------------------------------------------------------------------------- /lv-memory-manager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/.gitignore -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Build Automation.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Build Automation.lvlib -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Close Progress Window.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Close Progress Window.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Configure VI Blacklist.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Configure VI Blacklist.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Find Project Library.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Find Project Library.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Get All Library Classes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Get All Library Classes.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Get All Library VIs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Get All Library VIs.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/New Progress Window.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/New Progress Window.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Open and Save All Library VIs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Open and Save All Library VIs.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Post-Build Action.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Post-Build Action.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Progress Window.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Progress Window.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Save VI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Save VI.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Set VI Debugging.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Set VI Debugging.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Set VI Inlining.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Set VI Inlining.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Set VI Reentrancy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Set VI Reentrancy.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Set Window Progress.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Set Window Progress.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Set Window Status.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Set Window Status.vi -------------------------------------------------------------------------------- /lv-memory-manager/Development Utilities/Build/Stop Progress Window.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Development Utilities/Build/Stop Progress Window.vi -------------------------------------------------------------------------------- /lv-memory-manager/LabVIEW Memory Manager.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/LabVIEW Memory Manager.lvproj -------------------------------------------------------------------------------- /lv-memory-manager/Menus/_functions_ni_lib_lv_memory_1.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Menus/_functions_ni_lib_lv_memory_1.mnu -------------------------------------------------------------------------------- /lv-memory-manager/Menus/_functions_ni_lib_lv_memory_2.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Menus/_functions_ni_lib_lv_memory_2.mnu -------------------------------------------------------------------------------- /lv-memory-manager/Menus/_functions_ni_lib_lv_memory_3.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Menus/_functions_ni_lib_lv_memory_3.mnu -------------------------------------------------------------------------------- /lv-memory-manager/Menus/_functions_ni_lib_lv_memory_4.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Menus/_functions_ni_lib_lv_memory_4.mnu -------------------------------------------------------------------------------- /lv-memory-manager/Menus/functions_ni_lib_lv_memory.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Menus/functions_ni_lib_lv_memory.mnu -------------------------------------------------------------------------------- /lv-memory-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/README.md -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Adjust Copy Parameters.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Adjust Copy Parameters.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Allocate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Allocate.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Buffer Underflow.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Buffer Underflow.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Byte Order.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Byte Order.ctl -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Byte Order.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Byte Order.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Check Bounds (Buffer).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Check Bounds (Buffer).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Check Bounds (Pointer).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Check Bounds (Pointer).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Check Bounds (Power of 2).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Check Bounds (Power of 2).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Check Bounds.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Check Bounds.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Check Count.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Check Count.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Check Equal Contents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Check Equal Contents.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Check Equal Size.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Check Equal Size.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Check Length.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Check Length.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Check Move.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Check Move.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Check Null Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Check Null Pointer.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Check Size.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Check Size.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Check.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Check.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Clear (No Check).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Clear (No Check).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Clear.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Clear.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Copy (No Check).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Copy (No Check).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Copy All (No Check).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Copy All (No Check).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Copy All.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Copy All.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Copy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Copy.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Create Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Create Error.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Deallocate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Deallocate.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Duplicate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Duplicate.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Encapsulate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Encapsulate.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Errors.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Errors.ctl -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Errors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Errors.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Get Address.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Get Address.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Get Internal.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Get Internal.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Get Size.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Get Size.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Is Null.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Is Null.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Malleables/Allocate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Malleables/Allocate.vim -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Malleables/Read.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Malleables/Read.vim -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Malleables/Sizeof.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Malleables/Sizeof.vim -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Malleables/Write.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Malleables/Write.vim -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Null Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Null Pointer.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Out of Bounds.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Out of Bounds.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Pointer Error Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Pointer Error Info.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Pointer.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Pointer.lvclass -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D Bool.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D Bool.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D DBL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D DBL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D I16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D I16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D I32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D I32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D I64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D I64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D I8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D I8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D SGL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D SGL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D U16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D U16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D U32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D U32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D U64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D U64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D U8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) 1D U8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) Bool.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) Bool.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) DBL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) DBL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) I16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) I16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) I32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) I32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) I64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) I64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) I8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) I8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) SGL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) SGL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) String.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) U16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) U16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) U32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) U32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) U64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) U64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check) U8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check) U8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read (No Check).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read (No Check).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read 1D Bool.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read 1D Bool.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read 1D DBL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read 1D DBL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read 1D I16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read 1D I16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read 1D I32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read 1D I32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read 1D I64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read 1D I64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read 1D I8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read 1D I8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read 1D SGL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read 1D SGL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read 1D U16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read 1D U16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read 1D U32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read 1D U32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read 1D U64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read 1D U64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read 1D U8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read 1D U8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read Bool.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read Bool.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read DBL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read DBL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read I16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read I16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read I32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read I32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read I64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read I64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read I8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read I8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read SGL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read SGL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read String.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read U16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read U16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read U32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read U32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read U64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read U64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read U8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read U8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Read.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Read.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Set Address.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Set Address.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Set Internal.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Set Internal.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Set Size.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Set Size.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Size Mismatch.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Size Mismatch.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Stop/Assert Stop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Stop/Assert Stop.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Stop/Create.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Stop/Create.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Stop/Stop Pointer.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Stop/Stop Pointer.lvclass -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Subset.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Subset.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Swap (No Check).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Swap (No Check).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Swap.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Swap.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D Bool.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D Bool.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D DBL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D DBL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D I16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D I16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D I32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D I32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D I64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D I64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D I8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D I8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D SGL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D SGL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D U16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D U16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D U32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D U32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D U64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D U64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D U8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) 1D U8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) Bool.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) Bool.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) DBL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) DBL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) I16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) I16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) I32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) I32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) I64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) I64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) I8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) I8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) SGL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) SGL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) String.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) U16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) U16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) U32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) U32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) U64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) U64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check) U8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check) U8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write (No Check).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write (No Check).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write 1D Bool.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write 1D Bool.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write 1D DBL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write 1D DBL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write 1D I16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write 1D I16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write 1D I32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write 1D I32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write 1D I64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write 1D I64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write 1D I8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write 1D I8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write 1D SGL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write 1D SGL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write 1D U16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write 1D U16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write 1D U32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write 1D U32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write 1D U64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write 1D U64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write 1D U8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write 1D U8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write Bool.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write Bool.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write DBL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write DBL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write I16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write I16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write I32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write I32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write I64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write I64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write I8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write I8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write Pointer Size to Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write Pointer Size to Error.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write SGL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write SGL.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write String.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write U16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write U16.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write U32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write U32.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write U64.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write U64.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write U8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write U8.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Write.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Write.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Classes/Pointer/Zone.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Classes/Pointer/Zone.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Constants/Constants.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Constants/Constants.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Constants/Library Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Constants/Library Name.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Constants/Pointer Class Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Constants/Pointer Class Name.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Examples/Memory Benchmark/Memory Benchmark Async.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Examples/Memory Benchmark/Memory Benchmark Async.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Examples/Memory Benchmark/Memory Benchmark.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Examples/Memory Benchmark/Memory Benchmark.lvproj -------------------------------------------------------------------------------- /lv-memory-manager/Source/Examples/Memory Benchmark/Memory Benchmark.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Examples/Memory Benchmark/Memory Benchmark.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Examples/Memory Benchmark/UI Pointers.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Examples/Memory Benchmark/UI Pointers.ctl -------------------------------------------------------------------------------- /lv-memory-manager/Source/Memory Manager.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Memory Manager.lvlib -------------------------------------------------------------------------------- /lv-memory-manager/Source/Static Errors.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Static Errors.lvlib -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Memory Manager Tests.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Memory Manager Tests.lvlib -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/Data Manipulation Tests.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/Data Manipulation Tests.lvclass -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/setUp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/setUp.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/tearDown.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/tearDown.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Boolean Data Integrity.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Boolean Data Integrity.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Clear Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Clear Data.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Copy Equal Size.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Copy Equal Size.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Copy To Larger Destinationvi.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Copy To Larger Destinationvi.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Copy To Smaller Destination.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Copy To Smaller Destination.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Duplicate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Duplicate.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Float Data Integrity.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Float Data Integrity.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Swap Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/test Swap Data.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/testExample.vit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Data Manipulation Tests/testExample.vit -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/Lifecycle Tests.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/Lifecycle Tests.lvclass -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/setUp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/setUp.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/tearDown.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/tearDown.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/test Encapsulate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/test Encapsulate.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/test Pointer Lifecycle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/test Pointer Lifecycle.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/test Subset Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/test Subset Pointer.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/testExample.vit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Lifecycle Tests/testExample.vit -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/Read Value Tests.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/Read Value Tests.lvclass -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/setUp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/setUp.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/tearDown.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/tearDown.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Boolean Array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Boolean Array.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Boolean.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Boolean.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Float Array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Float Array.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Float.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Float.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Signed Integer Array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Signed Integer Array.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Signed Integer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Signed Integer.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Unsigned Integer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/test Write and Read Unsigned Integer.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/testExample.vit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Memory Manager/Pointer Tests/Read Value Tests/testExample.vit -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Creation/Creation.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Creation/Creation.lvclass -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Creation/setUp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Creation/setUp.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Creation/tearDown.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Creation/tearDown.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Creation/testCreation1024.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Creation/testCreation1024.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Creation/testCreation256.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Creation/testCreation256.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Creation/testCreation512.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Creation/testCreation512.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Creation/testExample.vit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Creation/testExample.vit -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/Parameter Setting.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/Parameter Setting.lvclass -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/setUp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/setUp.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/tearDown.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/tearDown.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test Error Code.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test Error Code.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test Float Writes to Source.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test Float Writes to Source.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test IXX Writes to Source.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test IXX Writes to Source.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test Source.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test Source.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test Status.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test Status.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test String Writes to Source.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test String Writes to Source.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test UXX Writes to Source.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/test UXX Writes to Source.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/testExample.vit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Parameter Setting/testExample.vit -------------------------------------------------------------------------------- /lv-memory-manager/Source/Tests/Static Errors/Static Errors Tests.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/Tests/Static Errors/Static Errors Tests.lvlib -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Include Limit in Compare String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Include Limit in Compare String.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/New Error Cluster (1024B).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/New Error Cluster (1024B).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/New Error Cluster (256B).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/New Error Cluster (256B).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/New Error Cluster (512B).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/New Error Cluster (512B).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/New Error Cluster (Custom).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/New Error Cluster (Custom).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/New Error Cluster.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/New Error Cluster.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Set Error Code.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Set Error Code.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Set Error Description.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Set Error Description.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Set Error Source.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Set Error Source.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Set Error Status.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Set Error Status.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 I16).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 I16).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 I32).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 I32).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 I64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 I64).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 I8).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 I8).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 U16).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 U16).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 U32).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 U32).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 U64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 U64).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 U8).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base08 U8).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 I16).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 I16).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 I32).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 I32).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 I64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 I64).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 I8).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 I8).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 U16).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 U16).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 U32).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 U32).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 U64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 U64).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 U8).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base10 U8).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 I16).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 I16).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 I32).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 I32).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 I64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 I64).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 I8).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 I8).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 U16).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 U16).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 U32).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 U32).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 U64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 U64).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 U8).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (Base16 U8).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (DBL).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (DBL).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source (SGL).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source (SGL).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Range to Source.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Range to Source.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 I16).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 I16).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 I32).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 I32).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 I64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 I64).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 I8).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 I8).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 U16).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 U16).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 U32).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 U32).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 U64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 U64).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 U8).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base08 U8).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 I16).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 I16).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 I32).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 I32).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 I64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 I64).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 I8).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 I8).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 U16).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 U16).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 U32).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 U32).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 U64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 U64).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 U8).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base10 U8).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 I16).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 I16).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 I32).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 I32).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 I64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 I64).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 I8).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 I8).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 U16).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 U16).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 U32).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 U32).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 U64).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 U64).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 U8).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (Base16 U8).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (DBL).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (DBL).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (SGL).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric Scalar to Source (SGL).vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write Numeric to Source.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write Numeric to Source.vi -------------------------------------------------------------------------------- /lv-memory-manager/Source/VIs/Write String to Source.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/lv-memory-manager/Source/VIs/Write String to Source.vi -------------------------------------------------------------------------------- /network-comm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/README.md -------------------------------------------------------------------------------- /network-comm/Source/Menus/NI VeriStand Addon Network Comm.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/Menus/NI VeriStand Addon Network Comm.mnu -------------------------------------------------------------------------------- /network-comm/Source/VeriStand Addon Network Comm.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/VeriStand Addon Network Comm.lvproj -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Comm API/Read Command.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Comm API/Read Command.vi -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Comm API/Respond to Command.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Comm API/Respond to Command.vi -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Comm API/Send Command.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Comm API/Send Command.vi -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Comm API/Send Commands.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Comm API/Send Commands.vi -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Comm API/dir.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Comm API/dir.mnu -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/NI VeriStand Addon Network Comm.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/NI VeriStand Addon Network Comm.lvlib -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Process/Close Comm Refs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Process/Close Comm Refs.vi -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Process/Get Comm Connections.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Process/Get Comm Connections.vi -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Process/Initialize Comm Refs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Process/Initialize Comm Refs.vi -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Process/Main Comm Loops.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Process/Main Comm Loops.vi -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Process/dir.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/Process/dir.mnu -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/VeriStand Comm.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/VeriStand Comm.lvclass -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/_SubVIs/Comm Command Engine.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/_SubVIs/Comm Command Engine.vi -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/_SubVIs/Comm Connection Engine.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/_SubVIs/Comm Connection Engine.vi -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/_Types/Response Information.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/_Types/Response Information.ctl -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/dir.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Engine/dir.mnu -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Shared/Comm Constants.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Shared/Comm Constants.vi -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Shared/Comm Send and Receive.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Shared/Comm Send and Receive.vi -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Shared/NI VeriStand Addon Network Comm Shared.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Shared/NI VeriStand Addon Network Comm Shared.lvlib -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Shared/_Types/Comm Message.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Shared/_Types/Comm Message.ctl -------------------------------------------------------------------------------- /network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Shared/dir.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/network-comm/Source/vi.lib/NI/NI VeriStand Addon Network Comm/Shared/dir.mnu -------------------------------------------------------------------------------- /shared/Common Post-Build Action.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/shared/Common Post-Build Action.vi -------------------------------------------------------------------------------- /shared/Copy Built Files.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/shared/Copy Built Files.vi -------------------------------------------------------------------------------- /vi-packages/VeriStand Custom Device Dependencies.vipb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/vi-packages/VeriStand Custom Device Dependencies.vipb -------------------------------------------------------------------------------- /vi-packages/ni_lib_veristand_custom_device_dev_dependencies-1.0.0.4.vip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/vi-packages/ni_lib_veristand_custom_device_dev_dependencies-1.0.0.4.vip -------------------------------------------------------------------------------- /vi-packages/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/niveristand-custom-device-development-tools/HEAD/vi-packages/readme.md --------------------------------------------------------------------------------