Skip to content

Commit

Permalink
Merge pull request #56 from VIP-LES/55-eoslib-bump
Browse files Browse the repository at this point in the history
did changes requested
  • Loading branch information
David-Rey authored Apr 14, 2023
2 parents 69d995a + c9c1fdf commit 75b33e8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions EosLib/packet/definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ class HeaderPreamble(IntEnum):
V010DATA = 2
V020DATA = 3
V030DATA = 4
TRANSMIT = 6
V201TRANSMIT = 6
V020TRANSMIT = 1
TRANSMIT = 7
DATA = 5


old_data_headers = [HeaderPreamble.V010DATA, HeaderPreamble.V020DATA, HeaderPreamble.V030DATA]
old_transmit_headers = [HeaderPreamble.V020TRANSMIT]
old_transmit_headers = [HeaderPreamble.V020TRANSMIT, HeaderPreamble.V201TRANSMIT]
2 changes: 1 addition & 1 deletion EosLib/packet/transmit_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class TransmitHeader:

transmit_header_struct_format_string = "!" \
"B" \
"b" \
"B" \
"B" \
"d"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages

setup(name='EosLib',
version='2.0.1',
version='3.0.0',
description='Library of shared code between EosPayload and EosGround',
author='Lightning From The Edge of Space',
author_email='[email protected]',
Expand Down

0 comments on commit 75b33e8

Please sign in to comment.