├── .gitignore ├── .gitmodules ├── C code ├── Test_Blink │ └── Test_Blink.ino ├── Test_Build_Array_1 │ └── Test_Build_Array_1.ino ├── Test_Bundler_1 │ └── Test_Bundler_1.ino ├── Test_Bundler_Unbundler_1 │ └── Test_Bundler_Unbundler_1.ino ├── Test_Bundler_example_1 │ └── Test_Bundler_example_1.ino ├── Test_Cluster │ └── Test_Cluster.ino ├── Test_Cluster_4 │ └── Test_Cluster_4.ino ├── Test_Example_Analog_1 │ └── Test_Example_Analog_1.ino ├── Test_Example_Math_1 │ └── Test_Example_Math_1.ino ├── Test_Example_Math_2 │ └── Test_Example_Math_2.ino ├── Test_Example_Serial_2 │ └── Test_Example_Serial_2.ino ├── Test_Example_Serial_3 │ └── Test_Example_Serial_3.ino ├── Test_Feedbacknode │ └── Test_Feedbacknode.ino ├── Test_NamedBundler │ └── Test_NamedBundler.ino ├── Test_Serial │ └── Test_Serial.ino ├── Test_Simple_Web_Server │ └── Test_Simple_Web_Server.ino ├── Test_Unbundler_1 │ └── Test_Unbundler_1.ino └── Test_Vector │ └── Test_Vector.ino ├── Debuggers └── MSP430 │ ├── MSP430 Simple Debugger.vi │ └── utils │ ├── DefaultStylesheet.xsl │ ├── MSP430DebugServer.js │ ├── MSP430_DebugServer_RUN.bat │ ├── PuTTY plink.vi │ ├── lnk_msp430f5529.cmd │ ├── msp430-objdump.exe │ ├── msp430_debug_server.js │ ├── msp430f5529.ccxml │ └── plink.exe ├── Documentation ├── LabVIEW Universal Transcriptor.odt ├── LabVIEW Universal Transcriptor.pdf ├── LabVIEW Universal Transcriptor.xhtml ├── Quickstart Guide.odt ├── Quickstart Guide.pdf └── img │ ├── LabVIEWforKids Blink Program.png │ ├── LabVIEWforKids FFT Program.png │ └── LabVIEWforKids Jarda.png ├── Examples - Transcriptor Usage ├── Get Cluster Datatype Name.vi ├── Polymorphic VI Experiment 1.vi └── ShiftRegister FeedbackNode Difference.vi ├── README.md ├── Test ├── Examples For Parsing │ ├── Array 1.vi │ ├── Array 2.vi │ ├── Blink 2.vi │ ├── Blink 3 simple and correct one.vi │ ├── Blink 4 experimental.vi │ ├── Blink 5.vi │ ├── Blink 6 shift refs.vi │ ├── Blink.vi │ ├── ClusterTypedef1.ctl │ ├── Example Analog 1.vi │ ├── Example Arduino Serial.vi │ ├── Example Array 1.vi │ ├── Example Build Array 1.vi │ ├── Example Bundler 1.vi │ ├── Example Bundler 2.vi │ ├── Example Bundler Unbundler 1.vi │ ├── Example CaseStructure 2.vi │ ├── Example CaseStructure 3.vi │ ├── Example CaseStructure 4.vi │ ├── Example CaseStructure.vi │ ├── Example Cluster 2.vi │ ├── Example Cluster 4.vi │ ├── Example Cluster Bundler and Class.vi │ ├── Example Cluster Bundler and Shift Register.vi │ ├── Example Diagram Constants.vi │ ├── Example Feedbacknode 1.vi │ ├── Example FlatSequence 1.vi │ ├── Example FroLoop Tunnel 1.vi │ ├── Example Get Array Pointer.vi │ ├── Example Global Variable.vi │ ├── Example Global Variables.lvlib │ ├── Example IRQ 1.vi │ ├── Example Interruption 1.vi │ ├── Example Math 1.vi │ ├── Example Math 2.vi │ ├── Example Math 3.vi │ ├── Example NamedBundler 1.vi │ ├── Example NamedBundler 2.vi │ ├── Example Polymorphic 2.vi │ ├── Example Property Node 1.vi │ ├── Example Serial 1.vi │ ├── Example Serial 2.vi │ ├── Example Serial 3.vi │ ├── Example Shift Register Loop 1.vi │ ├── Example String Functions 1.vi │ ├── Example String Functions 2.vi │ ├── Example System Functions.vi │ ├── Example Test 1.vi │ ├── Example Test 2.vi │ ├── Example Test 3.vi │ ├── Example Test 4.vi │ ├── Example To Variant.vi │ ├── Example Translator Vis │ │ ├── Example Vector of Floats.ctl │ │ ├── Toggle LED.vi │ │ └── Translator.vi │ ├── Example Type Cast 1.vi │ ├── Example Typecast 1.vi │ ├── Example Unbundler 1.vi │ ├── Example Variant Info.vi │ ├── Example While Loop Some Operations 1.vi │ ├── Example While Loop Some Operations 2.vi │ ├── Example WhileLoop ForLoop CaseStructure 2.vi │ ├── Example WhileLoop ForLoop CaseStructure 3.vi │ ├── Example WhileLoop ForLoop CaseStructure.vi │ ├── Example WhileLoop ForLoop.vi │ ├── Increment Last Nested Level Item.vi │ ├── Some VI 2.vi │ ├── Some VI.vi │ ├── UserDefined StructType 2.ctl │ ├── UserDefined StructType.ctl │ └── just VIs no Translator │ │ ├── Polymorphic Add 2.vi │ │ ├── SD open.vi │ │ ├── Some String Inside 2.vi │ │ ├── Some String Inside.vi │ │ ├── Some VI 3.vi │ │ ├── Some VI 4.vi │ │ └── Some empty VI 4.vi ├── Test Example Cluster 1.vi ├── Test Example Password 1.vi ├── Test Example Polymorphic 1.vi ├── Test Example Variant Info.vi ├── Test ForLoop Tunnels.vi ├── Test Get All Elements Some Info 1.vi ├── Test Get Controls Indicators.vi ├── Test Get Elements and Subelements.vi ├── Test Get FeedbackNode Loop Init Terminal.vi ├── Test Get VIs.vi ├── Test Get Wire Data Type.vi ├── Test Parsing Simple Example CaseStructure 1.vi ├── Test Parsing Simple Example Test 1.vi ├── Test Parsing Simple Example Whlie Loop Some Operations 1.vi ├── Test Parsing Simple Example Whlie Loop Some Operations 2.vi ├── Test Parsing Simple Example WhlieLoop ForLoop.vi ├── Test Shift Registers Loop 1.vi ├── Test SubVI to Code 1.vi ├── Test Transcriptor LabVIEW to C code 1.vi ├── Test Transcriptor LabVIEW to C code 2.vi └── Test WhileLoop Iterator Info.vi ├── Transcriptors ├── 1 │ └── Transcriptor LabVIEW to C code Engine 1.vi ├── 2 │ ├── Examples - Arduino │ │ ├── Example Arduino Blink LED using Extended pinMode.vi │ │ ├── Example Arduino Blink LED.vi │ │ ├── Example Arduino Serial 1.vi │ │ ├── Example_Arduino_Blink_LED │ │ │ └── Example_Arduino_Blink_LED.ino │ │ ├── Example_Arduino_Serial_1 │ │ │ └── Example_Arduino_Serial_1.ino │ │ ├── Example_MSP430_Blink │ │ │ ├── blink.cpp │ │ │ ├── blink.d_raw │ │ │ ├── blink.ino │ │ │ ├── blink.lst │ │ │ ├── blink.map │ │ │ ├── blink.obj │ │ │ ├── blink.out │ │ │ └── blink_linkInfo.xml │ │ ├── Transcript Example Arduino Blink LED.vi │ │ └── Transcript Example Arduino Serial 1.vi │ ├── LabVIEW Universal Transcriptor Tools │ │ ├── LabVIEW VI to Flatten XML.vi │ │ ├── LabVIEW to Arduino code with uploader.vi │ │ └── LabVIEW to Arduino code.vi │ ├── Simple Post Build Generate Arduino Code Template for User Projects.vi │ ├── Transcriptor LabVIEW for Arduino.vi │ ├── Transcriptor LabVIEW to C code Arduino Frontend.vi │ ├── Transcriptor LabVIEW to C code Arduino GUI.vi │ ├── Transcriptor LabVIEW to C code Composer.vi │ ├── Transcriptor LabVIEW to C code Engine 2.vi │ ├── Transcriptor LabVIEW to C code Step 0 Create Definitions.vi │ ├── Transcriptor LabVIEW to C code Step 1 and 2 Wires Declarations and Assignements.vi │ ├── Transcriptor LabVIEW to C code Step 3 Translate Elements.vi │ ├── Transcriptor LabVIEW to C code Step 4 Assign Output Values.vi │ └── Transcriptor LabVIEW to C code Translator Native Functions.vi ├── 3 │ ├── LabVIEW Universal Transcriptor Tools │ │ └── LabVIEW to Python code.vi │ ├── Transcriptor LabVIEW to Python code Engine 3.vi │ └── Transcriptor LabVIEW to Python code Step 3 Translate Elements.vi ├── 4 │ ├── LabVIEW Universal Transcriptor Tools │ │ └── LabVIEW to VHDL code.vi │ ├── Transcriptor LabVIEW to VHDL code Engine 4.vi │ ├── Transcriptor LabVIEW to VHDL code Step 0 Create Definitions.vi │ ├── Transcriptor LabVIEW to VHDL code Step 1 and 2 Wires Declarations and Assignements.vi │ ├── Transcriptor LabVIEW to VHDL code Step 3 Translate Elements.vi │ ├── Transcriptor LabVIEW to VHDL code Step 4 Assign Output Values.vi │ └── Transcriptor LabVIEW to VHDL code Translator Native Functions.vi ├── System API │ ├── Array Push Element.vi │ ├── ArrayPointerFunction │ │ ├── Array Get Pointer.vi │ │ ├── ArrayBoolean Get Pointer.vi │ │ ├── ArrayChar Get Pointer.vi │ │ ├── ArrayDouble Get Pointer.vi │ │ ├── ArrayFloat Get Pointer.vi │ │ ├── ArrayInt Get Pointer.vi │ │ ├── ArrayLong Get Pointer.vi │ │ ├── ArrayString Get Pointer.vi │ │ ├── ArrayUnsignedChar Get Pointer.vi │ │ ├── ArrayUnsignedInt Get Pointer.vi │ │ ├── ArrayUnsignedLong Get Pointer.vi │ │ ├── ArrayWord Get Pointer.vi │ │ └── Translator Array Get Pointer.vi │ ├── Basic Datatypes Pointers │ │ ├── BooleanPointer.ctl │ │ ├── BooleanPointer.lvclass │ │ ├── BooleanPointerClass │ │ │ └── Read datatype.vi │ │ ├── CharPointer.ctl │ │ ├── CharPointer.lvclass │ │ ├── CharPointerClass │ │ │ └── Read datatype.vi │ │ ├── DoublePointer.ctl │ │ ├── DoublePointer.lvclass │ │ ├── DoublePointerClass │ │ │ └── Read datatype.vi │ │ ├── FloatPointer.ctl │ │ ├── FloatPointer.lvclass │ │ ├── FloatPointerClass │ │ │ └── Read datatype.vi │ │ ├── IntPointer.ctl │ │ ├── IntPointer.lvclass │ │ ├── IntPointerClass │ │ │ └── Read datatype.vi │ │ ├── LongPointer.ctl │ │ ├── LongPointer.lvclass │ │ ├── LongPointerClass │ │ │ └── Read datatype.vi │ │ ├── StringPointer.ctl │ │ ├── StringPointer.lvclass │ │ ├── StringPointerClass │ │ │ └── Read datatype.vi │ │ ├── UnsignedCharPointer.ctl │ │ ├── UnsignedCharPointer.lvclass │ │ ├── UnsignedCharPointerClass │ │ │ └── Read datatype.vi │ │ ├── UnsignedIntPointer.ctl │ │ ├── UnsignedIntPointer.lvclass │ │ ├── UnsignedIntPointerClass │ │ │ └── Read datatype.vi │ │ ├── UnsignedLongPointer.ctl │ │ ├── UnsignedLongPointer.lvclass │ │ ├── UnsignedLongPointerClass │ │ │ └── Read datatype.vi │ │ ├── VoidPointer.ctl │ │ ├── VoidPointer.lvclass │ │ ├── VoidPointerClass │ │ │ └── Read datatype.vi │ │ ├── WordPointer.ctl │ │ ├── WordPointer.lvclass │ │ └── WordPointerClass │ │ │ └── Read datatype.vi │ ├── BasicDatatypesPointerFunction │ │ ├── BasicDatatype Get Pointer.vi │ │ ├── Bool Get Pointer.vi │ │ ├── Char Get Pointer.vi │ │ ├── Double Get Pointer.vi │ │ ├── Float Get Pointer.vi │ │ ├── Int Get Pointer.vi │ │ ├── Long Get Pointer.vi │ │ ├── Translator BasicDatatype Get Pointer.vi │ │ ├── Unsigned Int Get Pointer.vi │ │ ├── Unsigned Long Get Pointer.vi │ │ ├── UnsignedChar Get Pointer.vi │ │ └── Word Get Pointer.vi │ ├── Serial available.vi │ ├── Serial begin.vi │ ├── Serial end.vi │ ├── Serial flush.vi │ ├── Serial print frac number.vi │ ├── Serial print integer.vi │ ├── Serial print string.vi │ ├── Serial print.vi │ ├── Serial println frac number.vi │ ├── Serial println integer.vi │ ├── Serial println string.vi │ ├── Serial println.vi │ ├── Serial read.vi │ ├── Serial write.vi │ ├── System Serial Library Variables │ │ ├── Serial Buffer.vi │ │ ├── Serial Read Buffer.vi │ │ ├── Serial Simulated Status.vi │ │ └── System Serial Library Variables.lvlib │ ├── Translator System API.vi │ ├── analogRead.vi │ ├── analogReference.vi │ ├── analogWrite.vi │ ├── attachInterrupt.vi │ ├── delay.vi │ ├── delayMicroseconds.vi │ ├── detachInterrupt.vi │ ├── digitalRead.vi │ ├── digitalWrite.vi │ ├── interrupts.vi │ ├── micros.vi │ ├── millis.vi │ ├── nointerrupts.vi │ ├── pinMode.vi │ └── pinModeExtended.vi └── utils │ ├── Energia Create Build Cpp Command 2.vi │ ├── Energia Create Build Cpp Command.vi │ └── Get Breakpoints Lines Numbers.vi ├── UniversalTranscriptor.aliases ├── UniversalTranscriptor.lvlps ├── UniversalTranscriptor.lvproj ├── build spec ├── LabVIEW Universal Transcriptor.vipb ├── license.txt └── lubomirjagos_lib_labview_universal_transcriptor-0.1.0.51.vip ├── license.txt ├── types ├── Get Max Nested Level To Go.vi ├── LabVIEW Cluster Item Not Named Prefix.vi ├── LabVIEW Datatype Prefix.vi ├── LabVIEW SubVI autogen Name Prefix.vi ├── LabVIEW Universal Transcriptor Arduino Boards Specific Names.ctl ├── LabVIEW Universal Transcriptor C code Composer Input Cluster.ctl ├── LabVIEW Universal Transcriptor Cluster.ctl ├── LabVIEW Universal Transcriptor Defines Cluster.ctl ├── LabVIEW Universal Transcriptor Structure Definitions.ctl └── String Replace LabVIEW Data Types With C types.vi └── utils ├── CaseStructure Create Case Calls.vi ├── CaseStructure Format FrameNames Into C code Strings.vi ├── CaseStructure Get FrameNames.vi ├── CaseStructure Get Frames Output Assignements.vi ├── CaseStructure Get Selector C Call.vi ├── CaseStructure Get Wire Frame Index.vi ├── CaseStructure Terminals Info.vi ├── CaseStructure to Code.vi ├── ClassName to Ref.vi ├── Cluster Bundler Get Typedef Terminal.vi ├── Cluster Generate Datatype Name.vi ├── Cluster Get Datatype From Variant.vi ├── Cluster Get Datatype.vi ├── Cluster Make Typedef Elements Info.vi ├── Cluster Make Typedef.vi ├── Cluster to C code.vi ├── Compile for Arduino.vi ├── Diagram Get Constant Assignements.vi ├── Diagram Get Execution Order debug.vi ├── ForLoop Get N Counter.vi ├── ForLoop Terminals Info.vi ├── ForLoop to Code.vi ├── Get Connected Entities.vi ├── Get Diagram Constant refs.vi ├── Get Diagram Not Connected SubVI refs.vi ├── Get Directly Owned Objects.vi ├── Get Elements Inside Reference By Type.vi ├── Get Name from Class ID.vi ├── Get Objects By ParentClass.vi ├── Get Output Terminals.vi ├── Get StaticVIReference from Terminal.vi ├── Get Terminal Owner Until Structure.vi ├── Get Terminals Info.vi ├── Get Top Controls.vi ├── Get Tunnel Inside Terminals.vi ├── Get VI Controls.vi ├── Get VI Indicators.vi ├── Get Variant Data Type.vi ├── Get Variant Value.vi ├── Get WhileLoop Terminals.vi ├── Get Wire Info.vi ├── Get Wire Next Element.vi ├── Get Wires Info.vi ├── Get only Top VI elements.vi ├── Is Class Descendand of Class.vi ├── Is Element Owned.vi ├── Is Variant LabVIEW Class.vi ├── Loop Get FeedbackNode Init Terminals.vi ├── Loop Get Input Output Assignements VHDL.vi ├── Loop Get Input Output Assignements.vi ├── Loop Get ShiftRegister Input Output Assignements VHDL.vi ├── Loop Get ShiftRegister Input Output Assignements.vi ├── PointerDatatype Class └── Read datatype.vi ├── PointerDatatype.lvclass ├── Random 0-9999 String.vi ├── Reference To UID.vi ├── String Array Concatenate To String.vi ├── String Array Delete Duplicates.vi ├── String Array Remove Duplicate Typedefinitions.vi ├── String Correct Whitespaces.vi ├── String Get Item Real Name from Full Name.vi ├── String Indent Code.vi ├── String Search If Contain.vi ├── String Trim Both Sides.vi ├── SubVI Call Translator If Exists.vi ├── SubVI Function Call Parameters C Code Chunks.vi ├── SubVI Is Password Locked.vi ├── SubVI Terminals Info.vi ├── SubVI Translate VHDL.vi ├── SubVI Translate.vi ├── SubVI to Code.vi ├── System Function Call Translator If Exists VHDL.vi ├── System Function Call Translator If Exists.vi ├── TopLevelDiagram to Code.vi ├── TranscriptorBasicObject Class ├── Read datatype.vi └── Read value.vi ├── TranscriptorBasicObject Constant.vi ├── TranscriptorBasicObject Control.ctl ├── TranscriptorBasicObject Indicator.ctl ├── TranscriptorBasicObject.lvclass ├── Unbundle Code Cluster.vi ├── WhileLoop Get Selector C Call.vi ├── WhileLoop Terminals Info.vi ├── WhileLoop to Code.vi ├── Wire Is Different as WhileLoop EndRef Wire.vi └── composite ├── Get Error in from Terminals Info.vi ├── Get Error out from Terminals Info.vi ├── Get Inside Structure Wires declarations.vi ├── Get LoopTunnel Inside Terminal Wire Name.vi ├── Get LoopTunnel Terminals Datatypes.vi └── Get Output Assignements and Declarations.vi /.gitignore: -------------------------------------------------------------------------------- 1 | builds 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "lv-scripting"] 2 | path = lv-scripting 3 | url = https://github.com/stupaq/lv-scripting 4 | [submodule "Arduino libraries/StandardCplusplus"] 5 | path = Arduino libraries/StandardCplusplus 6 | url = https://github.com/maniacbug/StandardCplusplus 7 | [submodule "Arduino libraries/ArduinoSTL"] 8 | path = Arduino libraries/ArduinoSTL 9 | url = https://github.com/mike-matera/ArduinoSTL 10 | -------------------------------------------------------------------------------- /C code/Test_Blink/Test_Blink.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | SoftwareSerial* ArduinoLabVIEWcreatedUART_3; 8 | 9 | #include 10 | 11 | 12 | using namespace std; 13 | 14 | void Blink_5(){ 15 | unsigned int wireUID_1641_ = 9600; 16 | unsigned char wireUID_1634_ = 0; 17 | unsigned char wireUID_1629_ = 1; 18 | bool wireUID_1576_ = false; 19 | long wireUID_1507_ = 3; 20 | long wireUID_1396_ = 2; 21 | bool wireUID_740_ = true; 22 | long wireUID_705_ = 3; 23 | long wireUID_652_ = 2; 24 | ArduinoLabVIEWcreatedUART_3 = new SoftwareSerial( wireUID_1634_, wireUID_1629_); 25 | 26 | ArduinoLabVIEWcreatedUART_3->begin(wireUID_1641_); 27 | 28 | pinMode(wireUID_652_,wireUID_740_?OUTPUT:INPUT); 29 | pinMode(wireUID_705_,wireUID_740_?OUTPUT:INPUT); 30 | digitalWrite(wireUID_1396_,wireUID_1576_?HIGH:LOW); 31 | digitalWrite(wireUID_1507_,wireUID_1576_?HIGH:LOW); 32 | /***** BEGIN WhileLoop ********/ 33 | bool wireUID_1608_ = false; //LoopEndRef. 34 | int iteratorUID_1541 = 0; //loop iterator 35 | do{ 36 | //shift register init and get front value 37 | long wireUID_1394_ = 7; 38 | long wireUID_672_ = 7; 39 | /**** BEGIN ForLoop *****/ 40 | vector feedbackNode_615; 41 | bool feedbackNodeInitBool_615 = true; 42 | 43 | 44 | int iteratorUID_289 = 0; //loop iterator 45 | for (int LVHardcodedCnt = 0; LVHardcodedCnt < wireUID_672_; LVHardcodedCnt++){ 46 | // shift regs 47 | bool wireUID_1415_ = true; 48 | bool wireUID_642_; 49 | bool wireUID_446_; 50 | long wireUID_426_ = 1000; 51 | delay(wireUID_426_); 52 | if (feedbackNodeInitBool_615){ 53 | feedbackNode_615.push_back(wireUID_1415_); 54 | feedbackNodeInitBool_615 = false; 55 | } 56 | wireUID_642_ = feedbackNode_615.front(); feedbackNode_615.erase(feedbackNode_615.begin()); 57 | /***** BEGIN CaseStructure ********/ 58 | switch(wireUID_642_){ 59 | case true: 60 | { 61 | String wireUID_2208_ = "A1"; 62 | bool wireUID_1239_; 63 | bool wireUID_760_ = false; 64 | long wireUID_1157_ = 2; 65 | long wireUID_921_ = 3; 66 | wireUID_1239_ = !wireUID_760_; 67 | digitalWrite(wireUID_921_,wireUID_760_?HIGH:LOW); 68 | digitalWrite(wireUID_1157_,wireUID_1239_?HIGH:LOW); 69 | ArduinoLabVIEWcreatedUART_3->print(wireUID_2208_); 70 | 71 | /* C code */ 72 | wireUID_446_ = wireUID_760_; /* output assgn. */ 73 | } 74 | break; 75 | case false: 76 | { 77 | String wireUID_2308_ = "A0"; 78 | bool wireUID_721_ = true; 79 | bool wireUID_618_; 80 | long wireUID_606_ = 2; 81 | long wireUID_1038_ = 3; 82 | wireUID_618_ = !wireUID_721_; 83 | digitalWrite(wireUID_1038_,wireUID_721_?HIGH:LOW); 84 | digitalWrite(wireUID_606_,wireUID_618_?HIGH:LOW); 85 | ArduinoLabVIEWcreatedUART_3->print(wireUID_2308_); 86 | 87 | /* C code */ 88 | wireUID_446_ = wireUID_721_; /* output assgn. */ 89 | } 90 | break; 91 | } 92 | /****** END CaseStructure ********/ 93 | /* Don't know how to translate class "Generic ->GObject ->Node": "" */ 94 | feedbackNode_615.push_back(wireUID_446_); 95 | /* C code*/ 96 | 97 | /* output assignements */ 98 | iteratorUID_289++; //iterator increment 99 | } 100 | /***** END ForLoop ******/ 101 | /**** BEGIN ForLoop *****/ 102 | vector feedbackNode_1321; 103 | bool feedbackNodeInitBool_1321 = true; 104 | 105 | 106 | int iteratorUID_843 = 0; //loop iterator 107 | for (int LVHardcodedCnt = 0; LVHardcodedCnt < wireUID_1394_; LVHardcodedCnt++){ 108 | // shift regs 109 | bool wireUID_1336_ = true; 110 | bool wireUID_1339_; 111 | bool wireUID_1342_; 112 | long wireUID_1349_ = 1000; 113 | if (feedbackNodeInitBool_1321){ 114 | feedbackNode_1321.push_back(wireUID_1336_); 115 | feedbackNodeInitBool_1321 = false; 116 | } 117 | wireUID_1339_ = feedbackNode_1321.front(); feedbackNode_1321.erase(feedbackNode_1321.begin()); 118 | delay(wireUID_1349_); 119 | /***** BEGIN CaseStructure ********/ 120 | switch(wireUID_1339_){ 121 | case true: 122 | { 123 | String wireUID_2896_ = "B1"; 124 | bool wireUID_1298_ = false; 125 | long wireUID_1308_ = 2; 126 | long wireUID_1312_ = 3; 127 | digitalWrite(wireUID_1312_,wireUID_1298_?HIGH:LOW); 128 | digitalWrite(wireUID_1308_,wireUID_1298_?HIGH:LOW); 129 | ArduinoLabVIEWcreatedUART_3->print(wireUID_2896_); 130 | 131 | /* C code */ 132 | wireUID_1342_ = wireUID_1298_; /* output assgn. */ 133 | } 134 | break; 135 | case false: 136 | { 137 | String wireUID_3039_ = "B0"; 138 | bool wireUID_1121_ = true; 139 | long wireUID_1140_ = 2; 140 | long wireUID_1156_ = 3; 141 | digitalWrite(wireUID_1156_,wireUID_1121_?HIGH:LOW); 142 | digitalWrite(wireUID_1140_,wireUID_1121_?HIGH:LOW); 143 | ArduinoLabVIEWcreatedUART_3->print(wireUID_3039_); 144 | 145 | /* C code */ 146 | wireUID_1342_ = wireUID_1121_; /* output assgn. */ 147 | } 148 | break; 149 | } 150 | /****** END CaseStructure ********/ 151 | /* Don't know how to translate class "Generic ->GObject ->Node": "" */ 152 | feedbackNode_1321.push_back(wireUID_1342_); 153 | /* C code*/ 154 | 155 | /* output assignements */ 156 | iteratorUID_843++; //iterator increment 157 | } 158 | /***** END ForLoop ******/ 159 | //C code 160 | 161 | //output assgn. 162 | iteratorUID_1541++; //iterator increment 163 | }while(!wireUID_1608_); //negation because in LabVIEW it is when stop (oposite) 164 | /****** END WhileLoop */ 165 | 166 | } 167 | 168 | void setup(){} 169 | void loop(){ 170 | Blink_5(); 171 | } 172 | -------------------------------------------------------------------------------- /C code/Test_Build_Array_1/Test_Build_Array_1.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | using namespace std; 5 | 6 | void Blink_4_experimental(){ 7 | double numA[] = {0,0,0,0}; 8 | double* numB = numA; 9 | //numA[5][10]; 10 | 11 | bool wireUID_424_ = true; 12 | bool wireUID_740_ = true; 13 | long wireUID_705_ = 3; 14 | long wireUID_652_ = 2; 15 | pinMode(wireUID_652_,wireUID_740_?OUTPUT:INPUT); 16 | pinMode(wireUID_705_,wireUID_740_?OUTPUT:INPUT); 17 | /***** BEGIN WhileLoop ********/ 18 | vector feedbackNode_615; 19 | bool feedbackNodeInitBool_615 = true; 20 | 21 | bool wireUID_430_ = false; //LoopEndRef. 22 | int iteratorUID_289 = 0; //loop iterator 23 | do{ 24 | //shift register init 25 | bool wireUID_317_; 26 | bool wireUID_642_; 27 | long wireUID_1157_ = 2; 28 | long wireUID_921_ = 3; 29 | long wireUID_426_ = 220; 30 | if (feedbackNodeInitBool_615){ 31 | feedbackNode_615.push_back(wireUID_424_); 32 | feedbackNodeInitBool_615 = false; 33 | } 34 | wireUID_642_ = feedbackNode_615.front(); feedbackNode_615.erase(feedbackNode_615.begin()); 35 | delay(wireUID_426_); 36 | wireUID_317_ = !wireUID_642_; 37 | digitalWrite(wireUID_921_,wireUID_642_?HIGH:LOW); 38 | /* Don't know how to translate class "Generic ->GObject ->Node": "" */ 39 | digitalWrite(wireUID_1157_,wireUID_317_?HIGH:LOW); 40 | feedbackNode_615.push_back(wireUID_317_); 41 | //C code 42 | 43 | //output assgn. 44 | iteratorUID_289++; //iterator increment 45 | }while(!wireUID_430_); //negation because in LabVIEW it is when stop (oposite) 46 | /****** END WhileLoop */ 47 | 48 | } 49 | 50 | void setup(){} 51 | void loop(){ 52 | Blink_4_experimental(); 53 | } 54 | -------------------------------------------------------------------------------- /C code/Test_Bundler_1/Test_Bundler_1.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | using namespace std; 6 | typedef struct LVcluster_{ 7 | ; 8 | }; 9 | typedef struct LVcluster_String_I32_vectorString{ 10 | String A; 11 | long B; 12 | vector C; 13 | }; 14 | 15 | 16 | void Example_Bundler_1(){ 17 | LVcluster_String_I32_vectorString wireUID_1207_; 18 | long wireUID_264_ = 0; 19 | /***** BEGIN CaseStructure ********/ 20 | switch(wireUID_264_){ 21 | case 0: 22 | { 23 | LVcluster_String_I32_vectorString wireUID_883_ = {"",0,vector()}; 24 | LVcluster_String_I32_vectorString wireUID_1095_; 25 | vector wireUID_988_ = {"B","C","D"}; 26 | String wireUID_936_ = "A"; 27 | /***** Bundler ****/ 28 | wireUID_1095_.A = wireUID_936_; 29 | wireUID_1095_.C = wireUID_988_; 30 | /***** End Bundler ****/ 31 | /* C code */ 32 | wireUID_1207_ = wireUID_1095_; /* output assgn. */ 33 | } 34 | break; 35 | } 36 | /****** END CaseStructure ********/ 37 | 38 | } 39 | 40 | void setup(){} 41 | void loop(){ 42 | Example_Bundler_1(); 43 | } 44 | 45 | -------------------------------------------------------------------------------- /C code/Test_Bundler_Unbundler_1/Test_Bundler_Unbundler_1.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | SoftwareSerial* ArduinoLabVIEWcreatedUART_3; 9 | 10 | #include 11 | 12 | 13 | using namespace std; 14 | typedef struct LVcluster_I32_String{ 15 | long senseOfLife; 16 | String partOfBookText; 17 | }; 18 | 19 | void Example_Bundler_Unbundler_1(){ 20 | LVcluster_I32_String wireUID_3016_; 21 | LVcluster_I32_String wireUID_2999_; 22 | LVcluster_I32_String wireUID_2978_; 23 | LVcluster_I32_String wireUID_1231_ = {0,""}; 24 | String wireUID_1820_ = "Aldous Huxley, Brave New World"; 25 | long wireUID_1814_ = 2; 26 | long wireUID_1708_ = 1; 27 | String wireUID_1700_ = "1984 George Orwell"; 28 | String wireUID_1326_ = "Hitchhiker's guide through the galaxy."; 29 | long wireUID_1315_ = 0; 30 | unsigned int wireUID_763_ = 9600; 31 | unsigned char wireUID_717_ = 0; 32 | unsigned char wireUID_692_ = 1; 33 | ArduinoLabVIEWcreatedUART_3 = new SoftwareSerial( wireUID_717_, wireUID_692_); 34 | 35 | /***** Bundler ****/ 36 | wireUID_2978_.senseOfLife = wireUID_1315_; 37 | wireUID_2978_.partOfBookText = wireUID_1326_; 38 | /***** End Bundler ****/ 39 | /***** Bundler ****/ 40 | wireUID_2999_.senseOfLife = wireUID_1708_; 41 | wireUID_2999_.partOfBookText = wireUID_1700_; 42 | /***** End Bundler ****/ 43 | /***** Bundler ****/ 44 | wireUID_3016_.senseOfLife = wireUID_1814_; 45 | wireUID_3016_.partOfBookText = wireUID_1820_; 46 | /***** End Bundler ****/ 47 | ArduinoLabVIEWcreatedUART_3->begin(wireUID_763_); 48 | 49 | /***** BEGIN WhileLoop ********/ 50 | CircularBuffer feedbackNode_2002; 51 | bool feedbackNodeInitBool_2002 = true; 52 | 53 | bool wireUID_2127_ = false; //LoopEndRef. 54 | int iteratorUID_494 = 0; //loop iterator 55 | do{ 56 | //shift register init 57 | unsigned char wireUID_1007_; 58 | String wireUID_972_ = ""; 59 | long wireUID_2673_ = wireUID_2673_; 60 | LVcluster_I32_String wireUID_740_ = wireUID_3016_; 61 | LVcluster_I32_String wireUID_725_ = wireUID_2999_; 62 | LVcluster_I32_String wireUID_714_ = wireUID_2978_; 63 | long wireUID_2588_; 64 | long wireUID_2660_ = -1; 65 | bool wireUID_2599_; 66 | long wireUID_2577_ = 2; 67 | long wireUID_565_ = 1000; 68 | String wireUID_1870_ = " - "; 69 | if (feedbackNodeInitBool_2002){ 70 | feedbackNode_2002.push(wireUID_2660_); 71 | feedbackNodeInitBool_2002 = false; 72 | } 73 | wireUID_2588_ = feedbackNode_2002.shift(); 74 | wireUID_2599_ = wireUID_2577_ == wireUID_2588_; 75 | /***** BEGIN CaseStructure ********/ 76 | switch(wireUID_2599_){ 77 | case false: 78 | { 79 | long wireUID_2755_; 80 | long wireUID_2702_ = wireUID_2588_; 81 | wireUID_2755_ = wireUID_2702_ + 1; 82 | /* C code */ 83 | wireUID_2673_ = wireUID_2755_; /* output assgn. */ 84 | } 85 | break; 86 | case true: 87 | { 88 | long wireUID_2697_ = 0; 89 | /* C code */ 90 | wireUID_2673_ = wireUID_2697_; /* output assgn. */ 91 | } 92 | break; 93 | } 94 | /****** END CaseStructure ********/ 95 | /* Don't know how to translate class "Generic ->GObject ->Node": "" */ 96 | /***** BEGIN CaseStructure ********/ 97 | switch(wireUID_2673_){ 98 | case 1 : 99 | { 100 | String wireUID_1567_ = "one"; 101 | ArduinoLabVIEWcreatedUART_3->print(wireUID_1567_); 102 | 103 | /* C code */ 104 | /* output assgn. */ 105 | } 106 | break; 107 | case 2 : 108 | { 109 | String wireUID_1141_ = "two"; 110 | ArduinoLabVIEWcreatedUART_3->print(wireUID_1141_); 111 | 112 | /* C code */ 113 | /* output assgn. */ 114 | } 115 | break; 116 | case 0: 117 | { 118 | String wireUID_1757_ = "zero"; 119 | ArduinoLabVIEWcreatedUART_3->print(wireUID_1757_); 120 | 121 | /* C code */ 122 | /* output assgn. */ 123 | } 124 | break; 125 | } 126 | /****** END CaseStructure ********/ 127 | ArduinoLabVIEWcreatedUART_3->print(wireUID_1870_); 128 | 129 | /***** BEGIN CaseStructure ********/ 130 | switch(wireUID_2673_){ 131 | case 0: 132 | { 133 | String wireUID_848_; 134 | LVcluster_I32_String wireUID_819_ = wireUID_714_; 135 | /***** BEGIN Unbundler *****/ 136 | wireUID_848_ = (*(String*) (((void*) &wireUID_819_) + sizeof(long))); 137 | /***** END Unbundler *****/ 138 | ArduinoLabVIEWcreatedUART_3->print(wireUID_848_); 139 | 140 | /* C code */ 141 | /* output assgn. */ 142 | } 143 | break; 144 | case 1 : 145 | { 146 | String wireUID_1057_; 147 | LVcluster_I32_String wireUID_973_ = wireUID_725_; 148 | /***** BEGIN Unbundler *****/ 149 | wireUID_1057_ = (*(String*) (((void*) &wireUID_973_) + sizeof(long))); 150 | /***** END Unbundler *****/ 151 | ArduinoLabVIEWcreatedUART_3->print(wireUID_1057_); 152 | 153 | /* C code */ 154 | /* output assgn. */ 155 | } 156 | break; 157 | case 2 : 158 | { 159 | LVcluster_I32_String wireUID_439_ = wireUID_740_; 160 | String wireUID_1230_; 161 | /***** BEGIN Unbundler *****/ 162 | wireUID_1230_ = (*(String*) (((void*) &wireUID_439_) + sizeof(long))); 163 | /***** END Unbundler *****/ 164 | ArduinoLabVIEWcreatedUART_3->print(wireUID_1230_); 165 | 166 | /* C code */ 167 | /* output assgn. */ 168 | } 169 | break; 170 | } 171 | /****** END CaseStructure ********/ 172 | wireUID_1007_ = ArduinoLabVIEWcreatedUART_3->println(); 173 | 174 | delay(wireUID_565_); /* by Translator.vi, VI Path: C:\Users\ljagos\Documents\LabVIEW\LabVIEW-Universal-Transcriptor\Test\Examples For Parsing\delay.vi */ 175 | feedbackNode_2002.push(wireUID_2673_); 176 | //C code 177 | 178 | //output assgn. 179 | iteratorUID_494++; //iterator increment 180 | }while(!wireUID_2127_); //negation because in LabVIEW it is when stop (oposite) 181 | /****** END WhileLoop */ 182 | 183 | } 184 | 185 | void setup(){} 186 | void loop(){ 187 | Example_Bundler_Unbundler_1(); 188 | } 189 | 190 | -------------------------------------------------------------------------------- /C code/Test_Bundler_example_1/Test_Bundler_example_1.ino: -------------------------------------------------------------------------------- 1 | typedef struct myDefStruct{ 2 | int A = 3; 3 | float B = 4.2; 4 | String C = "Hello world!"; 5 | int D = 8; 6 | }; 7 | 8 | typedef struct myDefStruct2{ 9 | int _1; 10 | float _2; 11 | String _3; 12 | int _4; 13 | }; 14 | 15 | myDefStruct structA; 16 | void* ptrA; 17 | 18 | void setup(){ 19 | Serial.begin(9600); 20 | } 21 | 22 | void loop(){ 23 | /* t+his code run normally as expected, print values of struct items 24 | Serial.print(structA.A); 25 | Serial.print(" - "); 26 | Serial.print(structA.B); 27 | Serial.print(" - "); 28 | Serial.print(structA.C); 29 | Serial.print(" - "); 30 | Serial.print(structA.D); 31 | Serial.println(); 32 | delay(1000); 33 | */ 34 | /* 35 | ptrA = &structA; 36 | Serial.print(*((int*) ptrA)); 37 | Serial.print(" - "); 38 | Serial.print(*((float*) (ptrA + sizeof(int)))); 39 | Serial.print(" - "); 40 | Serial.print(*((String*) (ptrA + sizeof(int) + sizeof(float)))); 41 | Serial.print(" - "); 42 | Serial.print(*((int*) (ptrA + sizeof(int) + sizeof(float) + sizeof(String)))); 43 | Serial.println(); 44 | delay(1000); 45 | */ 46 | Serial.print(*((int*) ((void*) &structA))); 47 | Serial.print(" - "); 48 | Serial.print(*((float*) (((void*) &structA) + sizeof(int)))); 49 | Serial.print(" - "); 50 | Serial.print(*((String*) (((void*) &structA) + sizeof(int) + sizeof(float)))); 51 | Serial.print(" - "); 52 | Serial.print(*((int*) (((void*) &structA) + sizeof(int) + sizeof(float) + sizeof(String)))); 53 | Serial.println(); 54 | delay(1000); 55 | } 56 | 57 | -------------------------------------------------------------------------------- /C code/Test_Cluster/Test_Cluster.ino: -------------------------------------------------------------------------------- 1 | typedef struct myDefinedCluster{ 2 | int item0; 3 | String item1; 4 | double item2[5]; 5 | }; 6 | 7 | typedef struct myDefinedClusterSimilar{ 8 | int itemXYZ = 50; 9 | String anotherString; 10 | struct{ 11 | double age; 12 | }anotherStruct; 13 | double itemZ[5] = {1,2.2,35,4,7}; 14 | }; 15 | 16 | myDefinedCluster myVariable; 17 | myDefinedCluster *myVariableRef; 18 | myDefinedClusterSimilar myVar2; 19 | myDefinedClusterSimilar *myVar2Ref; 20 | 21 | void setup() { 22 | // put your setup code here, to run once: 23 | myVariable.item0 = 1042; 24 | myVariableRef = new myDefinedCluster(); 25 | myVar2.anotherStruct.age = 42; 26 | } 27 | 28 | void loop() { 29 | // put your main code here, to run repeatedly: 30 | myVariable.item0--; 31 | myVar2 = *((myDefinedClusterSimilar*) myVariableRef); 32 | } 33 | -------------------------------------------------------------------------------- /C code/Test_Cluster_4/Test_Cluster_4.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | using namespace std; 5 | typedef struct ClusterTypedef1{ 6 | String a; 7 | }; 8 | 9 | typedef struct LVcluster_I32_Double_Float_ClusterTypedef1{ 10 | long numeric_2; 11 | double double_2; 12 | ClusterTypedef1 superNestedCluster; 13 | }; 14 | typedef struct LVcluster_I32_Double_Float_ClusterTypedef1{ 15 | long numeric_1; 16 | double double_1; 17 | ClusterTypedef1 superNestedCluster; 18 | }; 19 | 20 | 21 | void Example_Cluster_4(){ 22 | 23 | } 24 | 25 | void setup(){} 26 | void loop(){ 27 | Example_Cluster_4(); 28 | } 29 | 30 | -------------------------------------------------------------------------------- /C code/Test_Example_Analog_1/Test_Example_Analog_1.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | using namespace std; 5 | vector shiftRegister_319; 6 | bool shiftRegisterInitBool_319 = true; 7 | 8 | 9 | void Example_Analog_1(){ 10 | long wireUID_422_ = 0; 11 | bool wireUID_327_ = true; 12 | long wireUID_893_ = 9; 13 | pinMode(wireUID_893_,wireUID_327_?OUTPUT:INPUT); 14 | /***** BEGIN WhileLoop ********/ 15 | bool wireUID_1169_ = false; //LoopEndRef. 16 | int iteratorUID_1055 = 0; //loop iterator 17 | do{ 18 | if (shiftRegisterInitBool_319){ 19 | shiftRegister_319.push_back(wireUID_422_); 20 | shiftRegisterInitBool_319 = false; 21 | } //shift register init and get front value 22 | long wireUID_1150_ = 13; 23 | long wireUID_806_; 24 | long wireUID_1107_; 25 | long wireUID_569_ = shiftRegister_319.front(); shiftRegister_319.erase(shiftRegister_319.begin());; 26 | long wireUID_630_ = 15; 27 | bool wireUID_539_; 28 | long wireUID_456_; 29 | long wireUID_1020_ = 120; 30 | long wireUID_717_ = 9; 31 | wireUID_539_ = wireUID_630_ == wireUID_569_; 32 | /***** BEGIN CaseStructure ********/ 33 | switch(wireUID_539_){ 34 | case true: 35 | { 36 | long wireUID_885_ = 0; 37 | /* C code */ 38 | wireUID_806_ = wireUID_885_; /* output assgn. */ 39 | } 40 | break; 41 | case false: 42 | { 43 | long wireUID_855_ = wireUID_569_; 44 | /* C code */ 45 | wireUID_806_ = wireUID_855_; /* output assgn. */ 46 | } 47 | break; 48 | } 49 | /****** END CaseStructure ********/ 50 | wireUID_456_ = wireUID_806_ + 1; 51 | wireUID_1107_ = wireUID_1150_ * wireUID_806_; 52 | analogWrite(wireUID_717_, wireUID_1107_); 53 | delay(wireUID_1020_); 54 | //C code 55 | 56 | shiftRegister_319.push_back(wireUID_456_); //output assgn. 57 | iteratorUID_1055++; //iterator increment 58 | }while(!wireUID_1169_); //negation because in LabVIEW it is when stop (oposite) 59 | /****** END WhileLoop */ 60 | 61 | } 62 | 63 | void setup(){} 64 | void loop(){ 65 | Example_Analog_1(); 66 | } 67 | 68 | -------------------------------------------------------------------------------- /C code/Test_Example_Math_1/Test_Example_Math_1.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include 6 | using namespace std; 7 | 8 | void Example_Math_1(){ 9 | long wireUID_497_ = 2; 10 | bool wireUID_465_ = true; 11 | long wireUID_712_ = 420; 12 | long wireUID_530_ = 9600; 13 | pinMode(wireUID_497_,wireUID_465_?OUTPUT:INPUT); 14 | Serial.begin(wireUID_530_); 15 | delay(wireUID_712_); 16 | /***** BEGIN WhileLoop ********/ 17 | vector feedbackNode_744; 18 | bool feedbackNodeInitBool_744 = true; 19 | 20 | bool wireUID_820_ = false; //LoopEndRef. 21 | int iteratorUID_756 = 0; //loop iterator 22 | do{ 23 | //shift register init and get front value 24 | String wireUID_1065_ = "pow(2.71) = "; 25 | String wireUID_1023_; 26 | String wireUID_1019_; 27 | float wireUID_987_; 28 | float wireUID_779_ = 2.710000; 29 | bool wireUID_848_; 30 | long wireUID_463_ = iteratorUID_756 /*Diagram owned wire terminal*/; 31 | long wireUID_940_ = 2; 32 | bool wireUID_783_; 33 | bool wireUID_831_ = false; 34 | long wireUID_610_ = 1000; 35 | String wireUID_461_; 36 | wireUID_461_ = String(wireUID_463_); 37 | if (feedbackNodeInitBool_744){ 38 | feedbackNode_744.push_back(wireUID_831_); 39 | feedbackNodeInitBool_744 = false; 40 | } 41 | wireUID_783_ = feedbackNode_744.front(); feedbackNode_744.erase(feedbackNode_744.begin()); 42 | Serial.println(wireUID_461_); 43 | wireUID_848_ = !wireUID_783_; 44 | delay(wireUID_610_); 45 | /* Don't know how to translate class "Generic ->GObject ->Node": "" */ 46 | digitalWrite(wireUID_940_,wireUID_783_?HIGH:LOW); 47 | wireUID_987_ = square(wireUID_779_); 48 | wireUID_1023_ = String(wireUID_987_); 49 | wireUID_1019_ = wireUID_1065_ + wireUID_1023_; 50 | Serial.println(wireUID_1019_); 51 | feedbackNode_744.push_back(wireUID_848_); 52 | //C code 53 | 54 | //output assgn. 55 | iteratorUID_756++; //iterator increment 56 | }while(!wireUID_820_); //negation because in LabVIEW it is when stop (oposite) 57 | /****** END WhileLoop */ 58 | 59 | } 60 | 61 | void setup(){} 62 | void loop(){ 63 | Example_Math_1(); 64 | } 65 | -------------------------------------------------------------------------------- /C code/Test_Example_Math_2/Test_Example_Math_2.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include "complex.h" 6 | #include 7 | Complex _ComplexNumberLibAux; 8 | using namespace std; 9 | 10 | void Example_Math_2(){ 11 | long wireUID_497_ = 2; 12 | bool wireUID_465_ = true; 13 | long wireUID_712_ = 420; 14 | long wireUID_530_ = 9600; 15 | pinMode(wireUID_497_,wireUID_465_?OUTPUT:INPUT); 16 | Serial.begin(wireUID_530_); 17 | delay(wireUID_712_); 18 | /***** BEGIN WhileLoop ********/ 19 | vector feedbackNode_744; 20 | bool feedbackNodeInitBool_744 = true; 21 | 22 | bool wireUID_820_ = false; //LoopEndRef. 23 | int iteratorUID_756 = 0; //loop iterator 24 | do{ 25 | //shift register init and get front value 26 | unsigned long wireUID_2412_; 27 | unsigned long wireUID_1915_; 28 | String wireUID_2517_; 29 | String wireUID_2409_; 30 | String wireUID_2405_ = "sin(c) = "; 31 | String wireUID_2088_; 32 | String wireUID_2071_ = "Original complex number: "; 33 | String wireUID_2042_; 34 | double wireUID_1870_ = 3.300000; 35 | double wireUID_1845_ = 4.200000; 36 | bool wireUID_848_; 37 | long wireUID_463_ = iteratorUID_756 /*Diagram owned wire terminal*/; 38 | long wireUID_940_ = 2; 39 | bool wireUID_783_; 40 | bool wireUID_831_ = false; 41 | long wireUID_610_ = 1000; 42 | String wireUID_461_; 43 | wireUID_461_ = String(wireUID_463_); 44 | if (feedbackNodeInitBool_744){ 45 | feedbackNode_744.push_back(wireUID_831_); 46 | feedbackNodeInitBool_744 = false; 47 | } 48 | wireUID_783_ = feedbackNode_744.front(); feedbackNode_744.erase(feedbackNode_744.begin()); 49 | Serial.println(wireUID_461_); 50 | wireUID_848_ = !wireUID_783_; 51 | delay(wireUID_610_); 52 | /* Don't know how to translate class "Generic ->GObject ->Node": "" */ 53 | digitalWrite(wireUID_940_,wireUID_783_?HIGH:LOW); 54 | wireUID_1915_ = (unsigned long int) new Complex(wireUID_1870_, wireUID_1845_); 55 | _ComplexNumberLibAux = *(Complex*) wireUID_1915_; 56 | wireUID_2042_ = String( _ComplexNumberLibAux.real()) + String(" i*") + String( _ComplexNumberLibAux.imag()); 57 | wireUID_2088_ = wireUID_2071_ + wireUID_2042_; 58 | Serial.println(wireUID_2088_); 59 | wireUID_2412_ = (unsigned long int) new Complex( ((Complex*)wireUID_1915_)->c_sin()); 60 | _ComplexNumberLibAux = *(Complex*) wireUID_2412_; 61 | wireUID_2409_ = String( _ComplexNumberLibAux.real()) + String(" i*") + String( _ComplexNumberLibAux.imag()); 62 | wireUID_2517_ = wireUID_2405_ + wireUID_2409_; 63 | Serial.println(wireUID_2517_); 64 | delete (Complex*)wireUID_1915_; 65 | delete (Complex*)wireUID_2412_; 66 | feedbackNode_744.push_back(wireUID_848_); 67 | //C code 68 | 69 | //output assgn. 70 | iteratorUID_756++; //iterator increment 71 | }while(!wireUID_820_); //negation because in LabVIEW it is when stop (oposite) 72 | /****** END WhileLoop */ 73 | 74 | } 75 | 76 | void setup(){} 77 | void loop(){ 78 | Example_Math_2(); 79 | } 80 | 81 | -------------------------------------------------------------------------------- /C code/Test_Example_Serial_2/Test_Example_Serial_2.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | using namespace std; 5 | 6 | void Example_Serial_2(){ 7 | long wireUID_712_ = 420; 8 | long wireUID_530_ = 9600; 9 | Serial.begin(wireUID_530_); 10 | delay(wireUID_712_); 11 | /***** BEGIN WhileLoop ********/ 12 | bool wireUID_820_ = false; //LoopEndRef. 13 | int iteratorUID_756 = 0; //loop iterator 14 | do{ 15 | //shift register init and get front value 16 | long wireUID_610_ = 2000; 17 | long wireUID_463_ = iteratorUID_756 /*Diagram owned wire terminal*/; 18 | String wireUID_461_; 19 | wireUID_461_ = String(wireUID_463_); 20 | Serial.println(wireUID_461_); 21 | delay(wireUID_610_); 22 | //C code 23 | 24 | //output assgn. 25 | iteratorUID_756++; //iterator increment 26 | }while(!wireUID_820_); //negation because in LabVIEW it is when stop (oposite) 27 | /****** END WhileLoop */ 28 | 29 | } 30 | 31 | void setup(){} 32 | void loop(){ 33 | Example_Serial_2(); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /C code/Test_Example_Serial_3/Test_Example_Serial_3.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | using namespace std; 5 | 6 | void Example_Serial_3(){ 7 | long wireUID_497_ = 2; 8 | bool wireUID_465_ = true; 9 | long wireUID_712_ = 420; 10 | long wireUID_530_ = 9600; 11 | pinMode(wireUID_497_,wireUID_465_?OUTPUT:INPUT); 12 | Serial.begin(wireUID_530_); 13 | delay(wireUID_712_); 14 | /***** BEGIN WhileLoop ********/ 15 | vector feedbackNode_744; 16 | bool feedbackNodeInitBool_744 = true; 17 | 18 | bool wireUID_820_ = false; //LoopEndRef. 19 | int iteratorUID_756 = 0; //loop iterator 20 | do{ 21 | //shift register init and get front value 22 | String wireUID_1272_; 23 | double wireUID_1233_ = 3.000000; 24 | double wireUID_1200_ = 1.000000; 25 | String wireUID_1136_ = "Division: 1/3 = "; 26 | long wireUID_463_ = iteratorUID_756 /*Diagram owned wire terminal*/; 27 | double wireUID_1058_; 28 | String wireUID_1039_; 29 | long wireUID_940_ = 2; 30 | bool wireUID_848_; 31 | bool wireUID_783_; 32 | bool wireUID_831_ = false; 33 | long wireUID_610_ = 1000; 34 | String wireUID_461_; 35 | wireUID_461_ = String(wireUID_463_); 36 | if (feedbackNodeInitBool_744){ 37 | feedbackNode_744.push_back(wireUID_831_); 38 | feedbackNodeInitBool_744 = false; 39 | } 40 | wireUID_783_ = feedbackNode_744.front(); feedbackNode_744.erase(feedbackNode_744.begin()); 41 | wireUID_1058_ = wireUID_1200_ / wireUID_1233_; 42 | Serial.println(wireUID_461_); 43 | wireUID_848_ = !wireUID_783_; 44 | wireUID_1039_ = String(wireUID_1058_); 45 | delay(wireUID_610_); 46 | /* Don't know how to translate class "Generic ->GObject ->Node": "" */ 47 | wireUID_1272_ = wireUID_1136_ + wireUID_1039_; 48 | digitalWrite(wireUID_940_,wireUID_783_?HIGH:LOW); 49 | Serial.println(wireUID_1272_); 50 | feedbackNode_744.push_back(wireUID_848_); 51 | //C code 52 | 53 | //output assgn. 54 | iteratorUID_756++; //iterator increment 55 | }while(!wireUID_820_); //negation because in LabVIEW it is when stop (oposite) 56 | /****** END WhileLoop */ 57 | 58 | } 59 | 60 | void setup(){} 61 | void loop(){ 62 | Example_Serial_3(); 63 | } 64 | 65 | -------------------------------------------------------------------------------- /C code/Test_Feedbacknode/Test_Feedbacknode.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | using namespace std; 6 | 7 | 8 | void Example_Feedbacknode_1(){ 9 | 10 | /***** BEGIN WhileLoop ********/ 11 | CircularBuffer feedbackNode_143; 12 | bool feedbackNodeInitBool_143 = true; 13 | 14 | CircularBuffer feedbackNode_870; 15 | bool feedbackNodeInitBool_870 = true; 16 | 17 | bool wireUID_962_; //LoopEndRef. 18 | do{ 19 | //shift register init 20 | float wireUID_1095_; 21 | String wireUID_289_; 22 | String wireUID_232_; 23 | String wireUID_202_; 24 | float wireUID_1207_; 25 | float wireUID_1147_ = -4.200000; 26 | float wireUID_1071_ = 0.000000; 27 | double wireUID_806_ = 4.700000; 28 | double wireUID_781_ = -2.200000; 29 | bool wireUID_729_; 30 | wireUID_729_ = wireUID_781_ > wireUID_806_; 31 | if (feedbackNodeInitBool_870){ 32 | feedbackNode_870.push(wireUID_1147_); 33 | feedbackNode_870.push(wireUID_1147_); 34 | feedbackNode_870.push(wireUID_1147_); 35 | feedbackNode_870.push(wireUID_1147_); 36 | feedbackNode_870.push(wireUID_1147_); 37 | feedbackNode_870.push(wireUID_1147_); 38 | feedbackNode_870.push(wireUID_1147_); 39 | feedbackNodeInitBool_870 = false; 40 | } 41 | wireUID_1207_ = feedbackNode_870.shift(); 42 | if (feedbackNodeInitBool_143){ 43 | feedbackNode_143.push(wireUID_289_); 44 | feedbackNodeInitBool_143 = false; 45 | } 46 | wireUID_232_ = feedbackNode_143.shift(); 47 | /***** BEGIN CaseStructure ********/ 48 | String wireUID_249_ = wireUID_232_; 49 | float wireUID_1256_ = wireUID_1207_; 50 | String wireUID_238_ = wireUID_232_; 51 | float wireUID_1039_ = wireUID_1071_; //wires declarations 52 | switch(wireUID_729_){ 53 | case false: 54 | 55 | 56 | /* C code */ 57 | wireUID_1095_ = wireUID_1256_; 58 | wireUID_202_ = wireUID_249_; /* output assgn. */ 59 | break; 60 | case true: 61 | 62 | 63 | /* C code */ 64 | wireUID_1095_ = wireUID_1039_; 65 | wireUID_202_ = wireUID_238_; /* output assgn. */ 66 | break; 67 | } 68 | /****** END CaseStructure ********/ 69 | /* Don't know how to translate class "Generic ->GObject ->Node ->": */ 70 | wireUID_962_ = (wireUID_1095_ > 0); 71 | /* Don't know how to translate class "Generic ->GObject ->Node ->": */ 72 | 73 | feedbackNode_870.push(wireUID_1095_); 74 | feedbackNode_143.push(wireUID_202_); 75 | 76 | 77 | 78 | //C code 79 | 80 | //output assgn. 81 | }while(!wireUID_962_); //negation because in LabVIEW it is when stop (oposite) 82 | /****** END WhileLoop */ 83 | 84 | } 85 | 86 | void setup(){} 87 | void loop(){ 88 | Example_Feedbacknode_1(); 89 | } 90 | 91 | -------------------------------------------------------------------------------- /C code/Test_NamedBundler/Test_NamedBundler.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | using namespace std; 5 | typedef struct UserDefined_StructType{ 6 | String LuboString; 7 | long NumInsideUserCluter; 8 | double Double_insideCluster; 9 | }; 10 | 11 | 12 | void Example_NamedBundler_1(){ 13 | long wireUID_264_ = 0; 14 | /***** BEGIN CaseStructure ********/ 15 | switch(wireUID_264_){ 16 | case 3: 17 | { 18 | long wireUID_1087_; 19 | String wireUID_1058_; 20 | UserDefined_StructType wireUID_950_D = {"LuboJe King",0,0.000000}; 21 | wireUID_1058_ = *(String*) ((void*) &wireUID_950_D + 0); 22 | wireUID_1087_ = *(long*) ((void*) &wireUID_950_D + sizeof(String)); 23 | 24 | /* C code */ 25 | /* output assgn. */ 26 | } 27 | break; 28 | case 2: 29 | { 30 | long wireUID_1187_ = 0; 31 | String wireUID_1162_ = ""; 32 | UserDefined_StructType wireUID_273_C; 33 | double wireUID_515_ = 4.200000; 34 | long wireUID_491_ = 42; 35 | String wireUID_467_ = "4.2.0"; 36 | UserDefined_StructType wireUID_416_B = {"LuboJe King",0,0.000000}; 37 | wireUID_273_C = {.LuboString = wireUID_467_,.NumInsideUserCluter = wireUID_491_,.Double_insideCluster = wireUID_515_}; //Bundler gen. 38 | /* C code */ 39 | /* output assgn. */ 40 | } 41 | break; 42 | default: 43 | { 44 | long wireUID_1137_ = 0; 45 | String wireUID_1112_ = ""; 46 | UserDefined_StructType wireUID_450_A = {"LuboJe King",0,0.000000}; 47 | /* C code */ 48 | /* output assgn. */ 49 | } 50 | break; 51 | } 52 | /****** END CaseStructure ********/ 53 | 54 | } 55 | 56 | void setup(){} 57 | void loop(){ 58 | Example_NamedBundler_1(); 59 | } 60 | 61 | -------------------------------------------------------------------------------- /C code/Test_Serial/Test_Serial.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | SoftwareSerial* ArduinoLabVIEWcreatedUART_3; 9 | 10 | #include 11 | 12 | 13 | #include 14 | using namespace std; 15 | 16 | CircularBuffer shiftRegister_497; 17 | bool shiftRegisterInitBool_497 = true; 18 | 19 | CircularBuffer shiftRegister_506; 20 | bool shiftRegisterInitBool_506 = true; 21 | 22 | CircularBuffer shiftRegister_2756; 23 | bool shiftRegisterInitBool_2756 = true; 24 | 25 | 26 | void Array_2(){ 27 | vector> wireUID_836_ = {{"hello","world","13","14"},{"21","22","this","is"},{"nice","32","matrix","34"},{"41","42",":D","finish"}}; 28 | long wireUID_2750_ = 0; 29 | bool wireUID_1741_ = true; 30 | long wireUID_1738_ = 0; 31 | unsigned int wireUID_1694_ = 9600; 32 | unsigned char wireUID_1686_ = 0; 33 | unsigned char wireUID_1675_ = 1; 34 | bool wireUID_1671_ = false; 35 | long wireUID_1642_ = 2; 36 | bool wireUID_1632_ = true; 37 | long wireUID_1622_ = 2; 38 | ArduinoLabVIEWcreatedUART_3 = new SoftwareSerial( wireUID_1686_, wireUID_1675_); 39 | 40 | ArduinoLabVIEWcreatedUART_3->begin(wireUID_1694_); 41 | 42 | pinMode(wireUID_1622_,wireUID_1632_?OUTPUT:INPUT); 43 | digitalWrite(wireUID_1642_,wireUID_1671_?HIGH:LOW); 44 | /***** BEGIN WhileLoop ********/ 45 | bool wireUID_1210_ = false; //LoopEndRef. 46 | int iteratorUID_522 = 0; //loop iterator 47 | do{ 48 | if (shiftRegisterInitBool_497){ 49 | shiftRegister_497.push(wireUID_1738_); 50 | shiftRegisterInitBool_497 = false; 51 | } 52 | if (shiftRegisterInitBool_506){ 53 | shiftRegister_506.push(wireUID_1741_); 54 | shiftRegisterInitBool_506 = false; 55 | } 56 | if (shiftRegisterInitBool_2756){ 57 | shiftRegister_2756.push(wireUID_2750_); 58 | shiftRegisterInitBool_2756 = false; 59 | } //shift register init 60 | unsigned char wireUID_683_; 61 | vector> wireUID_877_ = wireUID_836_; 62 | String wireUID_1095_; 63 | long wireUID_2830_column = shiftRegister_497.shift(); 64 | long wireUID_3480_row = shiftRegister_2756.shift(); 65 | long wireUID_2569_ = 2; 66 | long wireUID_3724_; 67 | long wireUID_3445_; 68 | long wireUID_2957_ = 3; 69 | bool wireUID_2934_; 70 | bool wireUID_1178_ = shiftRegister_506.shift(); 71 | bool wireUID_1181_; 72 | long wireUID_1206_ = 1000; 73 | wireUID_1181_ = !wireUID_1178_; 74 | wireUID_2934_ = wireUID_2830_column < wireUID_2957_; 75 | digitalWrite(wireUID_2569_,wireUID_1178_?HIGH:LOW); 76 | wireUID_1095_ = wireUID_877_[wireUID_3480_row][wireUID_2830_column]; 77 | /***** BEGIN CaseStructure ********/ 78 | switch(wireUID_2934_){ 79 | case false: 80 | { 81 | long wireUID_3719_; 82 | long wireUID_3551_ = wireUID_3480_row; 83 | bool wireUID_3591_; 84 | long wireUID_3547_ = 3; 85 | long wireUID_3440_ = 0; 86 | wireUID_3591_ = wireUID_3551_ < wireUID_3547_; 87 | /***** BEGIN CaseStructure ********/ 88 | switch(wireUID_3591_){ 89 | case false: 90 | { 91 | long wireUID_145_ = 0; 92 | 93 | /* C code */ 94 | wireUID_3719_ = wireUID_145_; /* output assgn. */ 95 | } 96 | break; 97 | case true: 98 | { 99 | long wireUID_3696_; 100 | long wireUID_3667_ = wireUID_3551_; 101 | wireUID_3696_ = wireUID_3667_ + 1; 102 | /* C code */ 103 | wireUID_3719_ = wireUID_3696_; /* output assgn. */ 104 | } 105 | break; 106 | } 107 | /****** END CaseStructure ********/ 108 | 109 | /* C code */ 110 | wireUID_3445_ = wireUID_3440_; 111 | wireUID_3724_ = wireUID_3719_; /* output assgn. */ 112 | } 113 | break; 114 | case true: 115 | { 116 | long wireUID_3746_ = wireUID_3480_row; 117 | long wireUID_3402_; 118 | long wireUID_3369_ = wireUID_2830_column; 119 | wireUID_3402_ = wireUID_3369_ + 1; 120 | /* C code */ 121 | wireUID_3445_ = wireUID_3402_; 122 | wireUID_3724_ = wireUID_3746_; /* output assgn. */ 123 | } 124 | break; 125 | } 126 | /****** END CaseStructure ********/ 127 | wireUID_683_ = ArduinoLabVIEWcreatedUART_3->print(wireUID_1095_); 128 | 129 | delay(wireUID_1206_); /* by Translator.vi, VI Path: C:\Users\lubo\Documents\LabView\LabVIEW-Universal-Transcriptor\Test\Examples For Parsing\delay.vi */ 130 | 131 | 132 | 133 | 134 | 135 | 136 | //C code 137 | 138 | shiftRegister_497.push(wireUID_3445_); 139 | shiftRegister_506.push(wireUID_1181_); 140 | shiftRegister_2756.push(wireUID_3724_); //output assgn. 141 | iteratorUID_522++; //iterator increment 142 | }while(!wireUID_1210_); //negation because in LabVIEW it is when stop (oposite) 143 | /****** END WhileLoop */ 144 | 145 | 146 | 147 | 148 | 149 | } 150 | 151 | void setup(){} 152 | void loop(){ 153 | Array_2(); 154 | } 155 | -------------------------------------------------------------------------------- /C code/Test_Simple_Web_Server/Test_Simple_Web_Server.ino: -------------------------------------------------------------------------------- 1 | using namespace std; 2 | typedef struct LVcluster_String_I32_Double_Float{ 3 | String LuboString; 4 | long NumInsideUserCluter; 5 | double Double_insideCluster; 6 | }; 7 | 8 | 9 | void Example_NamedBundler_2(){ 10 | double wireUID_1394_; 11 | String wireUID_1307_; 12 | LVcluster_String_I32_Double_Float wireUID_1240_; 13 | long wireUID_264_ = 0; 14 | /***** BEGIN CaseStructure ********/ 15 | switch(wireUID_264_){ 16 | case 2: 17 | { 18 | LVcluster_String_I32_Double_Float wireUID_1208_ = {"4.2.0",42,4.200000}; 19 | /* C code */ 20 | wireUID_1240_ = wireUID_1208_; /* output assgn. */ 21 | } 22 | break; 23 | default: 24 | { 25 | LVcluster_String_I32_Double_Float wireUID_1213_ = {"4.2.0",42,4.200000}; 26 | /* C code */ 27 | wireUID_1240_ = wireUID_1213_; /* output assgn. */ 28 | } 29 | break; 30 | } 31 | /****** END CaseStructure ********/ 32 | wireUID_1307_ = *(String*) ((void*) &wireUID_1240_ + 0); 33 | wireUID_1394_ = *(double*) ((void*) &wireUID_1240_ + sizeof(String) + sizeof(long)); 34 | 35 | 36 | } 37 | 38 | void setup(){} 39 | void loop(){ 40 | Example_NamedBundler_2(); 41 | } 42 | 43 | -------------------------------------------------------------------------------- /C code/Test_Unbundler_1/Test_Unbundler_1.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | using namespace std; 6 | typedef struct LVcluster_String_I32_vectorString{ 7 | String A; 8 | long LVClusterItem_1; 9 | vector LVClusterItem_2; 10 | }; 11 | 12 | void Example_Unbundler_1(){ 13 | LVcluster_String_I32_vectorString wireUID_773_ = wireUID_773_; 14 | bool wireUID_746_ = false; 15 | long wireUID_523_ = 0; 16 | /***** BEGIN CaseStructure ********/ 17 | switch(wireUID_523_){ 18 | case -1: 19 | { 20 | LVcluster_String_I32_vectorString wireUID_399_; 21 | vector wireUID_402_ = {"B","C","D"}; 22 | String wireUID_405_ = "A"; 23 | LVcluster_String_I32_vectorString wireUID_408_ = {"",0,vector()}; 24 | /***** Bundler ****/ 25 | wireUID_399_.A = wireUID_405_; 26 | wireUID_399_.LVClusterItem_2 = wireUID_402_; 27 | /***** End Bundler ****/ 28 | /* C code */ 29 | wireUID_773_ = wireUID_399_; /* output assgn. */ 30 | } 31 | break; 32 | case 0 : 33 | { 34 | LVcluster_String_I32_vectorString wireUID_499_; 35 | LVcluster_String_I32_vectorString wireUID_502_ = {"",0,vector()}; 36 | /***** Bundler ****/ 37 | 38 | /***** End Bundler ****/ 39 | /* C code */ 40 | wireUID_773_ = wireUID_499_; /* output assgn. */ 41 | } 42 | break; 43 | } 44 | /****** END CaseStructure ********/ 45 | /***** BEGIN CaseStructure ********/ 46 | switch(wireUID_746_){ 47 | case false: 48 | { 49 | vector wireUID_1226_; 50 | LVcluster_String_I32_vectorString wireUID_1162_ = wireUID_773_; 51 | /***** BEGIN Unbundler *****/ 52 | wireUID_1226_ = (*(vector*) (((void*) &wireUID_1162_) + sizeof(String)+ sizeof(long))); 53 | /***** END Unbundler *****/ 54 | /* C code */ 55 | /* output assgn. */ 56 | } 57 | break; 58 | case true: 59 | { 60 | String wireUID_1061_; 61 | long wireUID_1015_; 62 | LVcluster_String_I32_vectorString wireUID_804_ = wireUID_773_; 63 | /***** BEGIN Unbundler *****/ 64 | wireUID_1061_ = (*(String*) (((void*) &wireUID_804_) )); 65 | wireUID_1015_ = (*(long*) (((void*) &wireUID_804_) + sizeof(String))); 66 | /***** END Unbundler *****/ 67 | /* C code */ 68 | /* output assgn. */ 69 | } 70 | break; 71 | } 72 | /****** END CaseStructure ********/ 73 | 74 | } 75 | 76 | void setup(){} 77 | void loop(){ 78 | Example_Unbundler_1(); 79 | } 80 | 81 | -------------------------------------------------------------------------------- /C code/Test_Vector/Test_Vector.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | using namespace std; 5 | vector shiftRegister_438; 6 | bool shiftRegisterInitBool_438 = true; 7 | 8 | vector shiftRegister_460; 9 | bool shiftRegisterInitBool_460 = true; 10 | 11 | 12 | String Example_Shift_Register_Loop_1(String userString1,double numberA){ 13 | double wireUID_1011_; 14 | String wireUID_1506_; 15 | double wireUID_1464_; 16 | String wireUID_1031_; 17 | /***** BEGIN WhileLoop ********/ 18 | vector shiftRegister_1173; 19 | bool shiftRegisterInitBool_1173 = true; 20 | 21 | vector shiftRegister_1326; 22 | bool shiftRegisterInitBool_1326 = true; 23 | 24 | bool wireUID_333_ = false; //LoopEndRef. 25 | int iteratorUID_428 = 0; //loop iterator 26 | do{ 27 | if (shiftRegisterInitBool_438){ 28 | shiftRegister_438.push_back(wireUID_1031_); 29 | shiftRegisterInitBool_438 = false; 30 | } 31 | if (shiftRegisterInitBool_460){ 32 | shiftRegister_460.push_back(wireUID_1011_); 33 | shiftRegisterInitBool_460 = false; 34 | } //shift register init 35 | double wireUID_499_ = shiftRegister_460.front(); 36 | String wireUID_488_; 37 | double wireUID_477_; 38 | String wireUID_466_ = shiftRegister_438.front(); 39 | /***** BEGIN WhileLoop ********/ 40 | bool wireUID_1433_ = false; //LoopEndRef. 41 | int iteratorUID_989 = 0; //loop iterator 42 | do{ 43 | if (shiftRegisterInitBool_1173){ 44 | shiftRegister_1173.push_back(wireUID_499_); 45 | shiftRegisterInitBool_1173 = false; 46 | } 47 | if (shiftRegisterInitBool_1326){ 48 | shiftRegister_1326.push_back(wireUID_466_); 49 | shiftRegisterInitBool_1326 = false; 50 | } //shift register init 51 | double wireUID_1192_; 52 | String wireUID_1322_ = shiftRegister_1326.front(); 53 | String wireUID_1295_; 54 | double wireUID_1118_ = shiftRegister_1173.front(); 55 | double wireUID_1150_ = 4.200000; 56 | bool wireUID_1116_; 57 | wireUID_1116_ = (wireUID_1150_ >= wireUID_1118_); 58 | /***** BEGIN CaseStructure ********/ 59 | switch(wireUID_1116_){ 60 | case true: 61 | { 62 | String wireUID_1313_ = wireUID_1322_; 63 | double wireUID_1210_ = wireUID_1118_; 64 | /* C code */ 65 | wireUID_1192_ = wireUID_1210_; 66 | wireUID_1295_ = wireUID_1313_; /* output assgn. */ 67 | } 68 | break; 69 | case false: 70 | { 71 | String wireUID_1401_ = "Hello world."; 72 | double wireUID_1266_ = 0.000000; 73 | /* C code */ 74 | wireUID_1192_ = wireUID_1266_; 75 | wireUID_1295_ = wireUID_1401_; /* output assgn. */ 76 | } 77 | break; 78 | } 79 | /****** END CaseStructure ********/ 80 | //C code 81 | 82 | shiftRegister_1173.push_back(wireUID_1192_); 83 | shiftRegister_1326.push_back(wireUID_1295_); //output assgn. 84 | iteratorUID_989++; //iterator increment 85 | }while(!wireUID_1433_); //negation because in LabVIEW it is when stop (oposite) 86 | /****** END WhileLoop */ 87 | //C code 88 | 89 | shiftRegister_438.push_back(wireUID_488_); 90 | shiftRegister_460.push_back(wireUID_477_); //output assgn. 91 | iteratorUID_428++; //iterator increment 92 | }while(!wireUID_333_); //negation because in LabVIEW it is when stop (oposite) 93 | /****** END WhileLoop */ 94 | 95 | } 96 | 97 | void setup(){} 98 | void loop(){ 99 | Example_Shift_Register_Loop_1("a",42); 100 | } 101 | 102 | -------------------------------------------------------------------------------- /Debuggers/MSP430/MSP430 Simple Debugger.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Debuggers/MSP430/MSP430 Simple Debugger.vi -------------------------------------------------------------------------------- /Debuggers/MSP430/utils/DefaultStylesheet.xsl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |

Debug Server Log

19 |

Total Execution Time: ms

20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 |
SequenceTime (ms)Delta (ms)LevelMethodMessage
37 |
38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 |
72 | 73 | 74 | 75 |
76 | 77 | 78 | 79 |
80 |
81 | 82 |
-------------------------------------------------------------------------------- /Debuggers/MSP430/utils/MSP430_DebugServer_RUN.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM setpath.bat 4 | 5 | REM Scripting Root - two directories above the current directory 6 | set SCRPITING_ROOT=c:\ti\ccsv8\ccs_base\scripting\ 7 | 8 | echo %SCRPITING_ROOT% 9 | 10 | REM add locations of dss.bat and loadti to PATH 11 | set PATH=%PATH%;%SCRPITING_ROOT%\bin;%SCRPITING_ROOT%\examples\loadti 12 | 13 | cd c:\Users\Simon Gurfunkel\Documents\LabVIEW_projects\LabVIEW-Universal-Transcriptor\Debuggers\MSP430\utils\ 14 | c:\ti\ccsv8\ccs_base\scripting\bin\dss.sh msp430_debug_server.js 15 | -------------------------------------------------------------------------------- /Debuggers/MSP430/utils/PuTTY plink.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Debuggers/MSP430/utils/PuTTY plink.vi -------------------------------------------------------------------------------- /Debuggers/MSP430/utils/lnk_msp430f5529.cmd: -------------------------------------------------------------------------------- 1 | /* ============================================================================ */ 2 | /* Copyright (c) 2018, Texas Instruments Incorporated */ 3 | /* All rights reserved. */ 4 | /* */ 5 | /* Redistribution and use in source and binary forms, with or without */ 6 | /* modification, are permitted provided that the following conditions */ 7 | /* are met: */ 8 | /* */ 9 | /* * Redistributions of source code must retain the above copyright */ 10 | /* notice, this list of conditions and the following disclaimer. */ 11 | /* */ 12 | /* * Redistributions in binary form must reproduce the above copyright */ 13 | /* notice, this list of conditions and the following disclaimer in the */ 14 | /* documentation and/or other materials provided with the distribution. */ 15 | /* */ 16 | /* * Neither the name of Texas Instruments Incorporated nor the names of */ 17 | /* its contributors may be used to endorse or promote products derived */ 18 | /* from this software without specific prior written permission. */ 19 | /* */ 20 | /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" */ 21 | /* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, */ 22 | /* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */ 23 | /* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR */ 24 | /* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */ 25 | /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, */ 26 | /* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; */ 27 | /* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, */ 28 | /* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR */ 29 | /* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, */ 30 | /* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ 31 | /* ============================================================================ */ 32 | 33 | /******************************************************************************/ 34 | /* lnk_msp430f5529.cmd - LINKER COMMAND FILE FOR LINKING MSP430F5529 PROGRAMS */ 35 | /* */ 36 | /* Usage: lnk430 -o -m lnk.cmd */ 37 | /* cl430 -z -o -m lnk.cmd */ 38 | /* */ 39 | /*----------------------------------------------------------------------------*/ 40 | /* These linker options are for command line linking only. For IDE linking, */ 41 | /* you should set your linker options in Project Properties */ 42 | /* -c LINK USING C CONVENTIONS */ 43 | /* -stack 0x0100 SOFTWARE STACK SIZE */ 44 | /* -heap 0x0100 HEAP AREA SIZE */ 45 | /* */ 46 | /*----------------------------------------------------------------------------*/ 47 | /* Version: 1.206 */ 48 | /*----------------------------------------------------------------------------*/ 49 | 50 | /****************************************************************************/ 51 | /* Specify the system memory map */ 52 | /****************************************************************************/ 53 | 54 | MEMORY 55 | { 56 | SFR : origin = 0x0000, length = 0x0010 57 | PERIPHERALS_8BIT : origin = 0x0010, length = 0x00F0 58 | PERIPHERALS_16BIT : origin = 0x0100, length = 0x0100 59 | RAM : origin = 0x2400, length = 0x2000 60 | USBRAM : origin = 0x1C00, length = 0x0800 61 | INFOA : origin = 0x1980, length = 0x0080 62 | INFOB : origin = 0x1900, length = 0x0080 63 | INFOC : origin = 0x1880, length = 0x0080 64 | INFOD : origin = 0x1800, length = 0x0080 65 | FLASH : origin = 0x4400, length = 0xBB80 66 | FLASH2 : origin = 0x10000,length = 0x14400 67 | INT00 : origin = 0xFF80, length = 0x0002 68 | INT01 : origin = 0xFF82, length = 0x0002 69 | INT02 : origin = 0xFF84, length = 0x0002 70 | INT03 : origin = 0xFF86, length = 0x0002 71 | INT04 : origin = 0xFF88, length = 0x0002 72 | INT05 : origin = 0xFF8A, length = 0x0002 73 | INT06 : origin = 0xFF8C, length = 0x0002 74 | INT07 : origin = 0xFF8E, length = 0x0002 75 | INT08 : origin = 0xFF90, length = 0x0002 76 | INT09 : origin = 0xFF92, length = 0x0002 77 | INT10 : origin = 0xFF94, length = 0x0002 78 | INT11 : origin = 0xFF96, length = 0x0002 79 | INT12 : origin = 0xFF98, length = 0x0002 80 | INT13 : origin = 0xFF9A, length = 0x0002 81 | INT14 : origin = 0xFF9C, length = 0x0002 82 | INT15 : origin = 0xFF9E, length = 0x0002 83 | INT16 : origin = 0xFFA0, length = 0x0002 84 | INT17 : origin = 0xFFA2, length = 0x0002 85 | INT18 : origin = 0xFFA4, length = 0x0002 86 | INT19 : origin = 0xFFA6, length = 0x0002 87 | INT20 : origin = 0xFFA8, length = 0x0002 88 | INT21 : origin = 0xFFAA, length = 0x0002 89 | INT22 : origin = 0xFFAC, length = 0x0002 90 | INT23 : origin = 0xFFAE, length = 0x0002 91 | INT24 : origin = 0xFFB0, length = 0x0002 92 | INT25 : origin = 0xFFB2, length = 0x0002 93 | INT26 : origin = 0xFFB4, length = 0x0002 94 | INT27 : origin = 0xFFB6, length = 0x0002 95 | INT28 : origin = 0xFFB8, length = 0x0002 96 | INT29 : origin = 0xFFBA, length = 0x0002 97 | INT30 : origin = 0xFFBC, length = 0x0002 98 | INT31 : origin = 0xFFBE, length = 0x0002 99 | INT32 : origin = 0xFFC0, length = 0x0002 100 | INT33 : origin = 0xFFC2, length = 0x0002 101 | INT34 : origin = 0xFFC4, length = 0x0002 102 | INT35 : origin = 0xFFC6, length = 0x0002 103 | INT36 : origin = 0xFFC8, length = 0x0002 104 | INT37 : origin = 0xFFCA, length = 0x0002 105 | INT38 : origin = 0xFFCC, length = 0x0002 106 | INT39 : origin = 0xFFCE, length = 0x0002 107 | INT40 : origin = 0xFFD0, length = 0x0002 108 | INT41 : origin = 0xFFD2, length = 0x0002 109 | INT42 : origin = 0xFFD4, length = 0x0002 110 | INT43 : origin = 0xFFD6, length = 0x0002 111 | INT44 : origin = 0xFFD8, length = 0x0002 112 | INT45 : origin = 0xFFDA, length = 0x0002 113 | INT46 : origin = 0xFFDC, length = 0x0002 114 | INT47 : origin = 0xFFDE, length = 0x0002 115 | INT48 : origin = 0xFFE0, length = 0x0002 116 | INT49 : origin = 0xFFE2, length = 0x0002 117 | INT50 : origin = 0xFFE4, length = 0x0002 118 | INT51 : origin = 0xFFE6, length = 0x0002 119 | INT52 : origin = 0xFFE8, length = 0x0002 120 | INT53 : origin = 0xFFEA, length = 0x0002 121 | INT54 : origin = 0xFFEC, length = 0x0002 122 | INT55 : origin = 0xFFEE, length = 0x0002 123 | INT56 : origin = 0xFFF0, length = 0x0002 124 | INT57 : origin = 0xFFF2, length = 0x0002 125 | INT58 : origin = 0xFFF4, length = 0x0002 126 | INT59 : origin = 0xFFF6, length = 0x0002 127 | INT60 : origin = 0xFFF8, length = 0x0002 128 | INT61 : origin = 0xFFFA, length = 0x0002 129 | INT62 : origin = 0xFFFC, length = 0x0002 130 | RESET : origin = 0xFFFE, length = 0x0002 131 | } 132 | 133 | /****************************************************************************/ 134 | /* Specify the sections allocation into memory */ 135 | /****************************************************************************/ 136 | 137 | SECTIONS 138 | { 139 | .bss : {} > RAM /* Global & static vars */ 140 | .data : {} > RAM /* Global & static vars */ 141 | .TI.noinit : {} > RAM /* For #pragma noinit */ 142 | .sysmem : {} > RAM /* Dynamic memory allocation area */ 143 | .stack : {} > RAM (HIGH) /* Software system stack */ 144 | 145 | #ifndef __LARGE_CODE_MODEL__ 146 | .text : {} > FLASH /* Code */ 147 | #else 148 | .text : {} >> FLASH2 | FLASH /* Code */ 149 | #endif 150 | .text:_isr : {} > FLASH /* ISR Code space */ 151 | .cinit : {} > FLASH /* Initialization tables */ 152 | #ifndef __LARGE_DATA_MODEL__ 153 | .const : {} > FLASH /* Constant data */ 154 | #else 155 | .const : {} >> FLASH | FLASH2 /* Constant data */ 156 | #endif 157 | .cio : {} > RAM /* C I/O Buffer */ 158 | 159 | .pinit : {} > FLASH /* C++ Constructor tables */ 160 | .binit : {} > FLASH /* Boot-time Initialization tables */ 161 | .init_array : {} > FLASH /* C++ Constructor tables */ 162 | .mspabi.exidx : {} > FLASH /* C++ Constructor tables */ 163 | .mspabi.extab : {} > FLASH /* C++ Constructor tables */ 164 | #ifdef __TI_COMPILER_VERSION__ 165 | #if __TI_COMPILER_VERSION__ >= 15009000 166 | #ifndef __LARGE_CODE_MODEL__ 167 | .TI.ramfunc : {} load=FLASH, run=RAM, table(BINIT) 168 | #else 169 | .TI.ramfunc : {} load=FLASH | FLASH2, run=RAM, table(BINIT) 170 | #endif 171 | #endif 172 | #endif 173 | 174 | .infoA : {} > INFOA /* MSP430 INFO FLASH Memory segments */ 175 | .infoB : {} > INFOB 176 | .infoC : {} > INFOC 177 | .infoD : {} > INFOD 178 | 179 | /* MSP430 Interrupt vectors */ 180 | .int00 : {} > INT00 181 | .int01 : {} > INT01 182 | .int02 : {} > INT02 183 | .int03 : {} > INT03 184 | .int04 : {} > INT04 185 | .int05 : {} > INT05 186 | .int06 : {} > INT06 187 | .int07 : {} > INT07 188 | .int08 : {} > INT08 189 | .int09 : {} > INT09 190 | .int10 : {} > INT10 191 | .int11 : {} > INT11 192 | .int12 : {} > INT12 193 | .int13 : {} > INT13 194 | .int14 : {} > INT14 195 | .int15 : {} > INT15 196 | .int16 : {} > INT16 197 | .int17 : {} > INT17 198 | .int18 : {} > INT18 199 | .int19 : {} > INT19 200 | .int20 : {} > INT20 201 | .int21 : {} > INT21 202 | .int22 : {} > INT22 203 | .int23 : {} > INT23 204 | .int24 : {} > INT24 205 | .int25 : {} > INT25 206 | .int26 : {} > INT26 207 | .int27 : {} > INT27 208 | .int28 : {} > INT28 209 | .int29 : {} > INT29 210 | .int30 : {} > INT30 211 | .int31 : {} > INT31 212 | .int32 : {} > INT32 213 | .int33 : {} > INT33 214 | .int34 : {} > INT34 215 | .int35 : {} > INT35 216 | .int36 : {} > INT36 217 | .int37 : {} > INT37 218 | .int38 : {} > INT38 219 | .int39 : {} > INT39 220 | .int40 : {} > INT40 221 | RTC : { * ( .int41 ) } > INT41 type = VECT_INIT 222 | PORT2 : { * ( .int42 ) } > INT42 type = VECT_INIT 223 | TIMER2_A1 : { * ( .int43 ) } > INT43 type = VECT_INIT 224 | TIMER2_A0 : { * ( .int44 ) } > INT44 type = VECT_INIT 225 | USCI_B1 : { * ( .int45 ) } > INT45 type = VECT_INIT 226 | USCI_A1 : { * ( .int46 ) } > INT46 type = VECT_INIT 227 | PORT1 : { * ( .int47 ) } > INT47 type = VECT_INIT 228 | TIMER1_A1 : { * ( .int48 ) } > INT48 type = VECT_INIT 229 | TIMER1_A0 : { * ( .int49 ) } > INT49 type = VECT_INIT 230 | DMA : { * ( .int50 ) } > INT50 type = VECT_INIT 231 | USB_UBM : { * ( .int51 ) } > INT51 type = VECT_INIT 232 | TIMER0_A1 : { * ( .int52 ) } > INT52 type = VECT_INIT 233 | TIMER0_A0 : { * ( .int53 ) } > INT53 type = VECT_INIT 234 | ADC12 : { * ( .int54 ) } > INT54 type = VECT_INIT 235 | USCI_B0 : { * ( .int55 ) } > INT55 type = VECT_INIT 236 | USCI_A0 : { * ( .int56 ) } > INT56 type = VECT_INIT 237 | WDT : { * ( .int57 ) } > INT57 type = VECT_INIT 238 | TIMER0_B1 : { * ( .int58 ) } > INT58 type = VECT_INIT 239 | TIMER0_B0 : { * ( .int59 ) } > INT59 type = VECT_INIT 240 | COMP_B : { * ( .int60 ) } > INT60 type = VECT_INIT 241 | UNMI : { * ( .int61 ) } > INT61 type = VECT_INIT 242 | SYSNMI : { * ( .int62 ) } > INT62 type = VECT_INIT 243 | .reset : {} > RESET /* MSP430 Reset vector */ 244 | } 245 | 246 | /****************************************************************************/ 247 | /* Include peripherals memory map */ 248 | /****************************************************************************/ 249 | 250 | -l msp430f5529.cmd 251 | 252 | -------------------------------------------------------------------------------- /Debuggers/MSP430/utils/msp430-objdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Debuggers/MSP430/utils/msp430-objdump.exe -------------------------------------------------------------------------------- /Debuggers/MSP430/utils/msp430_debug_server.js: -------------------------------------------------------------------------------- 1 | // Import the TestServer code 2 | //load(java.lang.System.getenv("SCRPITING_ROOT") + "/examples/TestServer/TestServer.js"); 3 | 4 | load("MSP430DebugServer.js"); 5 | 6 | /* Details of the board configuration. */ 7 | board_configuration = { 8 | configFile: "msp430f5529.ccxml", 9 | timeout: 150000, 10 | logFile: "test_server.xml", 11 | sessions: [ 12 | { 13 | name: ".*", 14 | }, 15 | ], 16 | }; 17 | 18 | /* Start the server, for the sessions start using TCP/IP ports from 4444. */ 19 | var server = new TestServer(board_configuration, 4444); 20 | /* Add some custom command handlers, which enable customer to adapt this 21 | their specific needs. */ 22 | var commands = { 23 | "custom_cmd": customCommandHandler, 24 | "bug_cmd": bugCommandHandler, /* this is not a function and should report an error when trying to add among list of handlers */ 25 | }; 26 | server.addHandlers(commands); 27 | /* Run and wait for completion of the TestServer. */ 28 | server.run(); 29 | server.shutdown(); 30 | 31 | java.lang.System.exit(0); 32 | 33 | function customCommandHandler(session, command) { 34 | /* get the session timeout value. */ 35 | var timeoutVal = session.getScriptTimeout(); 36 | 37 | return { "status": "OK", "message": "custom_cmd: timeout value is " + timeoutVal }; 38 | } 39 | 40 | var bugCommandHandler; 41 | -------------------------------------------------------------------------------- /Debuggers/MSP430/utils/msp430f5529.ccxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Debuggers/MSP430/utils/plink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Debuggers/MSP430/utils/plink.exe -------------------------------------------------------------------------------- /Documentation/LabVIEW Universal Transcriptor.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Documentation/LabVIEW Universal Transcriptor.odt -------------------------------------------------------------------------------- /Documentation/LabVIEW Universal Transcriptor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Documentation/LabVIEW Universal Transcriptor.pdf -------------------------------------------------------------------------------- /Documentation/Quickstart Guide.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Documentation/Quickstart Guide.odt -------------------------------------------------------------------------------- /Documentation/Quickstart Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Documentation/Quickstart Guide.pdf -------------------------------------------------------------------------------- /Documentation/img/LabVIEWforKids Blink Program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Documentation/img/LabVIEWforKids Blink Program.png -------------------------------------------------------------------------------- /Documentation/img/LabVIEWforKids FFT Program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Documentation/img/LabVIEWforKids FFT Program.png -------------------------------------------------------------------------------- /Documentation/img/LabVIEWforKids Jarda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Documentation/img/LabVIEWforKids Jarda.png -------------------------------------------------------------------------------- /Examples - Transcriptor Usage/Get Cluster Datatype Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Examples - Transcriptor Usage/Get Cluster Datatype Name.vi -------------------------------------------------------------------------------- /Examples - Transcriptor Usage/Polymorphic VI Experiment 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Examples - Transcriptor Usage/Polymorphic VI Experiment 1.vi -------------------------------------------------------------------------------- /Examples - Transcriptor Usage/ShiftRegister FeedbackNode Difference.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Examples - Transcriptor Usage/ShiftRegister FeedbackNode Difference.vi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/README.md -------------------------------------------------------------------------------- /Test/Examples For Parsing/Array 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Array 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Array 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Array 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Blink 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Blink 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Blink 3 simple and correct one.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Blink 3 simple and correct one.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Blink 4 experimental.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Blink 4 experimental.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Blink 5.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Blink 5.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Blink 6 shift refs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Blink 6 shift refs.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Blink.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Blink.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/ClusterTypedef1.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/ClusterTypedef1.ctl -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Analog 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Analog 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Arduino Serial.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Arduino Serial.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Array 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Array 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Build Array 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Build Array 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Bundler 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Bundler 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Bundler 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Bundler 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Bundler Unbundler 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Bundler Unbundler 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example CaseStructure 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example CaseStructure 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example CaseStructure 3.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example CaseStructure 3.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example CaseStructure 4.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example CaseStructure 4.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example CaseStructure.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example CaseStructure.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Cluster 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Cluster 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Cluster 4.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Cluster 4.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Cluster Bundler and Class.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Cluster Bundler and Class.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Cluster Bundler and Shift Register.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Cluster Bundler and Shift Register.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Diagram Constants.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Diagram Constants.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Feedbacknode 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Feedbacknode 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example FlatSequence 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example FlatSequence 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example FroLoop Tunnel 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example FroLoop Tunnel 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Get Array Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Get Array Pointer.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Global Variable.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Global Variable.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Global Variables.lvlib: -------------------------------------------------------------------------------- 1 |  2 | 3 | '!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!(]!!!*Q(C=\>7R=2MR%!81N=?"5Q</07RB7W!,<'&<9+K1,7Q,<)%N<!NMA3X)DW?-RJ(JQ"I\%%Z,(@`BA#==ZB3RN;]28_,V7@PWW`:R`>HV*SU_WE@\N_XF[3:^^TX\+2YP)D7K6;G-RV3P)R`ZS%=_]J'XP/5N<XH,7V\SEJ?]Z#5P?=J4HP+5JTTFWS%0?=B$DD1G(R/.1==!IT.+D)`B':\B'2Z@9XC':XC':XBUC?%:HO%:HO&R7QT0]!T0]!S0I4<*<)?=:XA-(]X40-X40-VDSGC?"GC4N9(<)"D2,L;4ZGG?ZH%;T>-]T>-]T?.S.%`T.%`T.)^<NF8J4@-YZ$S'C?)JHO)JHO)R>"20]220]230[;*YCK=ASI2F=)1I.Z5/Z5PR&)^@54T&5TT&5TQO<5_INJ6Z;"[(H#>ZEC>ZEC>Z$"(*ETT*ETT*9^B)HO2*HO2*(F.&]C20]C2)GN4UE1:,.[:/+5A?0^NOS?UJ^3<*\9B9GT@7JISVW7*NIFC<)^:$D`5Q9TWE7)M@;V&D,6;M29DVR]6#R],%GC47T9_/=@>Z5V>V57>V5E>V5(OV?^T[FTP?\`?YX7ZRP6\D=LH%_8S/U_E5R_-R$I>$\0@\W/VW<[_"\Y[X&],0^^+,]T_J>`J@_B_]'_.T`$KO.@I"XC-_N!!!!!! 4 | 402685952 5 | 1.0.0.0 6 | 7 | Network 8 | False 9 | False 10 | 0 11 | Network 12 | '!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!J*1!!!"A!A!!!!!!"!!V!#A!'2'^V9GRF!!!"!!!!!!!!!!!!!!!!!!!!!!!! 13 | 14 | 15 | Global 16 | False 17 | False 18 | False 19 | 0 20 | Global 21 | '!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!"%1!!!!"A!A!!!!!!#!""!-0````]'5X2S;7ZH!!!=1%!!!@````]!!!^"=H*B?3"P:C"4>(*J<G=!!1!"!!!!!!!!!!!!!!!! 22 | 23 | 24 | Global 25 | False 26 | False 27 | False 28 | 0 29 | Global 30 | '!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!!U-!!!!"A!A!!!!!!"!!R!5Q>798*J97ZU!!%!!"A!A!!!!!!"!!1!!!!"!!!!!!!!!!!!!!!!!!! 31 | 32 | 33 | -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example IRQ 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example IRQ 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Interruption 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Interruption 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Math 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Math 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Math 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Math 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Math 3.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Math 3.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example NamedBundler 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example NamedBundler 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example NamedBundler 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example NamedBundler 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Polymorphic 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Polymorphic 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Property Node 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Property Node 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Serial 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Serial 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Serial 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Serial 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Serial 3.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Serial 3.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Shift Register Loop 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Shift Register Loop 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example String Functions 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example String Functions 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example String Functions 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example String Functions 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example System Functions.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example System Functions.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Test 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Test 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Test 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Test 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Test 3.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Test 3.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Test 4.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Test 4.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example To Variant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example To Variant.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Translator Vis/Example Vector of Floats.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Translator Vis/Example Vector of Floats.ctl -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Translator Vis/Toggle LED.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Translator Vis/Toggle LED.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Translator Vis/Translator.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Translator Vis/Translator.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Type Cast 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Type Cast 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Typecast 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Typecast 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Unbundler 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Unbundler 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example Variant Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example Variant Info.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example While Loop Some Operations 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example While Loop Some Operations 1.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example While Loop Some Operations 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example While Loop Some Operations 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example WhileLoop ForLoop CaseStructure 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example WhileLoop ForLoop CaseStructure 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example WhileLoop ForLoop CaseStructure 3.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example WhileLoop ForLoop CaseStructure 3.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example WhileLoop ForLoop CaseStructure.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example WhileLoop ForLoop CaseStructure.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Example WhileLoop ForLoop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Example WhileLoop ForLoop.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Increment Last Nested Level Item.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Increment Last Nested Level Item.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Some VI 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Some VI 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/Some VI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/Some VI.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/UserDefined StructType 2.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/UserDefined StructType 2.ctl -------------------------------------------------------------------------------- /Test/Examples For Parsing/UserDefined StructType.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/UserDefined StructType.ctl -------------------------------------------------------------------------------- /Test/Examples For Parsing/just VIs no Translator/Polymorphic Add 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/just VIs no Translator/Polymorphic Add 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/just VIs no Translator/SD open.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/just VIs no Translator/SD open.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/just VIs no Translator/Some String Inside 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/just VIs no Translator/Some String Inside 2.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/just VIs no Translator/Some String Inside.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/just VIs no Translator/Some String Inside.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/just VIs no Translator/Some VI 3.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/just VIs no Translator/Some VI 3.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/just VIs no Translator/Some VI 4.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/just VIs no Translator/Some VI 4.vi -------------------------------------------------------------------------------- /Test/Examples For Parsing/just VIs no Translator/Some empty VI 4.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Examples For Parsing/just VIs no Translator/Some empty VI 4.vi -------------------------------------------------------------------------------- /Test/Test Example Cluster 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Example Cluster 1.vi -------------------------------------------------------------------------------- /Test/Test Example Password 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Example Password 1.vi -------------------------------------------------------------------------------- /Test/Test Example Polymorphic 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Example Polymorphic 1.vi -------------------------------------------------------------------------------- /Test/Test Example Variant Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Example Variant Info.vi -------------------------------------------------------------------------------- /Test/Test ForLoop Tunnels.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test ForLoop Tunnels.vi -------------------------------------------------------------------------------- /Test/Test Get All Elements Some Info 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Get All Elements Some Info 1.vi -------------------------------------------------------------------------------- /Test/Test Get Controls Indicators.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Get Controls Indicators.vi -------------------------------------------------------------------------------- /Test/Test Get Elements and Subelements.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Get Elements and Subelements.vi -------------------------------------------------------------------------------- /Test/Test Get FeedbackNode Loop Init Terminal.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Get FeedbackNode Loop Init Terminal.vi -------------------------------------------------------------------------------- /Test/Test Get VIs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Get VIs.vi -------------------------------------------------------------------------------- /Test/Test Get Wire Data Type.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Get Wire Data Type.vi -------------------------------------------------------------------------------- /Test/Test Parsing Simple Example CaseStructure 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Parsing Simple Example CaseStructure 1.vi -------------------------------------------------------------------------------- /Test/Test Parsing Simple Example Test 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Parsing Simple Example Test 1.vi -------------------------------------------------------------------------------- /Test/Test Parsing Simple Example Whlie Loop Some Operations 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Parsing Simple Example Whlie Loop Some Operations 1.vi -------------------------------------------------------------------------------- /Test/Test Parsing Simple Example Whlie Loop Some Operations 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Parsing Simple Example Whlie Loop Some Operations 2.vi -------------------------------------------------------------------------------- /Test/Test Parsing Simple Example WhlieLoop ForLoop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Parsing Simple Example WhlieLoop ForLoop.vi -------------------------------------------------------------------------------- /Test/Test Shift Registers Loop 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Shift Registers Loop 1.vi -------------------------------------------------------------------------------- /Test/Test SubVI to Code 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test SubVI to Code 1.vi -------------------------------------------------------------------------------- /Test/Test Transcriptor LabVIEW to C code 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Transcriptor LabVIEW to C code 1.vi -------------------------------------------------------------------------------- /Test/Test Transcriptor LabVIEW to C code 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test Transcriptor LabVIEW to C code 2.vi -------------------------------------------------------------------------------- /Test/Test WhileLoop Iterator Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Test/Test WhileLoop Iterator Info.vi -------------------------------------------------------------------------------- /Transcriptors/1/Transcriptor LabVIEW to C code Engine 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/1/Transcriptor LabVIEW to C code Engine 1.vi -------------------------------------------------------------------------------- /Transcriptors/2/Examples - Arduino/Example Arduino Blink LED using Extended pinMode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Examples - Arduino/Example Arduino Blink LED using Extended pinMode.vi -------------------------------------------------------------------------------- /Transcriptors/2/Examples - Arduino/Example Arduino Blink LED.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Examples - Arduino/Example Arduino Blink LED.vi -------------------------------------------------------------------------------- /Transcriptors/2/Examples - Arduino/Example Arduino Serial 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Examples - Arduino/Example Arduino Serial 1.vi -------------------------------------------------------------------------------- /Transcriptors/2/Examples - Arduino/Example_Arduino_Blink_LED/Example_Arduino_Blink_LED.ino: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | 4 | void Example_Arduino_Blink_LED(){ 5 | bool wireUID_424_ = true; 6 | bool wireUID_740_ = true; 7 | long wireUID_705_ = 3; 8 | long wireUID_652_ = 2; 9 | pinMode(wireUID_652_,wireUID_740_?OUTPUT:INPUT); 10 | pinMode(wireUID_705_,wireUID_740_?OUTPUT:INPUT); 11 | /***** BEGIN WhileLoop ********/ 12 | vector feedbackNode_615; 13 | bool feedbackNodeInitBool_615 = true; 14 | 15 | bool wireUID_430_ = false; //LoopEndRef. 16 | int iteratorUID_289 = 0; //loop iterator 17 | do{ 18 | //shift register init and get front value 19 | bool wireUID_317_; 20 | bool wireUID_642_; 21 | long wireUID_1157_ = 2; 22 | long wireUID_921_ = 3; 23 | long wireUID_426_ = 220; 24 | if (feedbackNodeInitBool_615){ 25 | feedbackNode_615.push_back(wireUID_424_); 26 | feedbackNodeInitBool_615 = false; 27 | } 28 | wireUID_642_ = feedbackNode_615.front(); feedbackNode_615.erase(feedbackNode_615.begin()); 29 | delay(wireUID_426_); 30 | wireUID_317_ = !wireUID_642_; 31 | digitalWrite(wireUID_921_,wireUID_642_?HIGH:LOW); 32 | /* Don't know how to translate class "Generic ->GObject ->Node": "" */ 33 | digitalWrite(wireUID_1157_,wireUID_317_?HIGH:LOW); 34 | feedbackNode_615.push_back(wireUID_317_); 35 | //C code 36 | 37 | //output assgn. 38 | iteratorUID_289++; //iterator increment 39 | }while(!wireUID_430_); //negation because in LabVIEW it is when stop (oposite) 40 | /****** END WhileLoop */ 41 | 42 | } 43 | 44 | void setup(){} 45 | void loop(){ 46 | Example_Arduino_Blink_LED(); 47 | } 48 | 49 | -------------------------------------------------------------------------------- /Transcriptors/2/Examples - Arduino/Example_Arduino_Serial_1/Example_Arduino_Serial_1.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | using namespace std; 5 | typedef struct LVcluster_String_String{ 6 | String LVClusterItem_0; 7 | String LVClusterItem_1; 8 | }; 9 | /* 10 | typedef struct LVcluster_String_String{ 11 | String LVClusterItem_0; 12 | String LVClusterItem_1; 13 | }; 14 | typedef struct LVcluster_String_String{ 15 | String LVClusterItem_0; 16 | String LVClusterItem_1; 17 | }; 18 | */ 19 | 20 | vector shiftRegister_898; 21 | bool shiftRegisterInitBool_898 = true; 22 | 23 | 24 | void Example_Arduino_Serial_1(){ 25 | long wireUID_696_ = 9600; 26 | long wireUID_892_ = 0; 27 | vector wireUID_845_; 28 | LVcluster_String_String wireUID_809_ = {"three","plum"}; 29 | LVcluster_String_String wireUID_803_ = {"two","orange"}; 30 | LVcluster_String_String wireUID_792_ = {"one","apple"}; 31 | wireUID_845_.push_back(wireUID_792_); 32 | wireUID_845_.push_back(wireUID_803_); 33 | wireUID_845_.push_back(wireUID_809_); 34 | Serial.begin(wireUID_696_); 35 | /***** BEGIN WhileLoop ********/ 36 | bool wireUID_2067_ = false; //LoopEndRef. 37 | int iteratorUID_180 = 0; //loop iterator 38 | do{ 39 | if (shiftRegisterInitBool_898){ 40 | shiftRegister_898.push_back(wireUID_892_); 41 | shiftRegisterInitBool_898 = false; 42 | } //shift register init and get front value 43 | String wireUID_837_; 44 | String wireUID_1778_; 45 | String wireUID_1696_; 46 | String wireUID_821_ = " - "; 47 | long wireUID_383_ = 2000; 48 | LVcluster_String_String wireUID_1674_; 49 | vector wireUID_1363_ = wireUID_845_; 50 | long wireUID_1081_; 51 | long wireUID_1019_ = shiftRegister_898.front(); shiftRegister_898.erase(shiftRegister_898.begin());; 52 | long wireUID_1048_ = 3; 53 | bool wireUID_1007_; 54 | long wireUID_936_; 55 | wireUID_1007_ = wireUID_1048_ == wireUID_1019_; 56 | /***** BEGIN CaseStructure ********/ 57 | switch(wireUID_1007_){ 58 | case false: 59 | { 60 | long wireUID_1110_ = wireUID_1019_; 61 | /* C code */ 62 | wireUID_1081_ = wireUID_1110_; /* output assgn. */ 63 | } 64 | break; 65 | case true: 66 | { 67 | long wireUID_1133_ = 0; 68 | /* C code */ 69 | wireUID_1081_ = wireUID_1133_; /* output assgn. */ 70 | } 71 | break; 72 | } 73 | /****** END CaseStructure ********/ 74 | wireUID_936_ = wireUID_1081_ + 1; 75 | wireUID_1674_ = wireUID_1363_[wireUID_1081_]; 76 | /***** BEGIN Unbundler *****/ 77 | wireUID_1696_ = (*(String*) (((void*) &wireUID_1674_) )); 78 | wireUID_1778_ = (*(String*) (((void*) &wireUID_1674_) + sizeof(String))); 79 | /***** END Unbundler *****/ 80 | wireUID_837_ = wireUID_1696_ + wireUID_821_ + wireUID_1778_; 81 | Serial.println(wireUID_837_); 82 | delay(wireUID_383_); 83 | //C code 84 | 85 | shiftRegister_898.push_back(wireUID_936_); //output assgn. 86 | iteratorUID_180++; //iterator increment 87 | }while(!wireUID_2067_); //negation because in LabVIEW it is when stop (oposite) 88 | /****** END WhileLoop */ 89 | 90 | } 91 | 92 | void setup(){} 93 | void loop(){ 94 | Example_Arduino_Serial_1(); 95 | } 96 | 97 | -------------------------------------------------------------------------------- /Transcriptors/2/Examples - Arduino/Example_MSP430_Blink/blink.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | using namespace std; 5 | 6 | /** 7 | * THIS FILE MUST HAVE EXTENSION .CPP TO BE COMPILED AS C++ NOT C! 8 | * blink.cpp 9 | */ 10 | 11 | vector feedbackNode_615; 12 | bool feedbackNodeInitBool_615 = true; 13 | 14 | int someExampleFunction(int a){ 15 | return a+ 42; 16 | } 17 | 18 | void main(void){ 19 | WDTCTL = WDTPW | WDTHOLD; // stop watchdog timer 20 | P1DIR |= 0x01; // configure P1.0 as output 21 | 22 | bool wireUID_424_ = true; 23 | bool wireUID_740_ = true; 24 | /***** BEGIN WhileLoop ********/ 25 | vector feedbackNode_615; 26 | bool feedbackNodeInitBool_615 = true; 27 | 28 | bool wireUID_430_ = false; //LoopEndRef. 29 | int iteratorUID_289 = 0; //loop iterator 30 | do{ 31 | //shift register init and get front value 32 | bool wireUID_317_; 33 | bool wireUID_642_; 34 | long wireUID_1157_ = 2; 35 | long wireUID_921_ = 3; 36 | long wireUID_426_ = 220; 37 | if (feedbackNodeInitBool_615){ 38 | feedbackNode_615.push_back(wireUID_424_); 39 | feedbackNodeInitBool_615 = false; 40 | } 41 | wireUID_642_ = feedbackNode_615.front(); feedbackNode_615.erase(feedbackNode_615.begin()); 42 | wireUID_317_ = !wireUID_642_; 43 | 44 | for(int i = 0; i < 3e3; i++); //barbaristic delay :D 45 | P1OUT ^= 0x01; // toggle P1.0 46 | 47 | 48 | int a = someExampleFunction(15); 49 | feedbackNode_615.push_back(wireUID_317_); 50 | //C code 51 | 52 | //output assgn. 53 | iteratorUID_289++; //iterator increment 54 | }while(!wireUID_430_); //negation because in LabVIEW it is when stop (oposite) 55 | /****** END WhileLoop */ 56 | 57 | } 58 | -------------------------------------------------------------------------------- /Transcriptors/2/Examples - Arduino/Example_MSP430_Blink/blink.d_raw: -------------------------------------------------------------------------------- 1 | blink.obj: C:\Users\Simon Gurfunkel\Documents\LabVIEW_projects\LabVIEW-Universal-Transcriptor\Transcriptors\2\Examples - Arduino\Example_MSP430_Blink\blink.cpp 2 | blink.obj: C:\ti\ccsv8\ccs_base\msp430\include\msp430.h 3 | blink.obj: C:\ti\ccsv8\ccs_base\msp430\include\msp430f5529.h 4 | blink.obj: C:\ti\ccsv8\ccs_base\msp430\include\in430.h 5 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\intrinsics.h 6 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\intrinsics_legacy_undefs.h 7 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\vector 8 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__config 9 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__config_site 10 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__libcxx_extra.h 11 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\iosfwd 12 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\wchar.h 13 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\wchar.h 14 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\sys/cdefs.h 15 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\sys/_null.h 16 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\sys/_types.h 17 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\machine/_types.h 18 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\machine/_limits.h 19 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\xlocale/_wchar.h 20 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__bit_reference 21 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\algorithm 22 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\initializer_list 23 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\cstddef 24 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\stddef.h 25 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__nullptr 26 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\type_traits 27 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\cstring 28 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\string.h 29 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\string.h 30 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\_ti_config.h 31 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\linkage.h 32 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\utility 33 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__tuple 34 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\limits 35 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\support/ti/__limit_defs.h 36 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\float.h 37 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\float.h 38 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__undef_macros 39 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\cstdint 40 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\stdint.h 41 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\stdint.h 42 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\sys/stdint.h 43 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\machine/_stdint.h 44 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\sys/_stdint.h 45 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__debug 46 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\memory 47 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\typeinfo 48 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\exception 49 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\cstdlib 50 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\stdlib.h 51 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\stdlib.h 52 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\new 53 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\iterator 54 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__functional_base 55 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\tuple 56 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\stdexcept 57 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\cassert 58 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\assert.h 59 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__undef_macros 60 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\support/ti/support.h 61 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__undef_macros 62 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__undef_macros 63 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\climits 64 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\limits.h 65 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\limits.h 66 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__split_buffer 67 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__undef_macros 68 | blink.obj: C:\ti\ccsv8\tools\compiler\ti-cgt-msp430_18.1.3.LTS\include\libcxx\__undef_macros 69 | -------------------------------------------------------------------------------- /Transcriptors/2/Examples - Arduino/Example_MSP430_Blink/blink.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | using namespace std; 5 | 6 | /** 7 | * THIS FILE MUST HAVE EXTENSION .CPP TO BE COMPILED AS C++ NOT C! 8 | * blink.cpp 9 | */ 10 | 11 | vector feedbackNode_615; 12 | bool feedbackNodeInitBool_615 = true; 13 | 14 | int someExampleFunction(int a){ 15 | return a+ 42; 16 | } 17 | 18 | void main(void){ 19 | WDTCTL = WDTPW | WDTHOLD; // stop watchdog timer 20 | P1DIR |= 0x01; // configure P1.0 as output 21 | 22 | bool wireUID_424_ = true; 23 | bool wireUID_740_ = true; 24 | /***** BEGIN WhileLoop ********/ 25 | vector feedbackNode_615; 26 | bool feedbackNodeInitBool_615 = true; 27 | 28 | bool wireUID_430_ = false; //LoopEndRef. 29 | int iteratorUID_289 = 0; //loop iterator 30 | do{ 31 | //shift register init and get front value 32 | bool wireUID_317_; 33 | bool wireUID_642_; 34 | long wireUID_1157_ = 2; 35 | long wireUID_921_ = 3; 36 | long wireUID_426_ = 220; 37 | if (feedbackNodeInitBool_615){ 38 | feedbackNode_615.push_back(wireUID_424_); 39 | feedbackNodeInitBool_615 = false; 40 | } 41 | wireUID_642_ = feedbackNode_615.front(); feedbackNode_615.erase(feedbackNode_615.begin()); 42 | wireUID_317_ = !wireUID_642_; 43 | 44 | for(int i = 0; i < 3e3; i++); //barbaristic delay :D 45 | P1OUT ^= 0x01; // toggle P1.0 46 | 47 | 48 | int a = someExampleFunction(15); 49 | feedbackNode_615.push_back(wireUID_317_); 50 | //C code 51 | 52 | //output assgn. 53 | iteratorUID_289++; //iterator increment 54 | }while(!wireUID_430_); //negation because in LabVIEW it is when stop (oposite) 55 | /****** END WhileLoop */ 56 | 57 | } 58 | -------------------------------------------------------------------------------- /Transcriptors/2/Examples - Arduino/Example_MSP430_Blink/blink.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Examples - Arduino/Example_MSP430_Blink/blink.obj -------------------------------------------------------------------------------- /Transcriptors/2/Examples - Arduino/Example_MSP430_Blink/blink.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Examples - Arduino/Example_MSP430_Blink/blink.out -------------------------------------------------------------------------------- /Transcriptors/2/Examples - Arduino/Transcript Example Arduino Blink LED.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Examples - Arduino/Transcript Example Arduino Blink LED.vi -------------------------------------------------------------------------------- /Transcriptors/2/Examples - Arduino/Transcript Example Arduino Serial 1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Examples - Arduino/Transcript Example Arduino Serial 1.vi -------------------------------------------------------------------------------- /Transcriptors/2/LabVIEW Universal Transcriptor Tools/LabVIEW VI to Flatten XML.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/LabVIEW Universal Transcriptor Tools/LabVIEW VI to Flatten XML.vi -------------------------------------------------------------------------------- /Transcriptors/2/LabVIEW Universal Transcriptor Tools/LabVIEW to Arduino code with uploader.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/LabVIEW Universal Transcriptor Tools/LabVIEW to Arduino code with uploader.vi -------------------------------------------------------------------------------- /Transcriptors/2/LabVIEW Universal Transcriptor Tools/LabVIEW to Arduino code.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/LabVIEW Universal Transcriptor Tools/LabVIEW to Arduino code.vi -------------------------------------------------------------------------------- /Transcriptors/2/Simple Post Build Generate Arduino Code Template for User Projects.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Simple Post Build Generate Arduino Code Template for User Projects.vi -------------------------------------------------------------------------------- /Transcriptors/2/Transcriptor LabVIEW for Arduino.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Transcriptor LabVIEW for Arduino.vi -------------------------------------------------------------------------------- /Transcriptors/2/Transcriptor LabVIEW to C code Arduino Frontend.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Transcriptor LabVIEW to C code Arduino Frontend.vi -------------------------------------------------------------------------------- /Transcriptors/2/Transcriptor LabVIEW to C code Arduino GUI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Transcriptor LabVIEW to C code Arduino GUI.vi -------------------------------------------------------------------------------- /Transcriptors/2/Transcriptor LabVIEW to C code Composer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Transcriptor LabVIEW to C code Composer.vi -------------------------------------------------------------------------------- /Transcriptors/2/Transcriptor LabVIEW to C code Engine 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Transcriptor LabVIEW to C code Engine 2.vi -------------------------------------------------------------------------------- /Transcriptors/2/Transcriptor LabVIEW to C code Step 0 Create Definitions.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Transcriptor LabVIEW to C code Step 0 Create Definitions.vi -------------------------------------------------------------------------------- /Transcriptors/2/Transcriptor LabVIEW to C code Step 1 and 2 Wires Declarations and Assignements.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Transcriptor LabVIEW to C code Step 1 and 2 Wires Declarations and Assignements.vi -------------------------------------------------------------------------------- /Transcriptors/2/Transcriptor LabVIEW to C code Step 3 Translate Elements.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Transcriptor LabVIEW to C code Step 3 Translate Elements.vi -------------------------------------------------------------------------------- /Transcriptors/2/Transcriptor LabVIEW to C code Step 4 Assign Output Values.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Transcriptor LabVIEW to C code Step 4 Assign Output Values.vi -------------------------------------------------------------------------------- /Transcriptors/2/Transcriptor LabVIEW to C code Translator Native Functions.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/2/Transcriptor LabVIEW to C code Translator Native Functions.vi -------------------------------------------------------------------------------- /Transcriptors/3/LabVIEW Universal Transcriptor Tools/LabVIEW to Python code.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/3/LabVIEW Universal Transcriptor Tools/LabVIEW to Python code.vi -------------------------------------------------------------------------------- /Transcriptors/3/Transcriptor LabVIEW to Python code Engine 3.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/3/Transcriptor LabVIEW to Python code Engine 3.vi -------------------------------------------------------------------------------- /Transcriptors/3/Transcriptor LabVIEW to Python code Step 3 Translate Elements.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/3/Transcriptor LabVIEW to Python code Step 3 Translate Elements.vi -------------------------------------------------------------------------------- /Transcriptors/4/LabVIEW Universal Transcriptor Tools/LabVIEW to VHDL code.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/4/LabVIEW Universal Transcriptor Tools/LabVIEW to VHDL code.vi -------------------------------------------------------------------------------- /Transcriptors/4/Transcriptor LabVIEW to VHDL code Engine 4.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/4/Transcriptor LabVIEW to VHDL code Engine 4.vi -------------------------------------------------------------------------------- /Transcriptors/4/Transcriptor LabVIEW to VHDL code Step 0 Create Definitions.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/4/Transcriptor LabVIEW to VHDL code Step 0 Create Definitions.vi -------------------------------------------------------------------------------- /Transcriptors/4/Transcriptor LabVIEW to VHDL code Step 1 and 2 Wires Declarations and Assignements.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/4/Transcriptor LabVIEW to VHDL code Step 1 and 2 Wires Declarations and Assignements.vi -------------------------------------------------------------------------------- /Transcriptors/4/Transcriptor LabVIEW to VHDL code Step 3 Translate Elements.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/4/Transcriptor LabVIEW to VHDL code Step 3 Translate Elements.vi -------------------------------------------------------------------------------- /Transcriptors/4/Transcriptor LabVIEW to VHDL code Step 4 Assign Output Values.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/4/Transcriptor LabVIEW to VHDL code Step 4 Assign Output Values.vi -------------------------------------------------------------------------------- /Transcriptors/4/Transcriptor LabVIEW to VHDL code Translator Native Functions.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/4/Transcriptor LabVIEW to VHDL code Translator Native Functions.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Array Push Element.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Array Push Element.vi -------------------------------------------------------------------------------- /Transcriptors/System API/ArrayPointerFunction/Array Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/ArrayPointerFunction/Array Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/ArrayPointerFunction/ArrayBoolean Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/ArrayPointerFunction/ArrayBoolean Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/ArrayPointerFunction/ArrayChar Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/ArrayPointerFunction/ArrayChar Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/ArrayPointerFunction/ArrayDouble Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/ArrayPointerFunction/ArrayDouble Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/ArrayPointerFunction/ArrayFloat Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/ArrayPointerFunction/ArrayFloat Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/ArrayPointerFunction/ArrayInt Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/ArrayPointerFunction/ArrayInt Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/ArrayPointerFunction/ArrayLong Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/ArrayPointerFunction/ArrayLong Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/ArrayPointerFunction/ArrayString Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/ArrayPointerFunction/ArrayString Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/ArrayPointerFunction/ArrayUnsignedChar Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/ArrayPointerFunction/ArrayUnsignedChar Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/ArrayPointerFunction/ArrayUnsignedInt Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/ArrayPointerFunction/ArrayUnsignedInt Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/ArrayPointerFunction/ArrayUnsignedLong Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/ArrayPointerFunction/ArrayUnsignedLong Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/ArrayPointerFunction/ArrayWord Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/ArrayPointerFunction/ArrayWord Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/ArrayPointerFunction/Translator Array Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/ArrayPointerFunction/Translator Array Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/BooleanPointer.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/BooleanPointer.ctl -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/BooleanPointerClass/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/BooleanPointerClass/Read datatype.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/CharPointer.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/CharPointer.ctl -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/CharPointerClass/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/CharPointerClass/Read datatype.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/DoublePointer.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/DoublePointer.ctl -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/DoublePointerClass/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/DoublePointerClass/Read datatype.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/FloatPointer.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/FloatPointer.ctl -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/FloatPointerClass/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/FloatPointerClass/Read datatype.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/IntPointer.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/IntPointer.ctl -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/IntPointerClass/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/IntPointerClass/Read datatype.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/LongPointer.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/LongPointer.ctl -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/LongPointerClass/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/LongPointerClass/Read datatype.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/StringPointer.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/StringPointer.ctl -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/StringPointerClass/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/StringPointerClass/Read datatype.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/UnsignedCharPointer.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/UnsignedCharPointer.ctl -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/UnsignedCharPointerClass/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/UnsignedCharPointerClass/Read datatype.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/UnsignedIntPointer.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/UnsignedIntPointer.ctl -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/UnsignedIntPointerClass/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/UnsignedIntPointerClass/Read datatype.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/UnsignedLongPointer.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/UnsignedLongPointer.ctl -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/UnsignedLongPointerClass/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/UnsignedLongPointerClass/Read datatype.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/VoidPointer.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/VoidPointer.ctl -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/VoidPointerClass/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/VoidPointerClass/Read datatype.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/WordPointer.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/WordPointer.ctl -------------------------------------------------------------------------------- /Transcriptors/System API/Basic Datatypes Pointers/WordPointerClass/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Basic Datatypes Pointers/WordPointerClass/Read datatype.vi -------------------------------------------------------------------------------- /Transcriptors/System API/BasicDatatypesPointerFunction/BasicDatatype Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/BasicDatatypesPointerFunction/BasicDatatype Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/BasicDatatypesPointerFunction/Bool Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/BasicDatatypesPointerFunction/Bool Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/BasicDatatypesPointerFunction/Char Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/BasicDatatypesPointerFunction/Char Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/BasicDatatypesPointerFunction/Double Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/BasicDatatypesPointerFunction/Double Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/BasicDatatypesPointerFunction/Float Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/BasicDatatypesPointerFunction/Float Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/BasicDatatypesPointerFunction/Int Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/BasicDatatypesPointerFunction/Int Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/BasicDatatypesPointerFunction/Long Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/BasicDatatypesPointerFunction/Long Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/BasicDatatypesPointerFunction/Translator BasicDatatype Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/BasicDatatypesPointerFunction/Translator BasicDatatype Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/BasicDatatypesPointerFunction/Unsigned Int Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/BasicDatatypesPointerFunction/Unsigned Int Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/BasicDatatypesPointerFunction/Unsigned Long Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/BasicDatatypesPointerFunction/Unsigned Long Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/BasicDatatypesPointerFunction/UnsignedChar Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/BasicDatatypesPointerFunction/UnsignedChar Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/BasicDatatypesPointerFunction/Word Get Pointer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/BasicDatatypesPointerFunction/Word Get Pointer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial available.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial available.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial begin.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial begin.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial end.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial end.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial flush.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial flush.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial print frac number.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial print frac number.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial print integer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial print integer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial print string.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial print string.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial print.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial print.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial println frac number.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial println frac number.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial println integer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial println integer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial println string.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial println string.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial println.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial println.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial read.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial read.vi -------------------------------------------------------------------------------- /Transcriptors/System API/Serial write.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Serial write.vi -------------------------------------------------------------------------------- /Transcriptors/System API/System Serial Library Variables/Serial Buffer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/System Serial Library Variables/Serial Buffer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/System Serial Library Variables/Serial Read Buffer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/System Serial Library Variables/Serial Read Buffer.vi -------------------------------------------------------------------------------- /Transcriptors/System API/System Serial Library Variables/Serial Simulated Status.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/System Serial Library Variables/Serial Simulated Status.vi -------------------------------------------------------------------------------- /Transcriptors/System API/System Serial Library Variables/System Serial Library Variables.lvlib: -------------------------------------------------------------------------------- 1 |  2 | 3 | '!#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!(]!!!*Q(C=\>8"=>MQ%!8143;(8.6"2CVM#WJ",7Q,SN&(N<!NK!7VM#WI"<8A0$%94UZ2$P%E"Y.?G@I%A7=11U>M\7P%FXB^VL\`NHV=@X<^39O0^N(_<8NZOEH@@=^_CM?,3)VK63LD->8LS%=_]J'0@/1N<XH,7^\SFJ?]Z#5P?=F,HP+5JTTF+5`Z>MB$(P+1)YX*RU2DU$(![)Q3YW.YBG>YBM@8'*\B':\B'2Z>9HC':XC':XD=&M-T0--T0-.DK%USWS(H'2\$2`-U4`-U4`/9-JKH!>JE<?!W#%;UC_WE?:KH?:R']T20]T20]\A=T>-]T>-]T?/7<66[UTQ//9^BIHC+JXC+JXA-(=640-640-6DOCC?YCG)-G%:(#(+4;6$_6)]R?.8&%`R&%`R&)^,WR/K<75?GM=BZUG?Z%G?Z%E?1U4S*%`S*%`S'$;3*XG3*XG3RV320-G40!G3*D6^J-(3D;F4#J,(T\:<=HN+P5FS/S,7ZIWV+7.NNFC<+.<GC0819TX-7!]JVO,(7N29CR6L%7,^=<(1M4#R*IFV][.DX(X?V&6>V&G>V&%>V&\N(L@_Z9\X_TVONVN=L^?Y8#ZR0J`D>$L&]8C-Q_%1_`U_>LP>WWPAG_0NB@$TP@4C`%`KH@[8`A@PRPA=PYZLD8Y!#/7SO!!!!!! 4 | 402685952 5 | 1.0.0.0 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Transcriptors/System API/Translator System API.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/Translator System API.vi -------------------------------------------------------------------------------- /Transcriptors/System API/analogRead.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/analogRead.vi -------------------------------------------------------------------------------- /Transcriptors/System API/analogReference.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/analogReference.vi -------------------------------------------------------------------------------- /Transcriptors/System API/analogWrite.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/analogWrite.vi -------------------------------------------------------------------------------- /Transcriptors/System API/attachInterrupt.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/attachInterrupt.vi -------------------------------------------------------------------------------- /Transcriptors/System API/delay.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/delay.vi -------------------------------------------------------------------------------- /Transcriptors/System API/delayMicroseconds.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/delayMicroseconds.vi -------------------------------------------------------------------------------- /Transcriptors/System API/detachInterrupt.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/detachInterrupt.vi -------------------------------------------------------------------------------- /Transcriptors/System API/digitalRead.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/digitalRead.vi -------------------------------------------------------------------------------- /Transcriptors/System API/digitalWrite.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/digitalWrite.vi -------------------------------------------------------------------------------- /Transcriptors/System API/interrupts.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/interrupts.vi -------------------------------------------------------------------------------- /Transcriptors/System API/micros.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/micros.vi -------------------------------------------------------------------------------- /Transcriptors/System API/millis.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/millis.vi -------------------------------------------------------------------------------- /Transcriptors/System API/nointerrupts.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/nointerrupts.vi -------------------------------------------------------------------------------- /Transcriptors/System API/pinMode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/pinMode.vi -------------------------------------------------------------------------------- /Transcriptors/System API/pinModeExtended.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/System API/pinModeExtended.vi -------------------------------------------------------------------------------- /Transcriptors/utils/Energia Create Build Cpp Command 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/utils/Energia Create Build Cpp Command 2.vi -------------------------------------------------------------------------------- /Transcriptors/utils/Energia Create Build Cpp Command.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/utils/Energia Create Build Cpp Command.vi -------------------------------------------------------------------------------- /Transcriptors/utils/Get Breakpoints Lines Numbers.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/Transcriptors/utils/Get Breakpoints Lines Numbers.vi -------------------------------------------------------------------------------- /UniversalTranscriptor.aliases: -------------------------------------------------------------------------------- 1 | [My Computer] 2 | My Computer = "10.132.141.239" 3 | 4 | -------------------------------------------------------------------------------- /UniversalTranscriptor.lvlps: -------------------------------------------------------------------------------- 1 | [ProjectWindow_Data] 2 | ProjectExplorer.ClassicPosition[String] = "74,-1862,1006,-1297" 3 | 4 | [AB_Cache_{76F9559B-3366-4B31-AB86-10C5933A4080}] 5 | Cache_Path[Path] Line0001 = "/C/Users/lubo/AppData/Local/Temp/AB_Cache_{76F9559" 6 | Cache_Path[Path] Line0002 = "B-3366-4B31-AB86-10C5933A4080}.txt" 7 | 8 | [AB_Cache_{F8DB5A48-7FE0-45AD-BAC8-8E6158C0B52B}] 9 | Cache_Path[Path] Line0001 = "/C/Users/lubo/AppData/Local/Temp/AB_Cache_{F8DB5A4" 10 | Cache_Path[Path] Line0002 = "8-7FE0-45AD-BAC8-8E6158C0B52B}.txt" 11 | 12 | -------------------------------------------------------------------------------- /build spec/lubomirjagos_lib_labview_universal_transcriptor-0.1.0.51.vip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/build spec/lubomirjagos_lib_labview_universal_transcriptor-0.1.0.51.vip -------------------------------------------------------------------------------- /types/Get Max Nested Level To Go.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/types/Get Max Nested Level To Go.vi -------------------------------------------------------------------------------- /types/LabVIEW Cluster Item Not Named Prefix.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/types/LabVIEW Cluster Item Not Named Prefix.vi -------------------------------------------------------------------------------- /types/LabVIEW Datatype Prefix.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/types/LabVIEW Datatype Prefix.vi -------------------------------------------------------------------------------- /types/LabVIEW SubVI autogen Name Prefix.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/types/LabVIEW SubVI autogen Name Prefix.vi -------------------------------------------------------------------------------- /types/LabVIEW Universal Transcriptor Arduino Boards Specific Names.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/types/LabVIEW Universal Transcriptor Arduino Boards Specific Names.ctl -------------------------------------------------------------------------------- /types/LabVIEW Universal Transcriptor C code Composer Input Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/types/LabVIEW Universal Transcriptor C code Composer Input Cluster.ctl -------------------------------------------------------------------------------- /types/LabVIEW Universal Transcriptor Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/types/LabVIEW Universal Transcriptor Cluster.ctl -------------------------------------------------------------------------------- /types/LabVIEW Universal Transcriptor Defines Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/types/LabVIEW Universal Transcriptor Defines Cluster.ctl -------------------------------------------------------------------------------- /types/LabVIEW Universal Transcriptor Structure Definitions.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/types/LabVIEW Universal Transcriptor Structure Definitions.ctl -------------------------------------------------------------------------------- /types/String Replace LabVIEW Data Types With C types.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/types/String Replace LabVIEW Data Types With C types.vi -------------------------------------------------------------------------------- /utils/CaseStructure Create Case Calls.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/CaseStructure Create Case Calls.vi -------------------------------------------------------------------------------- /utils/CaseStructure Format FrameNames Into C code Strings.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/CaseStructure Format FrameNames Into C code Strings.vi -------------------------------------------------------------------------------- /utils/CaseStructure Get FrameNames.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/CaseStructure Get FrameNames.vi -------------------------------------------------------------------------------- /utils/CaseStructure Get Frames Output Assignements.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/CaseStructure Get Frames Output Assignements.vi -------------------------------------------------------------------------------- /utils/CaseStructure Get Selector C Call.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/CaseStructure Get Selector C Call.vi -------------------------------------------------------------------------------- /utils/CaseStructure Get Wire Frame Index.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/CaseStructure Get Wire Frame Index.vi -------------------------------------------------------------------------------- /utils/CaseStructure Terminals Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/CaseStructure Terminals Info.vi -------------------------------------------------------------------------------- /utils/CaseStructure to Code.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/CaseStructure to Code.vi -------------------------------------------------------------------------------- /utils/ClassName to Ref.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/ClassName to Ref.vi -------------------------------------------------------------------------------- /utils/Cluster Bundler Get Typedef Terminal.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Cluster Bundler Get Typedef Terminal.vi -------------------------------------------------------------------------------- /utils/Cluster Generate Datatype Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Cluster Generate Datatype Name.vi -------------------------------------------------------------------------------- /utils/Cluster Get Datatype From Variant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Cluster Get Datatype From Variant.vi -------------------------------------------------------------------------------- /utils/Cluster Get Datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Cluster Get Datatype.vi -------------------------------------------------------------------------------- /utils/Cluster Make Typedef Elements Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Cluster Make Typedef Elements Info.vi -------------------------------------------------------------------------------- /utils/Cluster Make Typedef.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Cluster Make Typedef.vi -------------------------------------------------------------------------------- /utils/Cluster to C code.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Cluster to C code.vi -------------------------------------------------------------------------------- /utils/Compile for Arduino.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Compile for Arduino.vi -------------------------------------------------------------------------------- /utils/Diagram Get Constant Assignements.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Diagram Get Constant Assignements.vi -------------------------------------------------------------------------------- /utils/Diagram Get Execution Order debug.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Diagram Get Execution Order debug.vi -------------------------------------------------------------------------------- /utils/ForLoop Get N Counter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/ForLoop Get N Counter.vi -------------------------------------------------------------------------------- /utils/ForLoop Terminals Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/ForLoop Terminals Info.vi -------------------------------------------------------------------------------- /utils/ForLoop to Code.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/ForLoop to Code.vi -------------------------------------------------------------------------------- /utils/Get Connected Entities.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Connected Entities.vi -------------------------------------------------------------------------------- /utils/Get Diagram Constant refs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Diagram Constant refs.vi -------------------------------------------------------------------------------- /utils/Get Diagram Not Connected SubVI refs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Diagram Not Connected SubVI refs.vi -------------------------------------------------------------------------------- /utils/Get Directly Owned Objects.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Directly Owned Objects.vi -------------------------------------------------------------------------------- /utils/Get Elements Inside Reference By Type.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Elements Inside Reference By Type.vi -------------------------------------------------------------------------------- /utils/Get Name from Class ID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Name from Class ID.vi -------------------------------------------------------------------------------- /utils/Get Objects By ParentClass.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Objects By ParentClass.vi -------------------------------------------------------------------------------- /utils/Get Output Terminals.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Output Terminals.vi -------------------------------------------------------------------------------- /utils/Get StaticVIReference from Terminal.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get StaticVIReference from Terminal.vi -------------------------------------------------------------------------------- /utils/Get Terminal Owner Until Structure.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Terminal Owner Until Structure.vi -------------------------------------------------------------------------------- /utils/Get Terminals Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Terminals Info.vi -------------------------------------------------------------------------------- /utils/Get Top Controls.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Top Controls.vi -------------------------------------------------------------------------------- /utils/Get Tunnel Inside Terminals.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Tunnel Inside Terminals.vi -------------------------------------------------------------------------------- /utils/Get VI Controls.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get VI Controls.vi -------------------------------------------------------------------------------- /utils/Get VI Indicators.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get VI Indicators.vi -------------------------------------------------------------------------------- /utils/Get Variant Data Type.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Variant Data Type.vi -------------------------------------------------------------------------------- /utils/Get Variant Value.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Variant Value.vi -------------------------------------------------------------------------------- /utils/Get WhileLoop Terminals.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get WhileLoop Terminals.vi -------------------------------------------------------------------------------- /utils/Get Wire Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Wire Info.vi -------------------------------------------------------------------------------- /utils/Get Wire Next Element.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Wire Next Element.vi -------------------------------------------------------------------------------- /utils/Get Wires Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get Wires Info.vi -------------------------------------------------------------------------------- /utils/Get only Top VI elements.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Get only Top VI elements.vi -------------------------------------------------------------------------------- /utils/Is Class Descendand of Class.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Is Class Descendand of Class.vi -------------------------------------------------------------------------------- /utils/Is Element Owned.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Is Element Owned.vi -------------------------------------------------------------------------------- /utils/Is Variant LabVIEW Class.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Is Variant LabVIEW Class.vi -------------------------------------------------------------------------------- /utils/Loop Get FeedbackNode Init Terminals.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Loop Get FeedbackNode Init Terminals.vi -------------------------------------------------------------------------------- /utils/Loop Get Input Output Assignements VHDL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Loop Get Input Output Assignements VHDL.vi -------------------------------------------------------------------------------- /utils/Loop Get Input Output Assignements.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Loop Get Input Output Assignements.vi -------------------------------------------------------------------------------- /utils/Loop Get ShiftRegister Input Output Assignements VHDL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Loop Get ShiftRegister Input Output Assignements VHDL.vi -------------------------------------------------------------------------------- /utils/Loop Get ShiftRegister Input Output Assignements.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Loop Get ShiftRegister Input Output Assignements.vi -------------------------------------------------------------------------------- /utils/PointerDatatype Class/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/PointerDatatype Class/Read datatype.vi -------------------------------------------------------------------------------- /utils/Random 0-9999 String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Random 0-9999 String.vi -------------------------------------------------------------------------------- /utils/Reference To UID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Reference To UID.vi -------------------------------------------------------------------------------- /utils/String Array Concatenate To String.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/String Array Concatenate To String.vi -------------------------------------------------------------------------------- /utils/String Array Delete Duplicates.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/String Array Delete Duplicates.vi -------------------------------------------------------------------------------- /utils/String Array Remove Duplicate Typedefinitions.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/String Array Remove Duplicate Typedefinitions.vi -------------------------------------------------------------------------------- /utils/String Correct Whitespaces.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/String Correct Whitespaces.vi -------------------------------------------------------------------------------- /utils/String Get Item Real Name from Full Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/String Get Item Real Name from Full Name.vi -------------------------------------------------------------------------------- /utils/String Indent Code.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/String Indent Code.vi -------------------------------------------------------------------------------- /utils/String Search If Contain.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/String Search If Contain.vi -------------------------------------------------------------------------------- /utils/String Trim Both Sides.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/String Trim Both Sides.vi -------------------------------------------------------------------------------- /utils/SubVI Call Translator If Exists.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/SubVI Call Translator If Exists.vi -------------------------------------------------------------------------------- /utils/SubVI Function Call Parameters C Code Chunks.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/SubVI Function Call Parameters C Code Chunks.vi -------------------------------------------------------------------------------- /utils/SubVI Is Password Locked.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/SubVI Is Password Locked.vi -------------------------------------------------------------------------------- /utils/SubVI Terminals Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/SubVI Terminals Info.vi -------------------------------------------------------------------------------- /utils/SubVI Translate VHDL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/SubVI Translate VHDL.vi -------------------------------------------------------------------------------- /utils/SubVI Translate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/SubVI Translate.vi -------------------------------------------------------------------------------- /utils/SubVI to Code.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/SubVI to Code.vi -------------------------------------------------------------------------------- /utils/System Function Call Translator If Exists VHDL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/System Function Call Translator If Exists VHDL.vi -------------------------------------------------------------------------------- /utils/System Function Call Translator If Exists.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/System Function Call Translator If Exists.vi -------------------------------------------------------------------------------- /utils/TopLevelDiagram to Code.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/TopLevelDiagram to Code.vi -------------------------------------------------------------------------------- /utils/TranscriptorBasicObject Class/Read datatype.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/TranscriptorBasicObject Class/Read datatype.vi -------------------------------------------------------------------------------- /utils/TranscriptorBasicObject Class/Read value.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/TranscriptorBasicObject Class/Read value.vi -------------------------------------------------------------------------------- /utils/TranscriptorBasicObject Constant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/TranscriptorBasicObject Constant.vi -------------------------------------------------------------------------------- /utils/TranscriptorBasicObject Control.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/TranscriptorBasicObject Control.ctl -------------------------------------------------------------------------------- /utils/TranscriptorBasicObject Indicator.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/TranscriptorBasicObject Indicator.ctl -------------------------------------------------------------------------------- /utils/Unbundle Code Cluster.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Unbundle Code Cluster.vi -------------------------------------------------------------------------------- /utils/WhileLoop Get Selector C Call.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/WhileLoop Get Selector C Call.vi -------------------------------------------------------------------------------- /utils/WhileLoop Terminals Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/WhileLoop Terminals Info.vi -------------------------------------------------------------------------------- /utils/WhileLoop to Code.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/WhileLoop to Code.vi -------------------------------------------------------------------------------- /utils/Wire Is Different as WhileLoop EndRef Wire.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/Wire Is Different as WhileLoop EndRef Wire.vi -------------------------------------------------------------------------------- /utils/composite/Get Error in from Terminals Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/composite/Get Error in from Terminals Info.vi -------------------------------------------------------------------------------- /utils/composite/Get Error out from Terminals Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/composite/Get Error out from Terminals Info.vi -------------------------------------------------------------------------------- /utils/composite/Get Inside Structure Wires declarations.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/composite/Get Inside Structure Wires declarations.vi -------------------------------------------------------------------------------- /utils/composite/Get LoopTunnel Inside Terminal Wire Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/composite/Get LoopTunnel Inside Terminal Wire Name.vi -------------------------------------------------------------------------------- /utils/composite/Get LoopTunnel Terminals Datatypes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/composite/Get LoopTunnel Terminals Datatypes.vi -------------------------------------------------------------------------------- /utils/composite/Get Output Assignements and Declarations.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LubomirJagos/LabVIEW-Universal-Transcriptor/b38822a6f6850023746b44a3a40aa7eda5aa9775/utils/composite/Get Output Assignements and Declarations.vi --------------------------------------------------------------------------------