Skip to content

Commit 14a224b

Browse files
committed
Streamline licenses.
1 parent c872a6d commit 14a224b

File tree

5 files changed

+12
-110
lines changed

5 files changed

+12
-110
lines changed

examples/PacketSerialReverseEcho/PacketSerialReverseEcho.ino

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,8 @@
1-
// =============================================================================
21
//
3-
// Copyright (c) 2012-2016 Christopher Baker <http://christopherbaker.net>
2+
// Copyright (c) 2012 Christopher Baker <https://christopherbaker.net>
43
//
5-
// Permission is hereby granted, free of charge, to any person obtaining a copy
6-
// of this software and associated documentation files (the "Software"), to deal
7-
// in the Software without restriction, including without limitation the rights
8-
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
// copies of the Software, and to permit persons to whom the Software is
10-
// furnished to do so, subject to the following conditions:
4+
// SPDX-License-Identifier: MIT
115
//
12-
// The above copyright notice and this permission notice shall be included in
13-
// all copies or substantial portions of the Software.
14-
//
15-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21-
// THE SOFTWARE.
22-
//
23-
// =============================================================================
246

257

268
#include <PacketSerial.h>

examples/PacketSerialReverseEchoSLIP/PacketSerialReverseEchoSLIP.ino

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,8 @@
1-
// =============================================================================
21
//
3-
// Copyright (c) 2012-2016 Christopher Baker <http://christopherbaker.net>
2+
// Copyright (c) 2012 Christopher Baker <https://christopherbaker.net>
43
//
5-
// Permission is hereby granted, free of charge, to any person obtaining a copy
6-
// of this software and associated documentation files (the "Software"), to deal
7-
// in the Software without restriction, including without limitation the rights
8-
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
// copies of the Software, and to permit persons to whom the Software is
10-
// furnished to do so, subject to the following conditions:
4+
// SPDX-License-Identifier: MIT
115
//
12-
// The above copyright notice and this permission notice shall be included in
13-
// all copies or substantial portions of the Software.
14-
//
15-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21-
// THE SOFTWARE.
22-
//
23-
// =============================================================================
246

257

268
#include <PacketSerial.h>

src/Encoding/COBS.h

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,9 @@
1-
// =============================================================================
21
//
3-
// Copyright (c) 2010-2016 Christopher Baker <http://christopherbaker.net>
2+
// Copyright (c) 2011 Christopher Baker <https://christopherbaker.net>
3+
// Copyright (c) 2011 Jacques Fortier <https://github.com/jacquesf/COBS-Consistent-Overhead-Byte-Stuffing>
44
//
5-
// Portions:
6-
// Copyright (c) 2011, Jacques Fortier. All rights reserved.
7-
// https://github.com/jacquesf/COBS-Consistent-Overhead-Byte-Stuffing
5+
// SPDX-License-Identifier: MIT
86
//
9-
// Permission is hereby granted, free of charge, to any person obtaining a copy
10-
// of this software and associated documentation files (the "Software"), to deal
11-
// in the Software without restriction, including without limitation the rights
12-
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13-
// copies of the Software, and to permit persons to whom the Software is
14-
// furnished to do so, subject to the following conditions:
15-
//
16-
// The above copyright notice and this permission notice shall be included in
17-
// all copies or substantial portions of the Software.
18-
//
19-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20-
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21-
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22-
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23-
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24-
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25-
// THE SOFTWARE.
26-
//
27-
// =============================================================================
287

298

309
#pragma once

src/Encoding/SLIP.h

Lines changed: 3 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,9 @@
1-
// =============================================================================
21
//
3-
// Copyright (c) 2010-2016 Christopher Baker <http://christopherbaker.net>
4-
// 2016 Antoine Villeret added Christopher's ofx/IO/SLIPEncoding.h here
2+
// Copyright (c) 2010 Christopher Baker <https://christopherbaker.net>
3+
// Copyright (c) 2016 Antoine Villeret
54
//
6-
// see : https://github.com/bakercp/ofxIO/blob/master/libs/ofxIO/include/ofx/IO/SLIPEncoding.h
5+
// SPDX-License-Identifier: MIT
76
//
8-
// Portions:
9-
// Copyright (c) 2011, Jacques Fortier. All rights reserved.
10-
// https://github.com/jacquesf/COBS-Consistent-Overhead-Byte-Stuffing
11-
//
12-
// Permission is hereby granted, free of charge, to any person obtaining a copy
13-
// of this software and associated documentation files (the "Software"), to deal
14-
// in the Software without restriction, including without limitation the rights
15-
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16-
// copies of the Software, and to permit persons to whom the Software is
17-
// furnished to do so, subject to the following conditions:
18-
//
19-
// The above copyright notice and this permission notice shall be included in
20-
// all copies or substantial portions of the Software.
21-
//
22-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23-
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24-
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25-
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26-
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27-
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
28-
// THE SOFTWARE.
29-
//
30-
// =============================================================================
317

328

339
#pragma once

src/PacketSerial.h

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,8 @@
1-
// =============================================================================
2-
// Copyright (c) 2013-2016 Christopher Baker <http://christopherbaker.net>
31
//
4-
// Permission is hereby granted, free of charge, to any person obtaining a copy
5-
// of this software and associated documentation files (the "Software"), to deal
6-
// in the Software without restriction, including without limitation the rights
7-
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8-
// copies of the Software, and to permit persons to whom the Software is
9-
// furnished to do so, subject to the following conditions:
2+
// Copyright (c) 2013 Christopher Baker <https://christopherbaker.net>
103
//
11-
// The above copyright notice and this permission notice shall be included in
12-
// all copies or substantial portions of the Software.
4+
// SPDX-License-Identifier: MIT
135
//
14-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15-
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16-
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17-
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18-
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19-
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20-
// THE SOFTWARE.
21-
//
22-
// =============================================================================
236

247

258
#pragma once

0 commit comments

Comments
 (0)