├── .gitignore ├── LICENSE ├── LSerialPort ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── redrackham │ │ └── lserialport │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── LSerialPortDataListener.cpp │ │ ├── LSerialPortManager.cpp │ │ ├── ReadWorker.cpp │ │ ├── ReadWriteWorker.cpp │ │ ├── SerialPort.cpp │ │ ├── SyncReadWriteWorker.cpp │ │ ├── WriteWorker.cpp │ │ ├── include │ │ │ ├── Android │ │ │ │ └── AndroidLog.h │ │ │ ├── CppLinuxSerial │ │ │ │ ├── Exception.h │ │ │ │ └── SerialPort.h │ │ │ └── LSerialPort │ │ │ │ ├── Convert.h │ │ │ │ ├── IWorker.h │ │ │ │ ├── LSerialPortDataListener.h │ │ │ │ ├── LSerialPortManager.h │ │ │ │ ├── ReadWorker.h │ │ │ │ ├── ReadWriteWorker.h │ │ │ │ ├── SyncReadWriteWorker.h │ │ │ │ └── WriteWorker.h │ │ └── lserialport.cpp │ └── java │ │ └── com │ │ └── redrackham │ │ ├── LSerialPortDataListener.java │ │ ├── LSerialPortJNI.kt │ │ ├── LSerialPortParam.kt │ │ └── client │ │ ├── BaseSerialPortClient.kt │ │ ├── LSerialPortClient.kt │ │ └── LSerialPortSyncClient.kt │ └── test │ └── java │ └── com │ └── redrackham │ └── lserialport │ └── ExampleUnitTest.kt ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── lxy │ │ └── lserialport │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── lxy │ │ │ └── lserialport │ │ │ ├── HexExt.kt │ │ │ ├── HexUtils.java │ │ │ ├── LogTextView.kt │ │ │ ├── MainActivity.kt │ │ │ ├── SerialPortFinder.java │ │ │ └── guide │ │ │ ├── LSerialPortClientExample.kt │ │ │ └── LSerialPortSyncClientExample.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-anydpi-v33 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── lxy │ └── lserialport │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LICENSE -------------------------------------------------------------------------------- /LSerialPort/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/.gitignore -------------------------------------------------------------------------------- /LSerialPort/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/build.gradle -------------------------------------------------------------------------------- /LSerialPort/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LSerialPort/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/proguard-rules.pro -------------------------------------------------------------------------------- /LSerialPort/src/androidTest/java/com/redrackham/lserialport/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/androidTest/java/com/redrackham/lserialport/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /LSerialPort/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/LSerialPortDataListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/LSerialPortDataListener.cpp -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/LSerialPortManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/LSerialPortManager.cpp -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/ReadWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/ReadWorker.cpp -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/ReadWriteWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/ReadWriteWorker.cpp -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/SerialPort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/SerialPort.cpp -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/SyncReadWriteWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/SyncReadWriteWorker.cpp -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/WriteWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/WriteWorker.cpp -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/include/Android/AndroidLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/include/Android/AndroidLog.h -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/include/CppLinuxSerial/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/include/CppLinuxSerial/Exception.h -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/include/CppLinuxSerial/SerialPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/include/CppLinuxSerial/SerialPort.h -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/include/LSerialPort/Convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/include/LSerialPort/Convert.h -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/include/LSerialPort/IWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/include/LSerialPort/IWorker.h -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/include/LSerialPort/LSerialPortDataListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/include/LSerialPort/LSerialPortDataListener.h -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/include/LSerialPort/LSerialPortManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/include/LSerialPort/LSerialPortManager.h -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/include/LSerialPort/ReadWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/include/LSerialPort/ReadWorker.h -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/include/LSerialPort/ReadWriteWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/include/LSerialPort/ReadWriteWorker.h -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/include/LSerialPort/SyncReadWriteWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/include/LSerialPort/SyncReadWriteWorker.h -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/include/LSerialPort/WriteWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/include/LSerialPort/WriteWorker.h -------------------------------------------------------------------------------- /LSerialPort/src/main/cpp/lserialport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/cpp/lserialport.cpp -------------------------------------------------------------------------------- /LSerialPort/src/main/java/com/redrackham/LSerialPortDataListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/java/com/redrackham/LSerialPortDataListener.java -------------------------------------------------------------------------------- /LSerialPort/src/main/java/com/redrackham/LSerialPortJNI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/java/com/redrackham/LSerialPortJNI.kt -------------------------------------------------------------------------------- /LSerialPort/src/main/java/com/redrackham/LSerialPortParam.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/java/com/redrackham/LSerialPortParam.kt -------------------------------------------------------------------------------- /LSerialPort/src/main/java/com/redrackham/client/BaseSerialPortClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/java/com/redrackham/client/BaseSerialPortClient.kt -------------------------------------------------------------------------------- /LSerialPort/src/main/java/com/redrackham/client/LSerialPortClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/java/com/redrackham/client/LSerialPortClient.kt -------------------------------------------------------------------------------- /LSerialPort/src/main/java/com/redrackham/client/LSerialPortSyncClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/main/java/com/redrackham/client/LSerialPortSyncClient.kt -------------------------------------------------------------------------------- /LSerialPort/src/test/java/com/redrackham/lserialport/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/LSerialPort/src/test/java/com/redrackham/lserialport/ExampleUnitTest.kt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/lxy/lserialport/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/androidTest/java/com/lxy/lserialport/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/lxy/lserialport/HexExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/java/com/lxy/lserialport/HexExt.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lxy/lserialport/HexUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/java/com/lxy/lserialport/HexUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/lxy/lserialport/LogTextView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/java/com/lxy/lserialport/LogTextView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lxy/lserialport/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/java/com/lxy/lserialport/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lxy/lserialport/SerialPortFinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/java/com/lxy/lserialport/SerialPortFinder.java -------------------------------------------------------------------------------- /app/src/main/java/com/lxy/lserialport/guide/LSerialPortClientExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/java/com/lxy/lserialport/guide/LSerialPortClientExample.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lxy/lserialport/guide/LSerialPortSyncClientExample.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/java/com/lxy/lserialport/guide/LSerialPortSyncClientExample.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v33/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/mipmap-anydpi-v33/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/lxy/lserialport/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/app/src/test/java/com/lxy/lserialport/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedRackham-R/LSerialPort/HEAD/settings.gradle --------------------------------------------------------------------------------