-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clarify license as being GPL v2.0 only
Remove instructions for applying license to new code.
- Loading branch information
Tim Bird
committed
Apr 23, 2015
1 parent
de29326
commit 6eb5d47
Showing
2 changed files
with
9 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,17 +2,21 @@ | |
# | ||
# grabserial - program to read a serial port and send the data to stdout | ||
# | ||
# Copyright 2006 Sony Corporation | ||
# Copyright 2006,2015 Sony Corporation | ||
# | ||
# This program is provided under the Gnu General Public License (GPL) | ||
# version 2 ONLY. | ||
# version 2 ONLY. This program is distributed WITHOUT ANY WARRANTY. | ||
# See the LICENSE file, which should have accompanied this program, | ||
# for the text of the license. | ||
# | ||
# 2006-09-07 by Tim Bird <[email protected]> | ||
# | ||
# To do: | ||
# * buffer output chars?? | ||
# | ||
# CHANGELOG: | ||
# 2015.04.23 - Version 1.8.1 - remove instructions for applying LICENSE text | ||
# to new files, and add no-warranty language to grabserial. | ||
# 2015.03.10 - Version 1.8.0 - add -o option for saving output to a file | ||
# add -T option for absolute times. Both contributed by ramaxlo | ||
# 2015.03.10 - Version 1.7.1 - add line feed to instantpat result line | ||
|
@@ -33,7 +37,7 @@ | |
|
||
MAJOR_VERSION=1 | ||
MINOR_VERSION=8 | ||
REVISION=0 | ||
REVISION=1 | ||
|
||
import os, sys | ||
import getopt | ||
|