<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>mftoolkit Issue Tracker Rss Feed</title><link>http://www.codeplex.com/mftoolkit/WorkItem/List.aspx</link><description>mftoolkit Issue Tracker Rss Description</description><item><title>Commented Issue: NodeIdentifier returns with the first character missing [12911]</title><link>http://mftoolkit.codeplex.com/workitem/12911</link><description>I have noticed that if I set a NI in the Zigbee module and do a node indentifier search, I always get back the NODE ID string missing the first character.&lt;br /&gt;&lt;br /&gt;Eg, I set NI in the module to WATTAGE and when a search and then read NodeIdentifier I see ATTAGE. This is repeatable with all Zigbee modules I have.&lt;br /&gt;&lt;br /&gt;I am using XBP24BZ7 modules.&lt;br /&gt;Comments: ** Comment from web user: WeegieBoy ** &lt;p&gt;As a follow up, it looks like the software is decoding the signal strength from the packet.&lt;/p&gt;&lt;p&gt;Looking at the Digi documentation, this byte is not in the packet.&lt;/p&gt;&lt;p&gt;By commenting out this line in NodeDiscover.cs the code now decodes the string identifier correctly.&lt;br&gt;&lt;/p&gt;</description><author>WeegieBoy</author><pubDate>Thu, 09 May 2013 12:13:21 GMT</pubDate><guid isPermaLink="false">Commented Issue: NodeIdentifier returns with the first character missing [12911] 20130509121321P</guid></item><item><title>Created Issue: NodeIdentifier returns with the first character missing [12911]</title><link>http://mftoolkit.codeplex.com/workitem/12911</link><description>I have noticed that if I set a NI in the Zigbee module and do a node indentifier search, I always get back the NODE ID string missing the first character.&lt;br /&gt;&lt;br /&gt;Eg, I set NI in the module to WATTAGE and when a search and then read NodeIdentifier I see ATTAGE. This is repeatable with all Zigbee modules I have.&lt;br /&gt;&lt;br /&gt;I am using XBP24BZ7 modules.&lt;br /&gt;</description><author>WeegieBoy</author><pubDate>Thu, 09 May 2013 09:57:07 GMT</pubDate><guid isPermaLink="false">Created Issue: NodeIdentifier returns with the first character missing [12911] 20130509095707A</guid></item><item><title>Closed Issue: XBee crash when checksum error [10944]</title><link>http://mftoolkit.codeplex.com/workitem/10944</link><description>I was dealing with this problem a little time and finally found the source. In XBee.cs class, private void ReceiveData&amp;#40;&amp;#41; method, private MemoryStream _readBuffer didn&amp;#39;t discart fake frames when checksum error. The thread still received data and drove _readBuffer &amp;#34;outofmemory&amp;#34;.&lt;br /&gt;&lt;br /&gt;I have solved checking length and checksum separately, with new GetLenth&amp;#40;&amp;#41; and Checksum&amp;#40;&amp;#41; methods, and some corrections in do&amp;#123;&amp;#125; while block.&lt;br /&gt;&lt;br /&gt;Find attached the new XBee.cs for testing&lt;br /&gt;Comments: Resuelto con el conjunto de cambios 76819.</description><author>jcsaez</author><pubDate>Sat, 28 Apr 2012 19:05:25 GMT</pubDate><guid isPermaLink="false">Closed Issue: XBee crash when checksum error [10944] 20120428070525P</guid></item><item><title>Closed Issue: XBeeAddress64.Value setter masks out bytes [10320]</title><link>http://mftoolkit.codeplex.com/workitem/10320</link><description>The XBeeAddress64 class&amp;#39;s Value property masks out the high word of the LSB half of the address.&lt;br /&gt;var x64 &amp;#61; new XBeeAddress64&amp;#40;0x1234567812345678&amp;#41;&lt;br /&gt;generates an address of 0x1234567800005678&lt;br /&gt;&lt;br /&gt;This is because the Value setter&amp;#58;&lt;br /&gt;  _lsb &amp;#61; &amp;#40;uint&amp;#41;&amp;#40;value &amp;#38; 0xFFFF&amp;#41;&amp;#59;&lt;br /&gt;should be&lt;br /&gt;  _lsb &amp;#61; &amp;#40;uint&amp;#41;&amp;#40;value &amp;#38; 0xFFFFFFFF&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;Off topic, but having Equals&amp;#40;&amp;#41; overrides are great too&amp;#58;&lt;br /&gt;&lt;br /&gt;        public override bool Equals&amp;#40;object obj&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            XBeeAddress64 that &amp;#61; obj as XBeeAddress64&amp;#59;&lt;br /&gt;            return &amp;#40;that &amp;#33;&amp;#61; null&amp;#41; &amp;#38;&amp;#38; that._msb &amp;#61;&amp;#61; this._msb &amp;#38;&amp;#38;that._lsb &amp;#61;&amp;#61; this._lsb&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;        public override int GetHashCode&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            return &amp;#40;int&amp;#41;_lsb&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;Comments: Resuelto con el conjunto de cambios 76819.</description><author>jcsaez</author><pubDate>Sat, 28 Apr 2012 19:05:20 GMT</pubDate><guid isPermaLink="false">Closed Issue: XBeeAddress64.Value setter masks out bytes [10320] 20120428070520P</guid></item><item><title>Commented Issue: XBee crash when checksum error [10944]</title><link>http://mftoolkit.codeplex.com/workitem/10944</link><description>I was dealing with this problem a little time and finally found the source. In XBee.cs class, private void ReceiveData&amp;#40;&amp;#41; method, private MemoryStream _readBuffer didn&amp;#39;t discart fake frames when checksum error. The thread still received data and drove _readBuffer &amp;#34;outofmemory&amp;#34;.&lt;br /&gt;&lt;br /&gt;I have solved checking length and checksum separately, with new GetLenth&amp;#40;&amp;#41; and Checksum&amp;#40;&amp;#41; methods, and some corrections in do&amp;#123;&amp;#125; while block.&lt;br /&gt;&lt;br /&gt;Find attached the new XBee.cs for testing&lt;br /&gt;Comments: ** Comment from web user: hellokitty9999 ** &lt;p&gt;Hi, may I know how this program works&amp;#63; &lt;/p&gt;</description><author>hellokitty9999</author><pubDate>Thu, 09 Feb 2012 06:24:34 GMT</pubDate><guid isPermaLink="false">Commented Issue: XBee crash when checksum error [10944] 20120209062434A</guid></item><item><title>Closed Issue: XBee crash when checksum error [10945]</title><link>http://mftoolkit.codeplex.com/workitem/10945</link><description>I was dealing with this problem a little time and finally found the source. In XBee.cs class, private void ReceiveData&amp;#40;&amp;#41; method, private MemoryStream _readBuffer didn&amp;#39;t discart fake frames when checksum error. The thread still received data and drove _readBuffer &amp;#34;outofmemory&amp;#34;.&lt;br /&gt;&lt;br /&gt;I have solved checking length and checksum separately, with new GetLenth&amp;#40;&amp;#41; and Checksum&amp;#40;&amp;#41; methods, and some corrections in do&amp;#123;&amp;#125; while block.&lt;br /&gt;&lt;br /&gt;Find attached the new XBee.cs for testing&lt;br /&gt;Comments: &lt;p&gt;Duplicated&lt;/p&gt;</description><author>jcsaez</author><pubDate>Wed, 08 Jun 2011 16:28:43 GMT</pubDate><guid isPermaLink="false">Closed Issue: XBee crash when checksum error [10945] 20110608042843P</guid></item><item><title>Created Issue: XBee crash when checksum error [10945]</title><link>http://mftoolkit.codeplex.com/workitem/10945</link><description>I was dealing with this problem a little time and finally found the source. In XBee.cs class, private void ReceiveData&amp;#40;&amp;#41; method, private MemoryStream _readBuffer didn&amp;#39;t discart fake frames when checksum error. The thread still received data and drove _readBuffer &amp;#34;outofmemory&amp;#34;.&lt;br /&gt;&lt;br /&gt;I have solved checking length and checksum separately, with new GetLenth&amp;#40;&amp;#41; and Checksum&amp;#40;&amp;#41; methods, and some corrections in do&amp;#123;&amp;#125; while block.&lt;br /&gt;&lt;br /&gt;Find attached the new XBee.cs for testing&lt;br /&gt;</description><author>jcsaez</author><pubDate>Thu, 19 May 2011 17:34:52 GMT</pubDate><guid isPermaLink="false">Created Issue: XBee crash when checksum error [10945] 20110519053452P</guid></item><item><title>Created Issue: XBee crash when checksum error [10944]</title><link>http://mftoolkit.codeplex.com/workitem/10944</link><description>I was dealing with this problem a little time and finally found the source. In XBee.cs class, private void ReceiveData&amp;#40;&amp;#41; method, private MemoryStream _readBuffer didn&amp;#39;t discart fake frames when checksum error. The thread still received data and drove _readBuffer &amp;#34;outofmemory&amp;#34;.&lt;br /&gt;&lt;br /&gt;I have solved checking length and checksum separately, with new GetLenth&amp;#40;&amp;#41; and Checksum&amp;#40;&amp;#41; methods, and some corrections in do&amp;#123;&amp;#125; while block.&lt;br /&gt;&lt;br /&gt;Find attached the new XBee.cs for testing&lt;br /&gt;</description><author>jcsaez</author><pubDate>Thu, 19 May 2011 17:34:30 GMT</pubDate><guid isPermaLink="false">Created Issue: XBee crash when checksum error [10944] 20110519053430P</guid></item><item><title>Created Issue: XBeeAddress64.Value setter masks out bytes [10320]</title><link>http://mftoolkit.codeplex.com/workitem/10320</link><description>The XBeeAddress64 class&amp;#39;s Value property masks out the high word of the LSB half of the address.&lt;br /&gt;var x64 &amp;#61; new XBeeAddress64&amp;#40;0x1234567812345678&amp;#41;&lt;br /&gt;generates an address of 0x1234567800005678&lt;br /&gt;&lt;br /&gt;This is because the Value setter&amp;#58;&lt;br /&gt;  _lsb &amp;#61; &amp;#40;uint&amp;#41;&amp;#40;value &amp;#38; 0xFFFF&amp;#41;&amp;#59;&lt;br /&gt;should be&lt;br /&gt;  _lsb &amp;#61; &amp;#40;uint&amp;#41;&amp;#40;value &amp;#38; 0xFFFFFFFF&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;Off topic, but having Equals&amp;#40;&amp;#41; overrides are great too&amp;#58;&lt;br /&gt;&lt;br /&gt;        public override bool Equals&amp;#40;object obj&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            XBeeAddress64 that &amp;#61; obj as XBeeAddress64&amp;#59;&lt;br /&gt;            return &amp;#40;that &amp;#33;&amp;#61; null&amp;#41; &amp;#38;&amp;#38; that._msb &amp;#61;&amp;#61; this._msb &amp;#38;&amp;#38;that._lsb &amp;#61;&amp;#61; this._lsb&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;        public override int GetHashCode&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            return &amp;#40;int&amp;#41;_lsb&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;</description><author>CapnBry</author><pubDate>Wed, 09 Mar 2011 20:41:29 GMT</pubDate><guid isPermaLink="false">Created Issue: XBeeAddress64.Value setter masks out bytes [10320] 20110309084129P</guid></item><item><title>Created Issue: Is C6820 library actually working? [9951]</title><link>http://mftoolkit.codeplex.com/workitem/9951</link><description>Hi. We tried to drive a C6820 module using mftoolkit library, but it seems that something is wrong in sources.&lt;br /&gt;&lt;br /&gt;First of all, we couldn&amp;#39;t find any _serialport.Open&amp;#40;&amp;#41; call.&lt;br /&gt;&lt;br /&gt;We also noted that _serialport.ReadTimeout is set where it cannot be set, since even opening serialport on C6820 ctor, such property has to be set before opening port, but it could be an issue due to a different behavior of MF 4.1.&lt;br /&gt;&lt;br /&gt;Does anybody ever tried to use this library with a real C6820 module&amp;#63;&lt;br /&gt;</description><author>innovactive</author><pubDate>Sat, 27 Nov 2010 07:24:01 GMT</pubDate><guid isPermaLink="false">Created Issue: Is C6820 library actually working? [9951] 20101127072401A</guid></item><item><title>Commented Issue: changed OnPacketReceived to FrameReceived not in DLL?? [8201]</title><link>http://mftoolkit.codeplex.com/workitem/8201</link><description>I just started a new project using XBee. I am sending a message from a&lt;br /&gt;xbee connected to an arduino microcontroller to a xbee connected to my&lt;br /&gt;laptop.&lt;br /&gt;&lt;br /&gt;I am writing the laptop application in C&amp;#35;, and am using this library for it.&lt;br /&gt;I&amp;#39;ve allready established a connection succesfully. I&amp;#39;ve got an OnPacketReceived&lt;br /&gt;handler, but for every message that is send to the xbee connected to C&amp;#35; I&lt;br /&gt;get the following message in my Console&amp;#58;&lt;br /&gt;&amp;#34;Could not handle API message 129&amp;#34;&amp;#59;&lt;br /&gt;&lt;br /&gt;First of all I would like to know what this message means exactly &amp;#40;129&amp;#63;&amp;#63;&amp;#41;. I went&lt;br /&gt;to checkout the documentation &amp;#40;Source Code -&amp;#62; Browse&amp;#41;. There I found that the&lt;br /&gt;OnPacketReceived handler was changed to FrameReceived. When I check the&lt;br /&gt;dll I am using OnPacketReceived is still in there, and FrameReceived isn&amp;#39;t. How come&amp;#63;&lt;br /&gt;I&amp;#39;ve got the most recent dll I can download here.&lt;br /&gt;&lt;br /&gt;I hope someone can give me some usefull information.&lt;br /&gt;&lt;br /&gt;Greetings Ophoopfansegen&lt;br /&gt;Comments: ** Comment from web user: Ophoopfansegen ** &lt;p&gt;It&amp;#39;s been a long time since I worked with this project.&lt;/p&gt;&lt;p&gt;We managed to fix our problems, allthough the performance of the library was very bad when&lt;br /&gt;handeling a lot of messages. Instead of the published dll we used the available source code and&lt;br /&gt;made some changes to the library and created a dll ourselves. We also made som changes in the&lt;br /&gt;library regarding the performance issues, it improved a bit but still not completely fluent.&lt;/p&gt;&lt;p&gt;I can&amp;#39;t remember what issues we ran into exactly or what we changed. I can include an attachment&lt;br /&gt;of the source code of the zigbee library as we changed it. You can check what changes we made&lt;br /&gt;as improvements.&lt;/p&gt;</description><author>Ophoopfansegen</author><pubDate>Tue, 09 Nov 2010 04:18:40 GMT</pubDate><guid isPermaLink="false">Commented Issue: changed OnPacketReceived to FrameReceived not in DLL?? [8201] 20101109041840A</guid></item><item><title>Closed Issue: HTTPS/SSL implementation [4293]</title><link>http://mftoolkit.codeplex.com/workitem/4293</link><description>Hi Michael,&lt;br /&gt;&lt;br /&gt;I&amp;#39;m trying to get HTTPS&amp;#47;SSL working in netmf.  I know the emulator does not support SSL, and it is available as a library.  Do you have any plans to implement SSL&amp;#63;&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Armand&lt;br /&gt;Comments: &lt;p&gt;SSL will not be available in the future, sorry.&lt;/p&gt;</description><author>interactive</author><pubDate>Mon, 08 Nov 2010 12:50:39 GMT</pubDate><guid isPermaLink="false">Closed Issue: HTTPS/SSL implementation [4293] 20101108125039P</guid></item><item><title>Closed Issue: ZigBee : AtCommand ctor does not allow to set register? [4218]</title><link>http://mftoolkit.codeplex.com/workitem/4218</link><description>I think that public constructor &amp;#34;public AtCommand&amp;#40;string command, byte&amp;#91;&amp;#93; value&amp;#41;&amp;#34; misses in its implemetation of following assignment&amp;#58; &amp;#34;this.Value &amp;#61; value&amp;#59;&amp;#34;.&lt;br /&gt;&lt;br /&gt;Without it every AT command that tries to set a register fails, since it is given back the current register value.&lt;br /&gt;&lt;br /&gt;Same issue arises even when using AtRemoteCommand&amp;#39;s ctors that use the aforementioned ATCommand ctor.&lt;br /&gt;&lt;br /&gt;I suspect that another issue could arise in CheckFrame&amp;#40;&amp;#41; method of XBee class, since it does&amp;#39;n manage correctly responses about Api types other than AtCommandResponse &amp;#40;i.e AtRemoteCommandResponse or ZigBeeTransmitStatus&amp;#41;.&lt;br /&gt;Comments: Resolved with changeset 59005.</description><author>interactive</author><pubDate>Mon, 08 Nov 2010 12:46:51 GMT</pubDate><guid isPermaLink="false">Closed Issue: ZigBee : AtCommand ctor does not allow to set register? [4218] 20101108124651P</guid></item><item><title>Closed Issue: HttpRequest.ReadSocket method spinning [4318]</title><link>http://mftoolkit.codeplex.com/workitem/4318</link><description>Hi, First of all, thank you very much for your effort and great work on this toolkit. I am using the latest released source &amp;#40;23728&amp;#41; and have a WebServer using HttpService &amp;#40;non-MF&amp;#41; with an ajax type method that I&amp;#39;m calling from within a timer in IE7 using jQuery, which recurs at about 2 second rate. After about 1000 to 2000 such requests, the server appears to melt down with many &amp;#34;Client Worker Process&amp;#34; threads spinning inside HttpRequest.ReadSocket&amp;#40;&amp;#41;. - In this case spinning with the first while&amp;#40;true&amp;#41; loop in the method, at line 404 -- if&amp;#40;avail &amp;#61;&amp;#61; 0&amp;#41; &amp;#123; continue &amp;#40;with a commented &amp;#47;&amp;#47; Thread.Sleep&amp;#40;10&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;I suspect that the connection went bad, or IE7 got sick and the socket.Poll&amp;#40;&amp;#41; method did not detect the problem, so the thread kept spinning in a tight loop - with no mechanism to see the problem. I&amp;#39;m wondering if anyone else has seen this and has any suggestions for a fix or hack&amp;#63; Was wondering about a DateTime.Now type timeout on the loop that would either throw an exception or similar&amp;#63; I do believe that the client or network is somehow causing the original problem, but I see this as a robustness issue with the server.&lt;br /&gt;&lt;br /&gt;I believe that I&amp;#39;ve seen a similar behavior on the MF version of my server as well, but am not sure.&lt;br /&gt;&lt;br /&gt;Again, thanks for the great work and thanks in advance for comments or advice.&lt;br /&gt;&lt;br /&gt;Don&lt;br /&gt;Comments: Resolved with changeset 59004.</description><author>interactive</author><pubDate>Mon, 08 Nov 2010 12:41:27 GMT</pubDate><guid isPermaLink="false">Closed Issue: HttpRequest.ReadSocket method spinning [4318] 20101108124127P</guid></item><item><title>Closed Issue: XBeeAddress64.Value returns incorrect value [6894]</title><link>http://mftoolkit.codeplex.com/workitem/6894</link><description>The get accessor for XBeeAddress64.Value is incorrect. My SH is 0x0013A200 and SL is 0x40318112. The returned value is 0x40452312, but it should be 0x0013A20040318112.&lt;br /&gt;&lt;br /&gt;Currently the accessor is implemented like this&amp;#58; get &amp;#123; return &amp;#40;ulong&amp;#41;&amp;#40;_msb &amp;#60;&amp;#60; 32&amp;#41; &amp;#43; _lsb&amp;#59; &amp;#125;&lt;br /&gt;&lt;br /&gt;But correct would be get &amp;#123; return &amp;#40;&amp;#40;ulong&amp;#41;_msb &amp;#60;&amp;#60; 32&amp;#41; &amp;#43; _lsb&amp;#59; &amp;#125;&lt;br /&gt;Comments: Resolved with changeset 59003.</description><author>interactive</author><pubDate>Mon, 08 Nov 2010 12:37:50 GMT</pubDate><guid isPermaLink="false">Closed Issue: XBeeAddress64.Value returns incorrect value [6894] 20101108123750P</guid></item><item><title>Commented Issue: changed OnPacketReceived to FrameReceived not in DLL?? [8201]</title><link>http://mftoolkit.codeplex.com/workitem/8201</link><description>I just started a new project using XBee. I am sending a message from a&lt;br /&gt;xbee connected to an arduino microcontroller to a xbee connected to my&lt;br /&gt;laptop.&lt;br /&gt;&lt;br /&gt;I am writing the laptop application in C&amp;#35;, and am using this library for it.&lt;br /&gt;I&amp;#39;ve allready established a connection succesfully. I&amp;#39;ve got an OnPacketReceived&lt;br /&gt;handler, but for every message that is send to the xbee connected to C&amp;#35; I&lt;br /&gt;get the following message in my Console&amp;#58;&lt;br /&gt;&amp;#34;Could not handle API message 129&amp;#34;&amp;#59;&lt;br /&gt;&lt;br /&gt;First of all I would like to know what this message means exactly &amp;#40;129&amp;#63;&amp;#63;&amp;#41;. I went&lt;br /&gt;to checkout the documentation &amp;#40;Source Code -&amp;#62; Browse&amp;#41;. There I found that the&lt;br /&gt;OnPacketReceived handler was changed to FrameReceived. When I check the&lt;br /&gt;dll I am using OnPacketReceived is still in there, and FrameReceived isn&amp;#39;t. How come&amp;#63;&lt;br /&gt;I&amp;#39;ve got the most recent dll I can download here.&lt;br /&gt;&lt;br /&gt;I hope someone can give me some usefull information.&lt;br /&gt;&lt;br /&gt;Greetings Ophoopfansegen&lt;br /&gt;Comments: ** Comment from web user: interactive ** &lt;p&gt;Hi velias,&lt;/p&gt;&lt;p&gt;could you please send me an example how you get the error message for API type 129&amp;#63;&lt;/p&gt;&lt;p&gt;Regards,&lt;br /&gt;Michael&lt;/p&gt;</description><author>interactive</author><pubDate>Mon, 08 Nov 2010 12:34:38 GMT</pubDate><guid isPermaLink="false">Commented Issue: changed OnPacketReceived to FrameReceived not in DLL?? [8201] 20101108123438P</guid></item><item><title>Closed Issue: XBEE "+++" to get into AT Command mode not working? [7436]</title><link>http://mftoolkit.codeplex.com/workitem/7436</link><description>It seems like it sends a 0x0d  after the &amp;#34;&amp;#43;&amp;#43;&amp;#43;&amp;#34; string to get into transparent mode and waits for an &amp;#34;OK&amp;#34; back.&lt;br /&gt;I&amp;#39;ve noticed, at least with the XBEE pro 802.15.14 OEM modules that I use, they don&amp;#39;t like the 0x0d after the &amp;#43;&amp;#43;&amp;#43; and will not return an OK.&lt;br /&gt;I can test this with hyperterminal by typing a &amp;#43;&amp;#43;&amp;#43; with carriage returns enabled so it gets the &amp;#34;&amp;#43;&amp;#43;&amp;#43;&amp;#34; 0x0d and no OK is sent back from my XBEE module.&lt;br /&gt;When I type a simple &amp;#34;&amp;#43;&amp;#43;&amp;#43;&amp;#34; and nothing else, it does return the OK&lt;br /&gt;&lt;br /&gt;I&amp;#39;m not sure if this is a issue with the XBEE module or it&amp;#39;s firmware revision or maybe it was worked that way with older XBEE firmware &amp;#40;I&amp;#39;m using 10E6&amp;#41;&lt;br /&gt;Has anyone else noticed this&amp;#63;&lt;br /&gt;Comments: &lt;p&gt;&lt;/p&gt;</description><author>interactive</author><pubDate>Sat, 06 Nov 2010 19:16:19 GMT</pubDate><guid isPermaLink="false">Closed Issue: XBEE "+++" to get into AT Command mode not working? [7436] 20101106071619P</guid></item><item><title>Commented Issue: XBEE "+++" to get into AT Command mode not working? [7436]</title><link>http://mftoolkit.codeplex.com/workitem/7436</link><description>It seems like it sends a 0x0d  after the &amp;#34;&amp;#43;&amp;#43;&amp;#43;&amp;#34; string to get into transparent mode and waits for an &amp;#34;OK&amp;#34; back.&lt;br /&gt;I&amp;#39;ve noticed, at least with the XBEE pro 802.15.14 OEM modules that I use, they don&amp;#39;t like the 0x0d after the &amp;#43;&amp;#43;&amp;#43; and will not return an OK.&lt;br /&gt;I can test this with hyperterminal by typing a &amp;#43;&amp;#43;&amp;#43; with carriage returns enabled so it gets the &amp;#34;&amp;#43;&amp;#43;&amp;#43;&amp;#34; 0x0d and no OK is sent back from my XBEE module.&lt;br /&gt;When I type a simple &amp;#34;&amp;#43;&amp;#43;&amp;#43;&amp;#34; and nothing else, it does return the OK&lt;br /&gt;&lt;br /&gt;I&amp;#39;m not sure if this is a issue with the XBEE module or it&amp;#39;s firmware revision or maybe it was worked that way with older XBEE firmware &amp;#40;I&amp;#39;m using 10E6&amp;#41;&lt;br /&gt;Has anyone else noticed this&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: interactive ** &lt;p&gt;New release published.&lt;/p&gt;</description><author>interactive</author><pubDate>Sat, 06 Nov 2010 19:16:04 GMT</pubDate><guid isPermaLink="false">Commented Issue: XBEE "+++" to get into AT Command mode not working? [7436] 20101106071604P</guid></item><item><title>Closed Issue: compil with .net 1.1 [8412]</title><link>http://mftoolkit.codeplex.com/workitem/8412</link><description>My aim is to compile Zigbee&amp;#39;s project to .Net 1.1.&lt;br /&gt;&lt;br /&gt;I use Visual Studio 2008 and modify it &amp;#40;http&amp;#58;&amp;#47;&amp;#47;devlicio.us&amp;#47;blogs&amp;#47;ziemowit_skowronski&amp;#47;archive&amp;#47;2008&amp;#47;08&amp;#47;22&amp;#47;working-with-net-1-1-in-visual-studio-2008-and-team-server.aspx&amp;#41;&lt;br /&gt;I obtain Xbee.dll but i used this dll&amp;#39;s  file it it a message indicate that it&amp;#39;s version 2.0.&lt;br /&gt;&lt;br /&gt;There are solution to compile Zigbee project to .net 1.1&lt;br /&gt;&lt;br /&gt;Thanks.&lt;br /&gt;Comments: &lt;p&gt;Will not be supported by author.&lt;/p&gt;</description><author>interactive</author><pubDate>Sat, 06 Nov 2010 19:07:46 GMT</pubDate><guid isPermaLink="false">Closed Issue: compil with .net 1.1 [8412] 20101106070746P</guid></item><item><title>Commented Issue: compil with .net 1.1 [8412]</title><link>http://mftoolkit.codeplex.com/workitem/8412</link><description>My aim is to compile Zigbee&amp;#39;s project to .Net 1.1.&lt;br /&gt;&lt;br /&gt;I use Visual Studio 2008 and modify it &amp;#40;http&amp;#58;&amp;#47;&amp;#47;devlicio.us&amp;#47;blogs&amp;#47;ziemowit_skowronski&amp;#47;archive&amp;#47;2008&amp;#47;08&amp;#47;22&amp;#47;working-with-net-1-1-in-visual-studio-2008-and-team-server.aspx&amp;#41;&lt;br /&gt;I obtain Xbee.dll but i used this dll&amp;#39;s  file it it a message indicate that it&amp;#39;s version 2.0.&lt;br /&gt;&lt;br /&gt;There are solution to compile Zigbee project to .net 1.1&lt;br /&gt;&lt;br /&gt;Thanks.&lt;br /&gt;Comments: ** Comment from web user: interactive ** &lt;p&gt;Well, you need to change some parts of the source code to get it running with older frameworks.&lt;/p&gt;&lt;p&gt;Michael&lt;/p&gt;</description><author>interactive</author><pubDate>Sat, 06 Nov 2010 19:07:12 GMT</pubDate><guid isPermaLink="false">Commented Issue: compil with .net 1.1 [8412] 20101106070712P</guid></item></channel></rss>