<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Verbindungsunterbrechung</title>
        <description> Hallo

Nachdem ich es geschafft habe die Firmware aufzuspielen habe ich ein andres Problem: 

Der Host welcher bei dem Mendelsoftwarepaket dabei ist startet nicht.
Beim alternativen Host (Printrun) bricht ständig die Verbindung zusammen.

Ich habe schon mit der Bautrate und den Einstellungen des Prots rum gespielt ohne das sich etwas ändert. Kenn jemand noch ein Rädchen an dem man drehen kann oder sollte?

Firmware: FiveD; Gen3; WinXP; Bautrate 115200

Gruß 

Pfanne</description>
        <link>https://reprap.org/forum/read.php?35,91927,91927#msg-91927</link>
        <lastBuildDate>Thu, 13 Aug 2026 05:00:51 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?35,91927,91995#msg-91995</guid>
            <title>Re: Verbindungsunterbrechung</title>
            <link>https://reprap.org/forum/read.php?35,91927,91995#msg-91995</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Pfanne</strong><br />
Mein Ziel war es nicht dickköpfig zu sein</div></blockquote>
<br />
Ist es nie!   :P]]></description>
            <dc:creator>rhmorrison</dc:creator>
            <category>Altes Forum</category>
            <pubDate>Tue, 26 Jul 2011 09:29:02 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?35,91927,91992#msg-91992</guid>
            <title>Re: Verbindungsunterbrechung</title>
            <link>https://reprap.org/forum/read.php?35,91927,91992#msg-91992</link>
            <description><![CDATA[ Mein Ziel war es nicht dickköpfig zu sein B)<br />
<br />
Danke für die Firmware jetzt bewegen sich alle Achsen wie sie sollen.<br />
<br />
Gruß Pfanne]]></description>
            <dc:creator>Pfanne</dc:creator>
            <category>Altes Forum</category>
            <pubDate>Tue, 26 Jul 2011 09:06:14 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?35,91927,91981#msg-91981</guid>
            <title>Re: Verbindungsunterbrechung</title>
            <link>https://reprap.org/forum/read.php?35,91927,91981#msg-91981</link>
            <description><![CDATA[ Manchmal sind die Leute hier ein wenig dickköpfig, Bob. Kein Grund zur Panik :)]]></description>
            <dc:creator>Traumflug</dc:creator>
            <category>Altes Forum</category>
            <pubDate>Tue, 26 Jul 2011 07:53:22 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?35,91927,91979#msg-91979</guid>
            <title>Re: Verbindungsunterbrechung</title>
            <link>https://reprap.org/forum/read.php?35,91927,91979#msg-91979</link>
            <description><![CDATA[ Von der RepRap HOST software:<br />
	<pre class="bbcode">
private void openSerialConnection(String portName)
	{
		
		int baudRate = 19200;
		serialInStream = null;
		serialOutStream = null;
		
		//open our port.
		Debug.d("GCode opening port " + portName);
		Main.setRepRapPresent(false);
		try 
		{
			CommPortIdentifier commId = CommPortIdentifier.getPortIdentifier(portName);
			port = (SerialPort)commId.open(portName, 30000);
		} catch (NoSuchPortException e) {
			Debug.d("Can't open port: " + portName + " - no RepRap attached.");
			return;
		}
		catch (PortInUseException e){
			Debug.e("Port '" + portName + "' is already in use.");
			return;			
		}
		Main.setRepRapPresent(true);		
		//get our baudrate
		try {
			baudRate = Preferences.loadGlobalInt("BaudRate");
		}
		catch (IOException e){}
		
		// Workround for javax.comm bug.
		// See [<a href="http://forum.java.sun.com/thread.jspa?threadID=673793" target="_blank"  rel="nofollow">forum.java.sun.com</a>]
		// FIXME: jvandewiel: is this workaround also needed when using the RXTX library?
		try {
			port.setSerialPortParams(baudRate,
					SerialPort.DATABITS_8,
					SerialPort.STOPBITS_1,
					SerialPort.PARITY_NONE);
		}
		catch (UnsupportedCommOperationException e) {
			Debug.d("An unsupported comms operation was encountered.\n" + e.toString());
			return;		
		}
		
		// Wait for baud rate change to take effect
		try {Thread.sleep(1000);} catch (Exception e) {}

		
		try {
			port.setFlowControlMode(SerialPort.FLOWCONTROL_NONE);
		} catch (Exception e) {
			// Um, Linux USB ports don't do this. What can I do about it?
		}
		
		try {
			port.enableReceiveTimeout(1);
		} catch (UnsupportedCommOperationException e) {
			Debug.d("Read timeouts unsupported on this platform");
		}

		//create our steams
		try {
			OutputStream writeStream = port.getOutputStream();
			serialInStream = port.getInputStream();
			serialOutStream = new PrintStream(writeStream);
		} catch (IOException e) {
			Debug.e("GCodeWriter: Error opening serial port stream.");
			serialInStream = null;
			serialOutStream = null;
			return;		
		}

		//arduino bootloader skip.
		Debug.d("Attempting to initialize Arduino/Sanguino");
        try {Thread.sleep(1000);} catch (Exception e) {}
        for(int i = 0; i &lt; 10; i++)
                serialOutStream.write('0');
        try {Thread.sleep(1000);} catch (Exception e) {}
        
        return;
	}</pre>
<br />
<b>Baudrate</b>: Preferences.loadGlobalInt("BaudRate");  // Default 19200<br />
<b>Data bits</b>: 8<br />
<b>Stop bits</b>: 1<br />
<b>Parity</b>: NONE<br />
<b>Handshaking</b>: NONE<br />
<br />
<span style="color:#0033FF"><span style="font-size:large">Änderungen im Gerätemanager haben <b>KEIN EINFLUß</b>!</span></span><br />
<br />
Jede ander HOST software wird genau so geschrieben sein...]]></description>
            <dc:creator>rhmorrison</dc:creator>
            <category>Altes Forum</category>
            <pubDate>Tue, 26 Jul 2011 07:40:59 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?35,91927,91951#msg-91951</guid>
            <title>Re: Verbindungsunterbrechung</title>
            <link>https://reprap.org/forum/read.php?35,91927,91951#msg-91951</link>
            <description><![CDATA[ Danke für den Tip... Werde es heute abdend gleich mal probieren.]]></description>
            <dc:creator>Pfanne</dc:creator>
            <category>Altes Forum</category>
            <pubDate>Tue, 26 Jul 2011 02:35:48 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?35,91927,91949#msg-91949</guid>
            <title>Re: Verbindungsunterbrechung</title>
            <link>https://reprap.org/forum/read.php?35,91927,91949#msg-91949</link>
            <description><![CDATA[ Also die FiveD läuft am stabilsten mit 19200<br />
<br />
bei der Gen3 kannst du mal versuchen eine ältere Firmware zu nehmen. Die laufen auf der Gen3 immer noch am besten. <br />
z.B. diese hier von 2010-08-06 <br />
[<a href="http://reprap-fab.org/temp/firmware-mendel-20100806.zip" target="_blank"  rel="nofollow">reprap-fab.org</a>]<br />
<br />
dann aber auch den Host der dazu gehört oder den Pintrun]]></description>
            <dc:creator>Stoffel15</dc:creator>
            <category>Altes Forum</category>
            <pubDate>Tue, 26 Jul 2011 02:18:54 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?35,91927,91947#msg-91947</guid>
            <title>Re: Verbindungsunterbrechung</title>
            <link>https://reprap.org/forum/read.php?35,91927,91947#msg-91947</link>
            <description><![CDATA[ Es heist <b>Port</b> und <b>Baudrate</b>!<br />
Die HOST software konfiguriert die Baudrate und Port parametern der PC COM port!<br />
Änderungen im Gerätemanager haben nur einfluß wenn der HOST software es nicht konfiguriert.]]></description>
            <dc:creator>rhmorrison</dc:creator>
            <category>Altes Forum</category>
            <pubDate>Tue, 26 Jul 2011 02:14:14 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?35,91927,91936#msg-91936</guid>
            <title>Re: Verbindungsunterbrechung</title>
            <link>https://reprap.org/forum/read.php?35,91927,91936#msg-91936</link>
            <description><![CDATA[ Die Einstellungen des Prots kann man im Gerätemanager in gewissen Grenzen ändern.<br />
<br />
Die Bautrate habe ich jedesmal in der Firmware, dem Host und am Port geändert.]]></description>
            <dc:creator>Pfanne</dc:creator>
            <category>Altes Forum</category>
            <pubDate>Tue, 26 Jul 2011 01:09:26 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?35,91927,91931#msg-91931</guid>
            <title>Re: Verbindungsunterbrechung</title>
            <link>https://reprap.org/forum/read.php?35,91927,91931#msg-91931</link>
            <description><![CDATA[ Wo hast du die Einstellungen des Ports geändert?<br />
<br />
Für die Baudrate zu ändern muß es im FIRMWARE UND HOST geandert werden.<br />
Die Port Einstellungen kann mann nicht ändern außer das Ihrer HOST solche einstellungen anbietet.<br />
<b>Die HOST software konfiguriert die Baudrate und Port parametern der PC COM port!</b>]]></description>
            <dc:creator>rhmorrison</dc:creator>
            <category>Altes Forum</category>
            <pubDate>Tue, 26 Jul 2011 00:52:51 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?35,91927,91930#msg-91930</guid>
            <title>Re: Verbindungsunterbrechung</title>
            <link>https://reprap.org/forum/read.php?35,91927,91930#msg-91930</link>
            <description><![CDATA[ Die "Bautrate 115200" ist abhängig von der Firmware ! Du mußt gucken was da eingestellt ist.]]></description>
            <dc:creator>Stoffel15</dc:creator>
            <category>Altes Forum</category>
            <pubDate>Tue, 26 Jul 2011 00:50:44 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?35,91927,91927#msg-91927</guid>
            <title>Verbindungsunterbrechung</title>
            <link>https://reprap.org/forum/read.php?35,91927,91927#msg-91927</link>
            <description><![CDATA[ Hallo<br />
<br />
Nachdem ich es geschafft habe die Firmware aufzuspielen habe ich ein andres Problem: <br />
<br />
Der Host welcher bei dem Mendelsoftwarepaket dabei ist startet nicht.<br />
Beim alternativen Host (Printrun) bricht ständig die Verbindung zusammen.<br />
<br />
Ich habe schon mit der Bautrate und den Einstellungen des Prots rum gespielt ohne das sich etwas ändert. Kenn jemand noch ein Rädchen an dem man drehen kann oder sollte?<br />
<br />
Firmware: FiveD; Gen3; WinXP; Bautrate 115200<br />
<br />
Gruß <br />
<br />
Pfanne]]></description>
            <dc:creator>Pfanne</dc:creator>
            <category>Altes Forum</category>
            <pubDate>Tue, 26 Jul 2011 00:36:21 -0400</pubDate>
        </item>
    </channel>
</rss>
