adeelahmedkhanabbasi / xbee-api

Automatically exported from code.google.com/p/xbee-api
GNU General Public License v3.0
0 stars 0 forks source link

New XBee Radio type #7

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Connect one of the new XBee PRO S2B radios
2. Run any of the test programs

What is the expected output? What do you see instead?
I expected: XBee radio is Series 2B Pro
I saw: Unknown radio type (HV): 30

What version of the product are you using? On what operating system?
Checkout from CVS 06-Jan-2011 / MacOS 10.6.5

Please provide any additional information below.
New XBeePRO S2B radios hardware version start with 0x1e

so I added another case statement to com.rapplogic.xbee.api.Xbee.java

                case 0x1e:
                    log.info("XBee radio is Series 2B Pro");
                    this.type = RadioType.SERIES2;
                    break;

Original issue reported on code.google.com by antin...@gmail.com on 7 Jan 2011 at 10:48

GoogleCodeExporter commented 8 years ago
This will go in next release.  Thanks

Original comment by andrew.rapp@gmail.com on 3 Apr 2011 at 1:56