├── .gitignore ├── BuildAndRun.bat ├── LICENSE ├── README.md ├── application.fam ├── badbt.c ├── badbt.h └── badbt_icon.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | build.log 3 | -------------------------------------------------------------------------------- /BuildAndRun.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGO061/BadBT/HEAD/BuildAndRun.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGO061/BadBT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGO061/BadBT/HEAD/README.md -------------------------------------------------------------------------------- /application.fam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGO061/BadBT/HEAD/application.fam -------------------------------------------------------------------------------- /badbt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGO061/BadBT/HEAD/badbt.c -------------------------------------------------------------------------------- /badbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGO061/BadBT/HEAD/badbt.h -------------------------------------------------------------------------------- /badbt_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGO061/BadBT/HEAD/badbt_icon.png --------------------------------------------------------------------------------