├── README.md ├── SPINNER ├── Arduino.h ├── AudioStream.cpp ├── AudioStream.h ├── Blink.cc ├── Client.h ├── CrashReport.cpp ├── CrashReport.h ├── DMAChannel.cpp ├── DMAChannel.h ├── EventResponder.cpp ├── EventResponder.h ├── FS.h ├── HardwareSerial.cpp ├── HardwareSerial.h ├── HardwareSerial1.cpp ├── HardwareSerial2.cpp ├── HardwareSerial3.cpp ├── HardwareSerial4.cpp ├── HardwareSerial5.cpp ├── HardwareSerial6.cpp ├── HardwareSerial7.cpp ├── HardwareSerial8.cpp ├── IPAddress.cpp ├── IPAddress.h ├── IntervalTimer.cpp ├── IntervalTimer.h ├── Keyboard.h ├── MIDIUSB.h ├── Makefile ├── Mouse.h ├── Print.cpp ├── Print.h ├── Printable.h ├── SPI.cpp ├── SPI.h ├── SPINNER.cpp ├── Server.h ├── Stream.cpp ├── Stream.h ├── Tone.cpp ├── Udp.h ├── WCharacter.h ├── WMath.cpp ├── WProgram.h ├── WString.cpp ├── WString.h ├── analog.c ├── arm_common_tables.h ├── arm_const_structs.h ├── arm_math.h ├── avr │ ├── eeprom.h │ ├── interrupt.h │ ├── io.h │ ├── pgmspace.h │ ├── power.h │ ├── sleep.h │ └── wdt.h ├── avr_emulation.h ├── avr_functions.h ├── binary.h ├── bootdata.c ├── clockspeed.c ├── cmsis_gcc.h ├── core_cm7.h ├── core_cmInstr.h ├── core_id.h ├── core_pins.h ├── debug │ └── printf.h ├── debugprintf.c ├── delay.c ├── digital.c ├── eeprom.c ├── elapsedMillis.h ├── extmem.c ├── imxrt.h ├── imxrt1062.ld ├── imxrt1062_mm.ld ├── imxrt1062_t41.ld ├── interrupt.c ├── keylayouts.c ├── keylayouts.h ├── libarm_cortexM7lfsp_math.a ├── math_helper.h ├── memcpy-armv7m.S ├── memset.S ├── minicom.cap ├── new.cpp ├── nonstd.c ├── pgmspace.h ├── pins_arduino.h ├── pwm.c ├── rtc.c ├── serialEvent.cpp ├── serialEvent1.cpp ├── serialEvent2.cpp ├── serialEvent3.cpp ├── serialEvent4.cpp ├── serialEvent5.cpp ├── serialEvent6.cpp ├── serialEvent7.cpp ├── serialEvent8.cpp ├── serialEventUSB1.cpp ├── serialEventUSB2.cpp ├── sm_alloc_valid.c ├── sm_calloc.c ├── sm_free.c ├── sm_hash.c ├── sm_malloc.c ├── sm_malloc_stats.c ├── sm_pool.c ├── sm_realloc.c ├── sm_realloc_i.c ├── sm_realloc_move.c ├── sm_szalloc.c ├── sm_util.c ├── sm_zalloc.c ├── smalloc.h ├── smalloc_i.h ├── startup.c ├── tempmon.c ├── usb.c ├── usb_audio.cpp ├── usb_audio.h ├── usb_desc.c ├── usb_desc.h ├── usb_dev.h ├── usb_flightsim.cpp ├── usb_flightsim.h ├── usb_inst.cpp ├── usb_joystick.c ├── usb_joystick.h ├── usb_keyboard.c ├── usb_keyboard.h ├── usb_midi.c ├── usb_midi.h ├── usb_mouse.c ├── usb_mouse.h ├── usb_mtp.c ├── usb_mtp.h ├── usb_names.h ├── usb_rawhid.c ├── usb_rawhid.h ├── usb_seremu.c ├── usb_seremu.h ├── usb_serial.c ├── usb_serial.h ├── usb_serial2.c ├── usb_serial3.c ├── usb_touch.c ├── usb_touch.h ├── util │ ├── atomic.h │ ├── crc16.h │ ├── delay.h │ └── parity.h ├── wiring.h ├── wiring_private.h └── yield.cpp ├── SPINNER_teensy4_wiring.png └── spinner.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/README.md -------------------------------------------------------------------------------- /SPINNER/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Arduino.h -------------------------------------------------------------------------------- /SPINNER/AudioStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/AudioStream.cpp -------------------------------------------------------------------------------- /SPINNER/AudioStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/AudioStream.h -------------------------------------------------------------------------------- /SPINNER/Blink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Blink.cc -------------------------------------------------------------------------------- /SPINNER/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Client.h -------------------------------------------------------------------------------- /SPINNER/CrashReport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/CrashReport.cpp -------------------------------------------------------------------------------- /SPINNER/CrashReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/CrashReport.h -------------------------------------------------------------------------------- /SPINNER/DMAChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/DMAChannel.cpp -------------------------------------------------------------------------------- /SPINNER/DMAChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/DMAChannel.h -------------------------------------------------------------------------------- /SPINNER/EventResponder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/EventResponder.cpp -------------------------------------------------------------------------------- /SPINNER/EventResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/EventResponder.h -------------------------------------------------------------------------------- /SPINNER/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/FS.h -------------------------------------------------------------------------------- /SPINNER/HardwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/HardwareSerial.cpp -------------------------------------------------------------------------------- /SPINNER/HardwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/HardwareSerial.h -------------------------------------------------------------------------------- /SPINNER/HardwareSerial1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/HardwareSerial1.cpp -------------------------------------------------------------------------------- /SPINNER/HardwareSerial2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/HardwareSerial2.cpp -------------------------------------------------------------------------------- /SPINNER/HardwareSerial3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/HardwareSerial3.cpp -------------------------------------------------------------------------------- /SPINNER/HardwareSerial4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/HardwareSerial4.cpp -------------------------------------------------------------------------------- /SPINNER/HardwareSerial5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/HardwareSerial5.cpp -------------------------------------------------------------------------------- /SPINNER/HardwareSerial6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/HardwareSerial6.cpp -------------------------------------------------------------------------------- /SPINNER/HardwareSerial7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/HardwareSerial7.cpp -------------------------------------------------------------------------------- /SPINNER/HardwareSerial8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/HardwareSerial8.cpp -------------------------------------------------------------------------------- /SPINNER/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/IPAddress.cpp -------------------------------------------------------------------------------- /SPINNER/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/IPAddress.h -------------------------------------------------------------------------------- /SPINNER/IntervalTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/IntervalTimer.cpp -------------------------------------------------------------------------------- /SPINNER/IntervalTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/IntervalTimer.h -------------------------------------------------------------------------------- /SPINNER/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Keyboard.h -------------------------------------------------------------------------------- /SPINNER/MIDIUSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/MIDIUSB.h -------------------------------------------------------------------------------- /SPINNER/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Makefile -------------------------------------------------------------------------------- /SPINNER/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Mouse.h -------------------------------------------------------------------------------- /SPINNER/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Print.cpp -------------------------------------------------------------------------------- /SPINNER/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Print.h -------------------------------------------------------------------------------- /SPINNER/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Printable.h -------------------------------------------------------------------------------- /SPINNER/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/SPI.cpp -------------------------------------------------------------------------------- /SPINNER/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/SPI.h -------------------------------------------------------------------------------- /SPINNER/SPINNER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/SPINNER.cpp -------------------------------------------------------------------------------- /SPINNER/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Server.h -------------------------------------------------------------------------------- /SPINNER/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Stream.cpp -------------------------------------------------------------------------------- /SPINNER/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Stream.h -------------------------------------------------------------------------------- /SPINNER/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Tone.cpp -------------------------------------------------------------------------------- /SPINNER/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/Udp.h -------------------------------------------------------------------------------- /SPINNER/WCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/WCharacter.h -------------------------------------------------------------------------------- /SPINNER/WMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/WMath.cpp -------------------------------------------------------------------------------- /SPINNER/WProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/WProgram.h -------------------------------------------------------------------------------- /SPINNER/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/WString.cpp -------------------------------------------------------------------------------- /SPINNER/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/WString.h -------------------------------------------------------------------------------- /SPINNER/analog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/analog.c -------------------------------------------------------------------------------- /SPINNER/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/arm_common_tables.h -------------------------------------------------------------------------------- /SPINNER/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/arm_const_structs.h -------------------------------------------------------------------------------- /SPINNER/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/arm_math.h -------------------------------------------------------------------------------- /SPINNER/avr/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/avr/eeprom.h -------------------------------------------------------------------------------- /SPINNER/avr/interrupt.h: -------------------------------------------------------------------------------- 1 | // This header file is in the public domain. 2 | -------------------------------------------------------------------------------- /SPINNER/avr/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/avr/io.h -------------------------------------------------------------------------------- /SPINNER/avr/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/avr/pgmspace.h -------------------------------------------------------------------------------- /SPINNER/avr/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/avr/power.h -------------------------------------------------------------------------------- /SPINNER/avr/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/avr/sleep.h -------------------------------------------------------------------------------- /SPINNER/avr/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/avr/wdt.h -------------------------------------------------------------------------------- /SPINNER/avr_emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/avr_emulation.h -------------------------------------------------------------------------------- /SPINNER/avr_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/avr_functions.h -------------------------------------------------------------------------------- /SPINNER/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/binary.h -------------------------------------------------------------------------------- /SPINNER/bootdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/bootdata.c -------------------------------------------------------------------------------- /SPINNER/clockspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/clockspeed.c -------------------------------------------------------------------------------- /SPINNER/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/cmsis_gcc.h -------------------------------------------------------------------------------- /SPINNER/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/core_cm7.h -------------------------------------------------------------------------------- /SPINNER/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/core_cmInstr.h -------------------------------------------------------------------------------- /SPINNER/core_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/core_id.h -------------------------------------------------------------------------------- /SPINNER/core_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/core_pins.h -------------------------------------------------------------------------------- /SPINNER/debug/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/debug/printf.h -------------------------------------------------------------------------------- /SPINNER/debugprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/debugprintf.c -------------------------------------------------------------------------------- /SPINNER/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/delay.c -------------------------------------------------------------------------------- /SPINNER/digital.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/digital.c -------------------------------------------------------------------------------- /SPINNER/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/eeprom.c -------------------------------------------------------------------------------- /SPINNER/elapsedMillis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/elapsedMillis.h -------------------------------------------------------------------------------- /SPINNER/extmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/extmem.c -------------------------------------------------------------------------------- /SPINNER/imxrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/imxrt.h -------------------------------------------------------------------------------- /SPINNER/imxrt1062.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/imxrt1062.ld -------------------------------------------------------------------------------- /SPINNER/imxrt1062_mm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/imxrt1062_mm.ld -------------------------------------------------------------------------------- /SPINNER/imxrt1062_t41.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/imxrt1062_t41.ld -------------------------------------------------------------------------------- /SPINNER/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/interrupt.c -------------------------------------------------------------------------------- /SPINNER/keylayouts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/keylayouts.c -------------------------------------------------------------------------------- /SPINNER/keylayouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/keylayouts.h -------------------------------------------------------------------------------- /SPINNER/libarm_cortexM7lfsp_math.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/libarm_cortexM7lfsp_math.a -------------------------------------------------------------------------------- /SPINNER/math_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/math_helper.h -------------------------------------------------------------------------------- /SPINNER/memcpy-armv7m.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/memcpy-armv7m.S -------------------------------------------------------------------------------- /SPINNER/memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/memset.S -------------------------------------------------------------------------------- /SPINNER/minicom.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/minicom.cap -------------------------------------------------------------------------------- /SPINNER/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/new.cpp -------------------------------------------------------------------------------- /SPINNER/nonstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/nonstd.c -------------------------------------------------------------------------------- /SPINNER/pgmspace.h: -------------------------------------------------------------------------------- 1 | // For compatibility with some ESP8266 programs 2 | #include 3 | -------------------------------------------------------------------------------- /SPINNER/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/pins_arduino.h -------------------------------------------------------------------------------- /SPINNER/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/pwm.c -------------------------------------------------------------------------------- /SPINNER/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/rtc.c -------------------------------------------------------------------------------- /SPINNER/serialEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/serialEvent.cpp -------------------------------------------------------------------------------- /SPINNER/serialEvent1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/serialEvent1.cpp -------------------------------------------------------------------------------- /SPINNER/serialEvent2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/serialEvent2.cpp -------------------------------------------------------------------------------- /SPINNER/serialEvent3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/serialEvent3.cpp -------------------------------------------------------------------------------- /SPINNER/serialEvent4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/serialEvent4.cpp -------------------------------------------------------------------------------- /SPINNER/serialEvent5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/serialEvent5.cpp -------------------------------------------------------------------------------- /SPINNER/serialEvent6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/serialEvent6.cpp -------------------------------------------------------------------------------- /SPINNER/serialEvent7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/serialEvent7.cpp -------------------------------------------------------------------------------- /SPINNER/serialEvent8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/serialEvent8.cpp -------------------------------------------------------------------------------- /SPINNER/serialEventUSB1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/serialEventUSB1.cpp -------------------------------------------------------------------------------- /SPINNER/serialEventUSB2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/serialEventUSB2.cpp -------------------------------------------------------------------------------- /SPINNER/sm_alloc_valid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/sm_alloc_valid.c -------------------------------------------------------------------------------- /SPINNER/sm_calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/sm_calloc.c -------------------------------------------------------------------------------- /SPINNER/sm_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/sm_free.c -------------------------------------------------------------------------------- /SPINNER/sm_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/sm_hash.c -------------------------------------------------------------------------------- /SPINNER/sm_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/sm_malloc.c -------------------------------------------------------------------------------- /SPINNER/sm_malloc_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/sm_malloc_stats.c -------------------------------------------------------------------------------- /SPINNER/sm_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/sm_pool.c -------------------------------------------------------------------------------- /SPINNER/sm_realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/sm_realloc.c -------------------------------------------------------------------------------- /SPINNER/sm_realloc_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/sm_realloc_i.c -------------------------------------------------------------------------------- /SPINNER/sm_realloc_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/sm_realloc_move.c -------------------------------------------------------------------------------- /SPINNER/sm_szalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/sm_szalloc.c -------------------------------------------------------------------------------- /SPINNER/sm_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/sm_util.c -------------------------------------------------------------------------------- /SPINNER/sm_zalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/sm_zalloc.c -------------------------------------------------------------------------------- /SPINNER/smalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/smalloc.h -------------------------------------------------------------------------------- /SPINNER/smalloc_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/smalloc_i.h -------------------------------------------------------------------------------- /SPINNER/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/startup.c -------------------------------------------------------------------------------- /SPINNER/tempmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/tempmon.c -------------------------------------------------------------------------------- /SPINNER/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb.c -------------------------------------------------------------------------------- /SPINNER/usb_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_audio.cpp -------------------------------------------------------------------------------- /SPINNER/usb_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_audio.h -------------------------------------------------------------------------------- /SPINNER/usb_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_desc.c -------------------------------------------------------------------------------- /SPINNER/usb_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_desc.h -------------------------------------------------------------------------------- /SPINNER/usb_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_dev.h -------------------------------------------------------------------------------- /SPINNER/usb_flightsim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_flightsim.cpp -------------------------------------------------------------------------------- /SPINNER/usb_flightsim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_flightsim.h -------------------------------------------------------------------------------- /SPINNER/usb_inst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_inst.cpp -------------------------------------------------------------------------------- /SPINNER/usb_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_joystick.c -------------------------------------------------------------------------------- /SPINNER/usb_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_joystick.h -------------------------------------------------------------------------------- /SPINNER/usb_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_keyboard.c -------------------------------------------------------------------------------- /SPINNER/usb_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_keyboard.h -------------------------------------------------------------------------------- /SPINNER/usb_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_midi.c -------------------------------------------------------------------------------- /SPINNER/usb_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_midi.h -------------------------------------------------------------------------------- /SPINNER/usb_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_mouse.c -------------------------------------------------------------------------------- /SPINNER/usb_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_mouse.h -------------------------------------------------------------------------------- /SPINNER/usb_mtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_mtp.c -------------------------------------------------------------------------------- /SPINNER/usb_mtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_mtp.h -------------------------------------------------------------------------------- /SPINNER/usb_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_names.h -------------------------------------------------------------------------------- /SPINNER/usb_rawhid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_rawhid.c -------------------------------------------------------------------------------- /SPINNER/usb_rawhid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_rawhid.h -------------------------------------------------------------------------------- /SPINNER/usb_seremu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_seremu.c -------------------------------------------------------------------------------- /SPINNER/usb_seremu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_seremu.h -------------------------------------------------------------------------------- /SPINNER/usb_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_serial.c -------------------------------------------------------------------------------- /SPINNER/usb_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_serial.h -------------------------------------------------------------------------------- /SPINNER/usb_serial2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_serial2.c -------------------------------------------------------------------------------- /SPINNER/usb_serial3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_serial3.c -------------------------------------------------------------------------------- /SPINNER/usb_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_touch.c -------------------------------------------------------------------------------- /SPINNER/usb_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/usb_touch.h -------------------------------------------------------------------------------- /SPINNER/util/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/util/atomic.h -------------------------------------------------------------------------------- /SPINNER/util/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/util/crc16.h -------------------------------------------------------------------------------- /SPINNER/util/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/util/delay.h -------------------------------------------------------------------------------- /SPINNER/util/parity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/util/parity.h -------------------------------------------------------------------------------- /SPINNER/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/wiring.h -------------------------------------------------------------------------------- /SPINNER/wiring_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/wiring_private.h -------------------------------------------------------------------------------- /SPINNER/yield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER/yield.cpp -------------------------------------------------------------------------------- /SPINNER_teensy4_wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/SPINNER_teensy4_wiring.png -------------------------------------------------------------------------------- /spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VV1LD/SPINNER/HEAD/spinner.py --------------------------------------------------------------------------------