Skip to content

Commit

Permalink
Add support for Baicells BaiBS_RTSH firmware
Browse files Browse the repository at this point in the history
  • Loading branch information
gjalves committed Feb 24, 2020
1 parent a57d3a2 commit 46f833b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/readmes/lte/enodebd.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ debug the S1 interface between the enodeB and the AGW (filter for SCTP).
*Magma officially supports auto-configuration of the following devices:*
* Baicells Nova-243 Outdoor FDD/TDD eNodeB
- Firmware Version: BaiBS_RTS_3.1.6
- Firmware Version: BaiBS_RTSH_2.6.0.1
* Baicells mBS1100 LTE-TDD Base Station
- Firmware Version: BaiStation_V100R001C00B110SPC003
* Baicells Neutrino-244 ID FDD/TDD enodeB
Expand Down
2 changes: 2 additions & 0 deletions lte/gateway/python/magma/enodebd/devices/device_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ def get_device_name(
return EnodebDeviceName.BAICELLS
elif sw_version.startswith('BaiBS_RTS_'):
return EnodebDeviceName.BAICELLS_RTS
elif sw_version.startswith('BaiBS_RTSH_'):
return EnodebDeviceName.BAICELLS_RTS
else:
raise UnrecognizedEnodebError("Device %s unsupported: Software (%s)"
% (device_oui, sw_version))
Expand Down

0 comments on commit 46f833b

Please sign in to comment.