Skip to content

Commit

Permalink
framer handler is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ufukygmr committed Apr 13, 2022
1 parent fc0905b commit 281e5e0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion adhoccomputing/FrameHandlerBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self, header, payload):

class FrameHandlerBase(GenericModel):

def __init__(self,componentname, componentinstancenumber):
def __init__(self,componentname, componentinstancenumber, framers):
super().__init__(componentname, componentinstancenumber)

self.chan = 0
Expand Down
3 changes: 2 additions & 1 deletion adhoccomputing/UsrpB210OfdmFlexFramePhy.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,5 +114,6 @@ def configure(self):
# Because of this reason will use userdata to get access back to the framer object

def __init__(self, componentname, componentinstancenumber):
super().__init__(componentname, componentinstancenumber)
self.framers = framers
super().__init__(componentname, componentinstancenumber, framers)

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
setup(
# TODO: Fix the configs in this part
name='adhoccomputing',
version='2.0.11',
version='2.0.12',
description="Ad Hoc Computing Library",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 281e5e0

Please sign in to comment.