├── .clang-format ├── .github └── workflows │ ├── build-payload.yml │ └── push-custom-ap.yml ├── .gitignore ├── README.md ├── payload-proper └── bk7231-proper-v1 │ ├── dump.c │ ├── dump.h │ ├── dump_arm.c │ ├── dump_cmd.c │ ├── dump_search.c │ └── dump_util.c ├── payload-stager ├── bk7231n-stager-v1.s └── bk7231t-stager-v1.s └── platformio-custom-ap ├── .clang-format ├── .gitignore ├── include └── customap.h ├── platformio.ini └── src └── customap.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build-payload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/.github/workflows/build-payload.yml -------------------------------------------------------------------------------- /.github/workflows/push-custom-ap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/.github/workflows/push-custom-ap.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/README.md -------------------------------------------------------------------------------- /payload-proper/bk7231-proper-v1/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/payload-proper/bk7231-proper-v1/dump.c -------------------------------------------------------------------------------- /payload-proper/bk7231-proper-v1/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/payload-proper/bk7231-proper-v1/dump.h -------------------------------------------------------------------------------- /payload-proper/bk7231-proper-v1/dump_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/payload-proper/bk7231-proper-v1/dump_arm.c -------------------------------------------------------------------------------- /payload-proper/bk7231-proper-v1/dump_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/payload-proper/bk7231-proper-v1/dump_cmd.c -------------------------------------------------------------------------------- /payload-proper/bk7231-proper-v1/dump_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/payload-proper/bk7231-proper-v1/dump_search.c -------------------------------------------------------------------------------- /payload-proper/bk7231-proper-v1/dump_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/payload-proper/bk7231-proper-v1/dump_util.c -------------------------------------------------------------------------------- /payload-stager/bk7231n-stager-v1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/payload-stager/bk7231n-stager-v1.s -------------------------------------------------------------------------------- /payload-stager/bk7231t-stager-v1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/payload-stager/bk7231t-stager-v1.s -------------------------------------------------------------------------------- /platformio-custom-ap/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/platformio-custom-ap/.clang-format -------------------------------------------------------------------------------- /platformio-custom-ap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/platformio-custom-ap/.gitignore -------------------------------------------------------------------------------- /platformio-custom-ap/include/customap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/platformio-custom-ap/include/customap.h -------------------------------------------------------------------------------- /platformio-custom-ap/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/platformio-custom-ap/platformio.ini -------------------------------------------------------------------------------- /platformio-custom-ap/src/customap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuya-cloudcutter/lightleak/HEAD/platformio-custom-ap/src/customap.cpp --------------------------------------------------------------------------------