├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── firmware ├── Makefile ├── macros.inc ├── main.asm ├── p18lf47k42.inc └── sub-utilities.inc ├── images ├── analogStickPinoutDiagram.png ├── wavedrom-negative.json ├── wavedrom-xaxb-negative.svg └── wavedrom-xaxb-positive.svg └── pinout.xlsx /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/README.md -------------------------------------------------------------------------------- /firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/firmware/Makefile -------------------------------------------------------------------------------- /firmware/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/firmware/macros.inc -------------------------------------------------------------------------------- /firmware/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/firmware/main.asm -------------------------------------------------------------------------------- /firmware/p18lf47k42.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/firmware/p18lf47k42.inc -------------------------------------------------------------------------------- /firmware/sub-utilities.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/firmware/sub-utilities.inc -------------------------------------------------------------------------------- /images/analogStickPinoutDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/images/analogStickPinoutDiagram.png -------------------------------------------------------------------------------- /images/wavedrom-negative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/images/wavedrom-negative.json -------------------------------------------------------------------------------- /images/wavedrom-xaxb-negative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/images/wavedrom-xaxb-negative.svg -------------------------------------------------------------------------------- /images/wavedrom-xaxb-positive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/images/wavedrom-xaxb-positive.svg -------------------------------------------------------------------------------- /pinout.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbass1997/PIC-CNT64/HEAD/pinout.xlsx --------------------------------------------------------------------------------