Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ brping/definitions.py
brping/device.py
brping/ping1d.py
brping/ping360.py
brping/s500.py
brping/surveyor240.py
brping/omniscan450.py
doc/xml
Expand Down
1 change: 0 additions & 1 deletion brping/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
from brping.ping1d import Ping1D
from brping.ping360 import Ping360
from brping.surveyor240 import Surveyor240
from brping.s500 import S500
from brping.omniscan450 import Omniscan450
4 changes: 1 addition & 3 deletions brping/pingmessage.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
definitions.PING360_DEVICE_DATA,
definitions.PING360_AUTO_DEVICE_DATA,
definitions.SURVEYOR240_ATOF_POINT_DATA,
definitions.SURVEYOR240_YZ_POINT_DATA,
definitions.S500_PROFILE6_T,
definitions.OMNISCAN450_OS_MONO_PROFILE
]

Expand Down Expand Up @@ -284,7 +282,7 @@ def __repr__(self):

# A class to digest a serial stream and decode PingMessages
class PingParser(object):
# pre-declare instance variables for faster access and reduced memory overhead
# pre-declare instance variables for faster access and reduced memory overhead
__slots__ = (
"buf",
"state",
Expand Down
1 change: 0 additions & 1 deletion ci/deploy-whitelist
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ brping/device.py
brping/ping1d.py
brping/ping360.py
brping/surveyor240.py
brping/s500.py
brping/omniscan450.py
brping/pingmessage.py
examples
Expand Down
7 changes: 0 additions & 7 deletions generate/generate-python.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
"ping1d",
"ping360",
"surveyor240",
"s500",
"omniscan450"]

struct_token = {"u8": "B",
Expand Down Expand Up @@ -96,12 +95,6 @@
f.write(g.generate(definitionFile, templateFile, {"structToken": struct_token}))
f.close()

definitionFile = "%s/s500.json" % definitionPath
templateFile = "%s/s500.py.in" % templatePath
f = open("%s/s500.py" % args.output_directory, "w")
f.write(g.generate(definitionFile, templateFile, {"structToken": struct_token}))
f.close()

definitionFile = "%s/omniscan450.json" % definitionPath
templateFile = "%s/omniscan450.py.in" % templatePath
f = open("%s/omniscan450.py" % args.output_directory, "w")
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
],
scripts=[
"examples/simplePingExample.py",
"examples/s500Example.py",
"examples/omniscan450Example.py",
"examples/surveyor240Example.py",
"tools/pingproxy.py",
Expand Down