├── Board └── LEDs.h ├── Descriptors.c ├── Descriptors.h ├── Makefile ├── Serial.h ├── USB-Drivers ├── Attributes.h ├── Board-LEDs.h ├── BoardTypes.h ├── Common-CDC.h ├── Common-Common.h ├── ConfigDescriptor.c ├── ConfigDescriptor.h ├── Device.c ├── Device.h ├── DeviceStandardReq.c ├── DeviceStandardReq.h ├── Endpoint.c ├── Endpoint.h ├── Events.c ├── Events.h ├── SimpleCDC.c ├── SimpleCDC.h ├── StdDescriptors.h ├── StdRequestType.h ├── StreamCallbacks.h ├── Template │ ├── Template_Endpoint_Control_R.c │ ├── Template_Endpoint_Control_W.c │ └── Template_Endpoint_RW.c ├── USB.h ├── USBController.c ├── USBController.h ├── USBInterrupt.c ├── USBInterrupt.h ├── USBMode.h ├── USBTask.c └── USBTask.h ├── debug_tx.S ├── debug_tx.h ├── fast-usbserial.c ├── fast-usbserial.h ├── fast-usbserial.hex └── readme.txt /Board/LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/Board/LEDs.h -------------------------------------------------------------------------------- /Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/Descriptors.c -------------------------------------------------------------------------------- /Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/Descriptors.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/Makefile -------------------------------------------------------------------------------- /Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/Serial.h -------------------------------------------------------------------------------- /USB-Drivers/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/Attributes.h -------------------------------------------------------------------------------- /USB-Drivers/Board-LEDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/Board-LEDs.h -------------------------------------------------------------------------------- /USB-Drivers/BoardTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/BoardTypes.h -------------------------------------------------------------------------------- /USB-Drivers/Common-CDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/Common-CDC.h -------------------------------------------------------------------------------- /USB-Drivers/Common-Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/Common-Common.h -------------------------------------------------------------------------------- /USB-Drivers/ConfigDescriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/ConfigDescriptor.c -------------------------------------------------------------------------------- /USB-Drivers/ConfigDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/ConfigDescriptor.h -------------------------------------------------------------------------------- /USB-Drivers/Device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/Device.c -------------------------------------------------------------------------------- /USB-Drivers/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/Device.h -------------------------------------------------------------------------------- /USB-Drivers/DeviceStandardReq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/DeviceStandardReq.c -------------------------------------------------------------------------------- /USB-Drivers/DeviceStandardReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/DeviceStandardReq.h -------------------------------------------------------------------------------- /USB-Drivers/Endpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/Endpoint.c -------------------------------------------------------------------------------- /USB-Drivers/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/Endpoint.h -------------------------------------------------------------------------------- /USB-Drivers/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/Events.c -------------------------------------------------------------------------------- /USB-Drivers/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/Events.h -------------------------------------------------------------------------------- /USB-Drivers/SimpleCDC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/SimpleCDC.c -------------------------------------------------------------------------------- /USB-Drivers/SimpleCDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/SimpleCDC.h -------------------------------------------------------------------------------- /USB-Drivers/StdDescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/StdDescriptors.h -------------------------------------------------------------------------------- /USB-Drivers/StdRequestType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/StdRequestType.h -------------------------------------------------------------------------------- /USB-Drivers/StreamCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/StreamCallbacks.h -------------------------------------------------------------------------------- /USB-Drivers/Template/Template_Endpoint_Control_R.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/Template/Template_Endpoint_Control_R.c -------------------------------------------------------------------------------- /USB-Drivers/Template/Template_Endpoint_Control_W.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/Template/Template_Endpoint_Control_W.c -------------------------------------------------------------------------------- /USB-Drivers/Template/Template_Endpoint_RW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/Template/Template_Endpoint_RW.c -------------------------------------------------------------------------------- /USB-Drivers/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/USB.h -------------------------------------------------------------------------------- /USB-Drivers/USBController.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/USBController.c -------------------------------------------------------------------------------- /USB-Drivers/USBController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/USBController.h -------------------------------------------------------------------------------- /USB-Drivers/USBInterrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/USBInterrupt.c -------------------------------------------------------------------------------- /USB-Drivers/USBInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/USBInterrupt.h -------------------------------------------------------------------------------- /USB-Drivers/USBMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/USBMode.h -------------------------------------------------------------------------------- /USB-Drivers/USBTask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/USBTask.c -------------------------------------------------------------------------------- /USB-Drivers/USBTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/USB-Drivers/USBTask.h -------------------------------------------------------------------------------- /debug_tx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/debug_tx.S -------------------------------------------------------------------------------- /debug_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/debug_tx.h -------------------------------------------------------------------------------- /fast-usbserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/fast-usbserial.c -------------------------------------------------------------------------------- /fast-usbserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/fast-usbserial.h -------------------------------------------------------------------------------- /fast-usbserial.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/fast-usbserial.hex -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urjaman/fast-usbserial/HEAD/readme.txt --------------------------------------------------------------------------------