├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── CI.yml ├── Linux ├── Log-ActiveDmesg.sh ├── Log-All.sh ├── Log-ball.sh ├── Log-dmesg.sh ├── Log-error.sh ├── Log-kmsg.sh ├── Log-ril.sh └── adb ├── README.md ├── Windows ├── ADB_Keys.bat ├── AdbWinApi.dll ├── AdbWinUsbApi.dll ├── Log-ActiveDmesg.bat ├── Log-All.bat ├── Log-ball.bat ├── Log-dmesg.bat ├── Log-error.bat ├── Log-kmsg.bat ├── Log-ril.bat ├── UniversalAdbDriverSetup.msi └── adb.exe └── macOS ├── Log-ActiveDmesg.command ├── Log-All.command ├── Log-ball.command ├── Log-dmesg.command ├── Log-error.command ├── Log-kmsg.command ├── Log-ril.command └── adb /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /Linux/Log-ActiveDmesg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Linux/Log-ActiveDmesg.sh -------------------------------------------------------------------------------- /Linux/Log-All.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Linux/Log-All.sh -------------------------------------------------------------------------------- /Linux/Log-ball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Linux/Log-ball.sh -------------------------------------------------------------------------------- /Linux/Log-dmesg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Linux/Log-dmesg.sh -------------------------------------------------------------------------------- /Linux/Log-error.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Linux/Log-error.sh -------------------------------------------------------------------------------- /Linux/Log-kmsg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Linux/Log-kmsg.sh -------------------------------------------------------------------------------- /Linux/Log-ril.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Linux/Log-ril.sh -------------------------------------------------------------------------------- /Linux/adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Linux/adb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/README.md -------------------------------------------------------------------------------- /Windows/ADB_Keys.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Windows/ADB_Keys.bat -------------------------------------------------------------------------------- /Windows/AdbWinApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Windows/AdbWinApi.dll -------------------------------------------------------------------------------- /Windows/AdbWinUsbApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Windows/AdbWinUsbApi.dll -------------------------------------------------------------------------------- /Windows/Log-ActiveDmesg.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Windows/Log-ActiveDmesg.bat -------------------------------------------------------------------------------- /Windows/Log-All.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Windows/Log-All.bat -------------------------------------------------------------------------------- /Windows/Log-ball.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Windows/Log-ball.bat -------------------------------------------------------------------------------- /Windows/Log-dmesg.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Windows/Log-dmesg.bat -------------------------------------------------------------------------------- /Windows/Log-error.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Windows/Log-error.bat -------------------------------------------------------------------------------- /Windows/Log-kmsg.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Windows/Log-kmsg.bat -------------------------------------------------------------------------------- /Windows/Log-ril.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Windows/Log-ril.bat -------------------------------------------------------------------------------- /Windows/UniversalAdbDriverSetup.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Windows/UniversalAdbDriverSetup.msi -------------------------------------------------------------------------------- /Windows/adb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/Windows/adb.exe -------------------------------------------------------------------------------- /macOS/Log-ActiveDmesg.command: -------------------------------------------------------------------------------- 1 | cd "${0%/*}" 2 | while : 3 | do 4 | ./adb shell dmesg >> activedmsg.log 5 | sleep 3 6 | done 7 | -------------------------------------------------------------------------------- /macOS/Log-All.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/macOS/Log-All.command -------------------------------------------------------------------------------- /macOS/Log-ball.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/macOS/Log-ball.command -------------------------------------------------------------------------------- /macOS/Log-dmesg.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/macOS/Log-dmesg.command -------------------------------------------------------------------------------- /macOS/Log-error.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/macOS/Log-error.command -------------------------------------------------------------------------------- /macOS/Log-kmsg.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/macOS/Log-kmsg.command -------------------------------------------------------------------------------- /macOS/Log-ril.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/macOS/Log-ril.command -------------------------------------------------------------------------------- /macOS/adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ananjaser1211/FloydQ_Reports/HEAD/macOS/adb --------------------------------------------------------------------------------