Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #74 from cglewis/main
Browse files Browse the repository at this point in the history
release v0.5.0
  • Loading branch information
cglewis authored Jul 23, 2021
2 parents b93b9a8 + 114f614 commit 42ea6a0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v0.5.0 (2021-07-23)

* Fix incorrect handling of PRB and EARFCN options for Ettus and BladeRF
* Dynamically generate certs instead of using static ones in the repo

# v0.4.0 (2021-07-20)

* Implement adding IMSIs through the CLI
Expand Down
8 changes: 4 additions & 4 deletions blue/5G/daedalus/daedalus.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,16 +482,16 @@ def main(self, raw_args=None):
answers = self.execute_prompt(self.sdr_questions(sdr))
if 'prb' in answers:
if sdr == 'bladerf-enb':
self.limesdr_prb = str(answers['prb'])
self.bladerf_prb = str(answers['prb'])
if sdr == 'ettus-enb':
self.limesdr_prb = str(answers['prb'])
self.ettus_prb = str(answers['prb'])
if sdr == 'limesdr-enb':
self.limesdr_prb = str(answers['prb'])
if 'earfcn' in answers:
if sdr == 'bladerf-enb':
self.limesdr_earfcn = str(answers['earfcn'])
self.bladerf_earfcn = str(answers['earfcn'])
if sdr == 'ettus-enb':
self.limesdr_earfcn = str(answers['earfcn'])
self.ettus_earfcn = str(answers['earfcn'])
if sdr == 'limesdr-enb':
self.limesdr_earfcn = str(answers['earfcn'])
if 'imsis' in self.options:
Expand Down

0 comments on commit 42ea6a0

Please sign in to comment.