<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.cpr-robots.com/index.php?action=history&amp;feed=atom&amp;title=Transferring_Robot_Programs_via_CRI</id>
	<title>Transferring Robot Programs via CRI - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.cpr-robots.com/index.php?action=history&amp;feed=atom&amp;title=Transferring_Robot_Programs_via_CRI"/>
	<link rel="alternate" type="text/html" href="https://wiki.cpr-robots.com/index.php?title=Transferring_Robot_Programs_via_CRI&amp;action=history"/>
	<updated>2026-05-02T02:36:14Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://wiki.cpr-robots.com/index.php?title=Transferring_Robot_Programs_via_CRI&amp;diff=106&amp;oldid=prev</id>
		<title>OLT: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://wiki.cpr-robots.com/index.php?title=Transferring_Robot_Programs_via_CRI&amp;diff=106&amp;oldid=prev"/>
		<updated>2025-08-11T10:13:20Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 10:13, 11 August 2025&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>OLT</name></author>
	</entry>
	<entry>
		<id>https://wiki.cpr-robots.com/index.php?title=Transferring_Robot_Programs_via_CRI&amp;diff=105&amp;oldid=prev</id>
		<title>cpr&gt;Mab: Created page with &quot;The CRI Ethernet Interface can be used to transfer robot program files to the robot. This article shows how to do this.  This approach is intended for use advanced cases t...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.cpr-robots.com/index.php?title=Transferring_Robot_Programs_via_CRI&amp;diff=105&amp;oldid=prev"/>
		<updated>2022-08-08T15:00:39Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;The &lt;a href=&quot;/index.php/CRI_Ethernet_Interface&quot; title=&quot;CRI Ethernet Interface&quot;&gt;CRI Ethernet Interface&lt;/a&gt; can be used to transfer robot program files to the robot. This article shows how to do this.  This approach is intended for use advanced cases t...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;The [[CRI Ethernet Interface]] can be used to transfer robot program files to the robot. This article shows how to do this.&lt;br /&gt;
&lt;br /&gt;
This approach is intended for use advanced cases that require dynamic program changes. For most applications defining and transmitting the program manually via CPRog/iRC, then starting it via CRI or a different interface should be sufficient. Variables and global signals can be used to parameterize a manually defined program via CRI, Modbus or a logic program.&lt;br /&gt;
&lt;br /&gt;
= Commands =&lt;br /&gt;
The relevant CRI commands are:&lt;br /&gt;
* CMD UploadFileInit&lt;br /&gt;
* CMD UploadFileLine&lt;br /&gt;
* CMD UploadFileFinish&lt;br /&gt;
&lt;br /&gt;
UploadFileInit starts the upload. Its parameters are the file name (relative to the Data directory, this means you need to prepend your file name with &amp;quot;Programs/&amp;quot;) and the number of lines. UploadFileLine uploads a single line of the file. Send this command for each line. UploadFileFinish closes the file.&lt;br /&gt;
&lt;br /&gt;
Please read the CRI documentation for more info.&lt;br /&gt;
&lt;br /&gt;
= Example =&lt;br /&gt;
The following shows the actual commands to upload a short program. The command start and end (CRISTART, command number and CRIEND) are omitted in this example, they need to be added. Otherwise your commands should be similar.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
CMD UploadFileInit Programs/MyProgram.xml 8&lt;br /&gt;
CMD UploadFileLine &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;br /&gt;
CMD UploadFileLine &amp;lt;Program&amp;gt;&lt;br /&gt;
CMD UploadFileLine &amp;lt;Header RobotName=&amp;quot;igus Gantry&amp;quot; RobotType=&amp;quot;DLE-RG-0001&amp;quot; GripperType=&amp;quot;&amp;quot; Software=&amp;quot;iRC V902-13-022-DEV&amp;quot; VelocitySetting=&amp;quot;0&amp;quot; /&amp;gt;&lt;br /&gt;
CMD UploadFileLine &amp;lt;Loop Nr=&amp;quot;1&amp;quot; Mode=&amp;quot;DIn&amp;quot; Condition=&amp;quot;False&amp;quot; Descr=&amp;quot;&amp;quot; /&amp;gt;&lt;br /&gt;
CMD UploadFileLine &amp;lt;Joint AbortCondition=&amp;quot;False&amp;quot; Nr=&amp;quot;2&amp;quot; Source=&amp;quot;Numerical&amp;quot; velPercent=&amp;quot;100&amp;quot; acc=&amp;quot;40&amp;quot; smooth=&amp;quot;0&amp;quot; a1=&amp;quot;10&amp;quot; a2=&amp;quot;0&amp;quot; a3=&amp;quot;0&amp;quot; a4=&amp;quot;0&amp;quot; a5=&amp;quot;0&amp;quot; a6=&amp;quot;0&amp;quot; e1=&amp;quot;0&amp;quot; e2=&amp;quot;0&amp;quot; e3=&amp;quot;0&amp;quot; Descr=&amp;quot;&amp;quot; /&amp;gt;&lt;br /&gt;
CMD UploadFileLine &amp;lt;Joint AbortCondition=&amp;quot;False&amp;quot; Nr=&amp;quot;3&amp;quot; Source=&amp;quot;Numerical&amp;quot; velPercent=&amp;quot;100&amp;quot; acc=&amp;quot;40&amp;quot; smooth=&amp;quot;0&amp;quot; a1=&amp;quot;210&amp;quot; a2=&amp;quot;0&amp;quot; a3=&amp;quot;0&amp;quot; a4=&amp;quot;0&amp;quot; a5=&amp;quot;0&amp;quot; a6=&amp;quot;0&amp;quot; e1=&amp;quot;0&amp;quot; e2=&amp;quot;0&amp;quot; e3=&amp;quot;0&amp;quot; Descr=&amp;quot;&amp;quot; /&amp;gt;&lt;br /&gt;
CMD UploadFileLine &amp;lt;EndLoop Nr=&amp;quot;4&amp;quot; Descr=&amp;quot;&amp;quot; /&amp;gt;&lt;br /&gt;
CMD UploadFileLine &amp;lt;/Program&amp;gt;&lt;br /&gt;
CMD UploadFileFinish&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:CPRog]][[Category:TinyCtrl]]&lt;/div&gt;</summary>
		<author><name>cpr&gt;Mab</name></author>
	</entry>
</feed>