Skip to content

Commit e9af33b

Browse files
author
Brendan Whitfield
committed
updated GPL notice, added Peter Creath
1 parent 389374d commit e9af33b

14 files changed

Lines changed: 169 additions & 11 deletions

obd/OBDCommand.py

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,39 @@
11

2+
########################################################################
3+
# #
4+
# python-OBD: A python OBD-II serial module derived from pyobd #
5+
# #
6+
# Copyright 2004 Donour Sizemore (donour@uchicago.edu) #
7+
# Copyright 2009 Secons Ltd. (www.obdtester.com) #
8+
# Copyright 2009 Peter J. Creath #
9+
# Copyright 2015 Brendan Whitfield (bcw7044@rit.edu) #
10+
# #
11+
########################################################################
12+
# #
13+
# OBDCommand.py #
14+
# #
15+
# This file is part of python-OBD (a derivative of pyOBD) #
16+
# #
17+
# python-OBD is free software: you can redistribute it and/or modify #
18+
# it under the terms of the GNU General Public License as published by #
19+
# the Free Software Foundation, either version 2 of the License, or #
20+
# (at your option) any later version. #
21+
# #
22+
# python-OBD is distributed in the hope that it will be useful, #
23+
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
24+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
25+
# GNU General Public License for more details. #
26+
# #
27+
# You should have received a copy of the GNU General Public License #
28+
# along with python-OBD. If not, see <http://www.gnu.org/licenses/>. #
29+
# #
30+
########################################################################
31+
232
import re
333
from utils import *
434
from debug import debug
535

636

7-
837
class OBDCommand():
938
def __init__(self, name, desc, mode, pid, returnBytes, decoder, supported=False):
1039
self.name = name

obd/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# #
66
# Copyright 2004 Donour Sizemore (donour@uchicago.edu) #
77
# Copyright 2009 Secons Ltd. (www.obdtester.com) #
8-
# Copyright 2014 Brendan Whitfield (bcw7044@rit.edu) #
8+
# Copyright 2009 Peter J. Creath #
9+
# Copyright 2015 Brendan Whitfield (bcw7044@rit.edu) #
910
# #
1011
########################################################################
1112
# #

obd/async.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# #
66
# Copyright 2004 Donour Sizemore (donour@uchicago.edu) #
77
# Copyright 2009 Secons Ltd. (www.obdtester.com) #
8-
# Copyright 2014 Brendan Whitfield (bcw7044@rit.edu) #
8+
# Copyright 2009 Peter J. Creath #
9+
# Copyright 2015 Brendan Whitfield (bcw7044@rit.edu) #
910
# #
1011
########################################################################
1112
# #

obd/codes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# #
66
# Copyright 2004 Donour Sizemore (donour@uchicago.edu) #
77
# Copyright 2009 Secons Ltd. (www.obdtester.com) #
8-
# Copyright 2014 Brendan Whitfield (bcw7044@rit.edu) #
8+
# Copyright 2009 Peter J. Creath #
9+
# Copyright 2015 Brendan Whitfield (bcw7044@rit.edu) #
910
# #
1011
########################################################################
1112
# #

obd/commands.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# #
66
# Copyright 2004 Donour Sizemore (donour@uchicago.edu) #
77
# Copyright 2009 Secons Ltd. (www.obdtester.com) #
8-
# Copyright 2014 Brendan Whitfield (bcw7044@rit.edu) #
8+
# Copyright 2009 Peter J. Creath #
9+
# Copyright 2015 Brendan Whitfield (bcw7044@rit.edu) #
910
# #
1011
########################################################################
1112
# #

obd/debug.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# #
66
# Copyright 2004 Donour Sizemore (donour@uchicago.edu) #
77
# Copyright 2009 Secons Ltd. (www.obdtester.com) #
8-
# Copyright 2014 Brendan Whitfield (bcw7044@rit.edu) #
8+
# Copyright 2009 Peter J. Creath #
9+
# Copyright 2015 Brendan Whitfield (bcw7044@rit.edu) #
910
# #
1011
########################################################################
1112
# #

obd/decoders.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# #
66
# Copyright 2004 Donour Sizemore (donour@uchicago.edu) #
77
# Copyright 2009 Secons Ltd. (www.obdtester.com) #
8-
# Copyright 2014 Brendan Whitfield (bcw7044@rit.edu) #
8+
# Copyright 2009 Peter J. Creath #
9+
# Copyright 2015 Brendan Whitfield (bcw7044@rit.edu) #
910
# #
1011
########################################################################
1112
# #

obd/elm327.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# #
66
# Copyright 2004 Donour Sizemore (donour@uchicago.edu) #
77
# Copyright 2009 Secons Ltd. (www.obdtester.com) #
8-
# Copyright 2014 Brendan Whitfield (bcw7044@rit.edu) #
8+
# Copyright 2009 Peter J. Creath #
9+
# Copyright 2015 Brendan Whitfield (bcw7044@rit.edu) #
910
# #
1011
########################################################################
1112
# #

obd/obd.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# #
66
# Copyright 2004 Donour Sizemore (donour@uchicago.edu) #
77
# Copyright 2009 Secons Ltd. (www.obdtester.com) #
8-
# Copyright 2014 Brendan Whitfield (bcw7044@rit.edu) #
8+
# Copyright 2009 Peter J. Creath #
9+
# Copyright 2015 Brendan Whitfield (bcw7044@rit.edu) #
910
# #
1011
########################################################################
1112
# #

obd/protocols/__init__.py

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,34 @@
11

2+
########################################################################
3+
# #
4+
# python-OBD: A python OBD-II serial module derived from pyobd #
5+
# #
6+
# Copyright 2004 Donour Sizemore (donour@uchicago.edu) #
7+
# Copyright 2009 Secons Ltd. (www.obdtester.com) #
8+
# Copyright 2009 Peter J. Creath #
9+
# Copyright 2015 Brendan Whitfield (bcw7044@rit.edu) #
10+
# #
11+
########################################################################
12+
# #
13+
# protocols/__init__.py #
14+
# #
15+
# This file is part of python-OBD (a derivative of pyOBD) #
16+
# #
17+
# python-OBD is free software: you can redistribute it and/or modify #
18+
# it under the terms of the GNU General Public License as published by #
19+
# the Free Software Foundation, either version 2 of the License, or #
20+
# (at your option) any later version. #
21+
# #
22+
# python-OBD is distributed in the hope that it will be useful, #
23+
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
24+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
25+
# GNU General Public License for more details. #
26+
# #
27+
# You should have received a copy of the GNU General Public License #
28+
# along with python-OBD. If not, see <http://www.gnu.org/licenses/>. #
29+
# #
30+
########################################################################
31+
232
from protocol_legacy import SAE_J1850_PWM, \
333
SAE_J1850_VPW, \
434
ISO_9141_2, \

0 commit comments

Comments
 (0)