├── .gitignore ├── .gitmodules ├── Makefile └── src ├── boards └── feather_m4_express │ └── board.c ├── logic_capture.h ├── main.c ├── mcu └── microchip │ └── samd │ └── logic_capture.c ├── tusb_config.h └── usb_descriptors.c /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannewt/tinylogicfriend/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannewt/tinylogicfriend/HEAD/Makefile -------------------------------------------------------------------------------- /src/boards/feather_m4_express/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannewt/tinylogicfriend/HEAD/src/boards/feather_m4_express/board.c -------------------------------------------------------------------------------- /src/logic_capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannewt/tinylogicfriend/HEAD/src/logic_capture.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannewt/tinylogicfriend/HEAD/src/main.c -------------------------------------------------------------------------------- /src/mcu/microchip/samd/logic_capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannewt/tinylogicfriend/HEAD/src/mcu/microchip/samd/logic_capture.c -------------------------------------------------------------------------------- /src/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannewt/tinylogicfriend/HEAD/src/tusb_config.h -------------------------------------------------------------------------------- /src/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannewt/tinylogicfriend/HEAD/src/usb_descriptors.c --------------------------------------------------------------------------------