Skip to content

Commit 158734e

Browse files
committed
Moved from LGPL to MIT
1 parent 234b7c4 commit 158734e

26 files changed

Lines changed: 31 additions & 835 deletions

LICENSE.txt

Lines changed: 22 additions & 456 deletions
Large diffs are not rendered by default.

UsbSerialExampleApp/MainActivity.cs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,4 @@
11
/* Copyright 2017 Tyler Technologies Inc.
2-
*
3-
* This library is free software; you can redistribute it and/or
4-
* modify it under the terms of the GNU Lesser General Public
5-
* License as published by the Free Software Foundation; either
6-
* version 2.1 of the License, or (at your option) any later version.
7-
*
8-
* This library is distributed in the hope that it will be useful,
9-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11-
* Lesser General Public License for more details.
12-
*
13-
* You should have received a copy of the GNU Lesser General Public
14-
* License along with this library; if not, write to the Free Software
15-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
16-
* USA.
172
*
183
* Project home page: https://github.com/anotherlab/xamarin-usb-serial-for-android
194
* Portions of this library are based on usb-serial-for-android (https://github.com/mik3y/usb-serial-for-android).

UsbSerialExampleApp/SerialConsoleActivity.cs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,4 @@
11
/* Copyright 2017 Tyler Technologies Inc.
2-
*
3-
* This library is free software; you can redistribute it and/or
4-
* modify it under the terms of the GNU Lesser General Public
5-
* License as published by the Free Software Foundation; either
6-
* version 2.1 of the License, or (at your option) any later version.
7-
*
8-
* This library is distributed in the hope that it will be useful,
9-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11-
* Lesser General Public License for more details.
12-
*
13-
* You should have received a copy of the GNU Lesser General Public
14-
* License along with this library; if not, write to the Free Software
15-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
16-
* USA.
172
*
183
* Project home page: https://github.com/anotherlab/xamarin-usb-serial-for-android
194
* Portions of this library are based on usb-serial-for-android (https://github.com/mik3y/usb-serial-for-android).

UsbSerialForAndroid/Extensions/AsyncExtensions.cs

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,10 @@
11
/* Copyright 2017 Tyler Technologies Inc.
2-
*
3-
* This library is free software; you can redistribute it and/or
4-
* modify it under the terms of the GNU Lesser General Public
5-
* License as published by the Free Software Foundation; either
6-
* version 2.1 of the License, or (at your option) any later version.
7-
*
8-
* This library is distributed in the hope that it will be useful,
9-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11-
* Lesser General Public License for more details.
12-
*
13-
* You should have received a copy of the GNU Lesser General Public
14-
* License along with this library; if not, write to the Free Software
15-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
16-
* USA.
172
*
183
* Project home page: https://github.com/anotherlab/xamarin-usb-serial-for-android
194
* Portions of this library are based on usb-serial-for-android (https://github.com/mik3y/usb-serial-for-android).
205
* Portions of this library are based on Xamarin USB Serial for Android (https://bitbucket.org/lusovu/xamarinusbserial).
216
*/
7+
228
using System.Collections.Generic;
239
using System.Threading.Tasks;
2410
using Android.Hardware.Usb;

UsbSerialForAndroid/Extensions/BufferExtensions.cs

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,10 @@
11
/* Copyright 2017 Tyler Technologies Inc.
2-
*
3-
* This library is free software; you can redistribute it and/or
4-
* modify it under the terms of the GNU Lesser General Public
5-
* License as published by the Free Software Foundation; either
6-
* version 2.1 of the License, or (at your option) any later version.
7-
*
8-
* This library is distributed in the hope that it will be useful,
9-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11-
* Lesser General Public License for more details.
12-
*
13-
* You should have received a copy of the GNU Lesser General Public
14-
* License along with this library; if not, write to the Free Software
15-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
16-
* USA.
172
*
183
* Project home page: https://github.com/anotherlab/xamarin-usb-serial-for-android
194
* Portions of this library are based on usb-serial-for-android (https://github.com/mik3y/usb-serial-for-android).
205
* Portions of this library are based on Xamarin USB Serial for Android (https://bitbucket.org/lusovu/xamarinusbserial).
216
*/
7+
228
using System;
239

2410
using Android.Runtime;

UsbSerialForAndroid/Extensions/EventHandlerExtensions.cs

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,10 @@
11
/* Copyright 2017 Tyler Technologies Inc.
2-
*
3-
* This library is free software; you can redistribute it and/or
4-
* modify it under the terms of the GNU Lesser General Public
5-
* License as published by the Free Software Foundation; either
6-
* version 2.1 of the License, or (at your option) any later version.
7-
*
8-
* This library is distributed in the hope that it will be useful,
9-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11-
* Lesser General Public License for more details.
12-
*
13-
* You should have received a copy of the GNU Lesser General Public
14-
* License along with this library; if not, write to the Free Software
15-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
16-
* USA.
172
*
183
* Project home page: https://github.com/anotherlab/xamarin-usb-serial-for-android
194
* Portions of this library are based on usb-serial-for-android (https://github.com/mik3y/usb-serial-for-android).
205
* Portions of this library are based on Xamarin USB Serial for Android (https://bitbucket.org/lusovu/xamarinusbserial).
216
*/
7+
228
using System;
239
using System.Threading;
2410

UsbSerialForAndroid/Extensions/SerialDataReceivedArgs.cs

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,10 @@
11
/* Copyright 2017 Tyler Technologies Inc.
2-
*
3-
* This library is free software; you can redistribute it and/or
4-
* modify it under the terms of the GNU Lesser General Public
5-
* License as published by the Free Software Foundation; either
6-
* version 2.1 of the License, or (at your option) any later version.
7-
*
8-
* This library is distributed in the hope that it will be useful,
9-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11-
* Lesser General Public License for more details.
12-
*
13-
* You should have received a copy of the GNU Lesser General Public
14-
* License along with this library; if not, write to the Free Software
15-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
16-
* USA.
172
*
183
* Project home page: https://github.com/anotherlab/xamarin-usb-serial-for-android
194
* Portions of this library are based on usb-serial-for-android (https://github.com/mik3y/usb-serial-for-android).
205
* Portions of this library are based on Xamarin USB Serial for Android (https://bitbucket.org/lusovu/xamarinusbserial).
216
*/
7+
228
using System;
239

2410
namespace Hoho.Android.UsbSerial.Extensions

UsbSerialForAndroid/Extensions/SerialInputOutputManager.cs

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,10 @@
11
/* Copyright 2017 Tyler Technologies Inc.
2-
*
3-
* This library is free software; you can redistribute it and/or
4-
* modify it under the terms of the GNU Lesser General Public
5-
* License as published by the Free Software Foundation; either
6-
* version 2.1 of the License, or (at your option) any later version.
7-
*
8-
* This library is distributed in the hope that it will be useful,
9-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11-
* Lesser General Public License for more details.
12-
*
13-
* You should have received a copy of the GNU Lesser General Public
14-
* License along with this library; if not, write to the Free Software
15-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
16-
* USA.
172
*
183
* Project home page: https://github.com/anotherlab/xamarin-usb-serial-for-android
194
* Portions of this library are based on usb-serial-for-android (https://github.com/mik3y/usb-serial-for-android).
205
* Portions of this library are based on Xamarin USB Serial for Android (https://bitbucket.org/lusovu/xamarinusbserial).
216
*/
7+
228
using System;
239
using System.Threading;
2410
using Android.Hardware.Usb;

UsbSerialForAndroid/Extensions/UsbManagerExtensions.cs

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,10 @@
11
/* Copyright 2017 Tyler Technologies Inc.
2-
*
3-
* This library is free software; you can redistribute it and/or
4-
* modify it under the terms of the GNU Lesser General Public
5-
* License as published by the Free Software Foundation; either
6-
* version 2.1 of the License, or (at your option) any later version.
7-
*
8-
* This library is distributed in the hope that it will be useful,
9-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11-
* Lesser General Public License for more details.
12-
*
13-
* You should have received a copy of the GNU Lesser General Public
14-
* License along with this library; if not, write to the Free Software
15-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
16-
* USA.
172
*
183
* Project home page: https://github.com/anotherlab/xamarin-usb-serial-for-android
194
* Portions of this library are based on usb-serial-for-android (https://github.com/mik3y/usb-serial-for-android).
205
* Portions of this library are based on Xamarin USB Serial for Android (https://bitbucket.org/lusovu/xamarinusbserial).
216
*/
7+
228
using System;
239
using System.Threading.Tasks;
2410
using Android.Hardware.Usb;

UsbSerialForAndroid/Extensions/UsbSerialPortInfo.cs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,4 @@
11
/* Copyright 2017 Tyler Technologies Inc.
2-
*
3-
* This library is free software; you can redistribute it and/or
4-
* modify it under the terms of the GNU Lesser General Public
5-
* License as published by the Free Software Foundation; either
6-
* version 2.1 of the License, or (at your option) any later version.
7-
*
8-
* This library is distributed in the hope that it will be useful,
9-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11-
* Lesser General Public License for more details.
12-
*
13-
* You should have received a copy of the GNU Lesser General Public
14-
* License along with this library; if not, write to the Free Software
15-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
16-
* USA.
172
*
183
* Project home page: https://github.com/anotherlab/xamarin-usb-serial-for-android
194
* Portions of this library are based on usb-serial-for-android (https://github.com/mik3y/usb-serial-for-android).

0 commit comments

Comments
 (0)