├── .gitmodules ├── LICENSE ├── README.md ├── doc ├── dump_bootloader.txt ├── notes_hid.md ├── notes_hw.md ├── notes_pd.md └── read_log.txt ├── firmware ├── .gitignore ├── Makefile ├── gd32f1x0_libopt.h ├── led.c ├── led.h ├── lib │ └── .gitignore ├── linker.ld ├── log.c ├── log.h ├── main.c ├── pd.c └── pd.h └── tools ├── .gitignore ├── flash.py ├── fw_pad.py ├── pdc002.py ├── pdc_hid_dissector.lua └── shell.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/README.md -------------------------------------------------------------------------------- /doc/dump_bootloader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/doc/dump_bootloader.txt -------------------------------------------------------------------------------- /doc/notes_hid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/doc/notes_hid.md -------------------------------------------------------------------------------- /doc/notes_hw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/doc/notes_hw.md -------------------------------------------------------------------------------- /doc/notes_pd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/doc/notes_pd.md -------------------------------------------------------------------------------- /doc/read_log.txt: -------------------------------------------------------------------------------- 1 | r 0800f400 1024 log 2 | exit 3 | -------------------------------------------------------------------------------- /firmware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/firmware/.gitignore -------------------------------------------------------------------------------- /firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/firmware/Makefile -------------------------------------------------------------------------------- /firmware/gd32f1x0_libopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/firmware/gd32f1x0_libopt.h -------------------------------------------------------------------------------- /firmware/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/firmware/led.c -------------------------------------------------------------------------------- /firmware/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/firmware/led.h -------------------------------------------------------------------------------- /firmware/lib/.gitignore: -------------------------------------------------------------------------------- 1 | GD32F1x0_Firmware_Library_v3.1.0/ 2 | -------------------------------------------------------------------------------- /firmware/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/firmware/linker.ld -------------------------------------------------------------------------------- /firmware/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/firmware/log.c -------------------------------------------------------------------------------- /firmware/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/firmware/log.h -------------------------------------------------------------------------------- /firmware/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/firmware/main.c -------------------------------------------------------------------------------- /firmware/pd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/firmware/pd.c -------------------------------------------------------------------------------- /firmware/pd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/firmware/pd.h -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/tools/.gitignore -------------------------------------------------------------------------------- /tools/flash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/tools/flash.py -------------------------------------------------------------------------------- /tools/fw_pad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/tools/fw_pad.py -------------------------------------------------------------------------------- /tools/pdc002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/tools/pdc002.py -------------------------------------------------------------------------------- /tools/pdc_hid_dissector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/tools/pdc_hid_dissector.lua -------------------------------------------------------------------------------- /tools/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the6p4c/peadee/HEAD/tools/shell.py --------------------------------------------------------------------------------