├── README.md ├── main ├── docs │ └── Manual │ │ ├── StickIt-manual.odt │ │ ├── channel_pinout.svg │ │ ├── xula2_pinout.svg │ │ └── xula_pinout.svg └── pcb │ ├── StickIt.brd │ └── StickIt.sch └── modules ├── Audio ├── FPGA │ ├── README.rst │ ├── audio │ │ ├── AudioTestBench.vhd │ │ ├── ClkGen.vhd │ │ ├── README.md │ │ ├── audio.ucf │ │ ├── audio.vhd │ │ ├── audio.xise │ │ └── common.vhd │ ├── audio_hostio │ │ ├── AudioHostio.py │ │ ├── README.md │ │ ├── XuLA2.ucf │ │ ├── audio_hostio.vhd │ │ └── audio_hostio.xise │ └── record_playback │ │ ├── README.md │ │ ├── RecordPlayback.py │ │ ├── XuLA2.ucf │ │ ├── gui_record_playback.py │ │ ├── record_playback.vhd │ │ └── record_playback.xise ├── docs │ └── Manual │ │ ├── AudioIO-blockdiag.svg │ │ └── StickIt-AudioIO-manual-v1_0.odt └── pcb │ ├── StickIt-Audio.brd │ ├── StickIt-Audio.sch │ └── eagle.epf ├── Buttons ├── FPGA │ └── ButtonScannerTest │ │ ├── ButtonScanner.vhd │ │ ├── ButtonScannerTest.ucf │ │ ├── ButtonScannerTest.xise │ │ ├── Common.vhd │ │ ├── LedDigits.vhd │ │ ├── README.md │ │ └── buttonscannertest.bit ├── docs │ └── Manual │ │ ├── ButtonScan.svg │ │ └── StickIt-Buttons-manual-v2_0.odt └── pcb │ ├── StickIt-Buttons.brd │ └── StickIt-Buttons.sch ├── DIPSwitch ├── FPGA │ └── DipswTest │ │ ├── DipswTest-XuLA.ucf │ │ ├── DipswTest-XuLA2.ucf │ │ ├── DipswTest.ucf │ │ ├── DipswTest.vhd │ │ ├── DipswTest.xise │ │ ├── README.md │ │ └── dipsw_test.py ├── docs │ └── Manual │ │ └── StickIt-DIPSwitch-manual-v1_0.odt └── pcb │ ├── StickIt-DIPSwitch.brd │ ├── StickIt-DIPSwitch.sch │ └── eagle.epf ├── LedDigits ├── FPGA │ └── LedDigitsTest │ │ ├── Common.vhd │ │ ├── LedDigits.vhd │ │ ├── LedDigitsTest.ucf │ │ ├── LedDigitsTest.xise │ │ ├── README.md │ │ └── leddigitstest.bit ├── docs │ └── Manual │ │ └── StickIt-LedDigits-manual-v2_0.odt └── pcb │ ├── StickIt-LedDigits.brd │ └── StickIt-LedDigits.sch ├── MPU ├── FPGA │ └── MPUTest │ │ ├── ClkGen.vhd │ │ ├── Common.vhd │ │ ├── HostIo.vhd │ │ ├── HostIoToI2c.vhd │ │ ├── I2c.vhd │ │ ├── MPUTest-XuLA.ucf │ │ ├── MPUTest-XuLA2.ucf │ │ ├── MPUTest.py │ │ ├── MPUTest.vhd │ │ ├── MPUTest.xise │ │ ├── README.md │ │ └── SyncToClk.vhd ├── docs │ └── Manual │ │ ├── MPU-6050-circuit.svg │ │ ├── MPU-9150-circuit.svg │ │ ├── StickIt-MPU-6050-manual-v1_0.odt │ │ ├── StickIt-MPU-9150-manual-v1_0.odt │ │ └── img_1382.svg └── pcb │ ├── StickIt-MPU.brd │ ├── StickIt-MPU.sch │ ├── accel_gyro_axes.bmp │ ├── accel_gyro_axes.png │ ├── accel_gyro_compass_axes.svg │ ├── compass_axes.bmp │ ├── compass_axes.png │ └── eagle.epf ├── OctalAdc ├── FPGA │ └── DataSampler │ │ ├── DataSampler.vhd │ │ ├── DataSampler.xise │ │ ├── XuLA2.ucf │ │ └── datasampler.py └── pcb │ ├── ADCXX8S.cmp │ ├── ADCXX8S.kicad_pcb │ ├── ADCXX8S.lib │ ├── ADCXX8S.net │ ├── ADCXX8S.pro │ └── ADCXX8S.sch ├── Ps2 ├── FPGA │ └── KbdScannerTest │ │ ├── Common.vhd │ │ ├── KbdScanner.vhd │ │ ├── KbdScannerTest.ucf │ │ ├── KbdScannerTest.xise │ │ ├── LedDigits.vhd │ │ ├── README.md │ │ └── kbdscannertest.bit ├── docs │ └── Manual │ │ ├── KbdSignals.svg │ │ └── StickIt-Ps2-manual-v2_0.odt └── pcb │ ├── .solderpad │ ├── board.pdf │ ├── bom.json │ ├── photo.png │ └── schematic.pdf │ ├── StickIt-PS2.brd │ └── StickIt-PS2.sch ├── RotaryEncoder ├── FPGA │ └── RotaryEncoderTest │ │ ├── ClkGen.vhd │ │ ├── Common.vhd │ │ ├── HostIo.vhd │ │ ├── LedDigits.vhd │ │ ├── README.md │ │ ├── RotaryEncoder.vhd │ │ ├── RotaryEncoderTest-xula.ucf │ │ ├── RotaryEncoderTest-xula2.ucf │ │ ├── RotaryEncoderTest.ucf │ │ ├── RotaryEncoderTest.vhd │ │ ├── RotaryEncoderTest.xise │ │ ├── SyncToClk.vhd │ │ └── rot_enc_test.py ├── docs │ └── Manual │ │ ├── RotaryEncoder-circuit.svg │ │ ├── RotaryEncoder-waveforms.svg │ │ └── StickIt-RotaryEncoder-manual-v1_0.odt └── pcb │ ├── StickIt-RotaryEncoder.brd │ └── StickIt-RotaryEncoder.sch ├── Template └── pcb │ ├── StickIt-Template.brd │ └── StickIt-Template.sch └── Vga ├── FPGA └── PixelVgaTest │ ├── PixelVgaTest-xula.ucf │ ├── PixelVgaTest.xise │ ├── README.md │ ├── img_1024x792.xes │ ├── img_800x600.xes │ └── pixelvgatest-xula2.ucf ├── docs └── Manual │ ├── ResistorDac.svg │ ├── StickIt-Vga-manual.odt │ ├── VgaTiming.svg │ └── pinout.svg └── pcb ├── .solderpad ├── board.pdf ├── bom.json ├── photo.jpg └── schematic.pdf ├── StickIt-Vga.brd └── StickIt-Vga.sch /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/README.md -------------------------------------------------------------------------------- /main/docs/Manual/StickIt-manual.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/main/docs/Manual/StickIt-manual.odt -------------------------------------------------------------------------------- /main/docs/Manual/channel_pinout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/main/docs/Manual/channel_pinout.svg -------------------------------------------------------------------------------- /main/docs/Manual/xula2_pinout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/main/docs/Manual/xula2_pinout.svg -------------------------------------------------------------------------------- /main/docs/Manual/xula_pinout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/main/docs/Manual/xula_pinout.svg -------------------------------------------------------------------------------- /main/pcb/StickIt.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/main/pcb/StickIt.brd -------------------------------------------------------------------------------- /main/pcb/StickIt.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/main/pcb/StickIt.sch -------------------------------------------------------------------------------- /modules/Audio/FPGA/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/README.rst -------------------------------------------------------------------------------- /modules/Audio/FPGA/audio/AudioTestBench.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/audio/AudioTestBench.vhd -------------------------------------------------------------------------------- /modules/Audio/FPGA/audio/ClkGen.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/audio/ClkGen.vhd -------------------------------------------------------------------------------- /modules/Audio/FPGA/audio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/audio/README.md -------------------------------------------------------------------------------- /modules/Audio/FPGA/audio/audio.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/audio/audio.ucf -------------------------------------------------------------------------------- /modules/Audio/FPGA/audio/audio.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/audio/audio.vhd -------------------------------------------------------------------------------- /modules/Audio/FPGA/audio/audio.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/audio/audio.xise -------------------------------------------------------------------------------- /modules/Audio/FPGA/audio/common.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/audio/common.vhd -------------------------------------------------------------------------------- /modules/Audio/FPGA/audio_hostio/AudioHostio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/audio_hostio/AudioHostio.py -------------------------------------------------------------------------------- /modules/Audio/FPGA/audio_hostio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/audio_hostio/README.md -------------------------------------------------------------------------------- /modules/Audio/FPGA/audio_hostio/XuLA2.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/audio_hostio/XuLA2.ucf -------------------------------------------------------------------------------- /modules/Audio/FPGA/audio_hostio/audio_hostio.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/audio_hostio/audio_hostio.vhd -------------------------------------------------------------------------------- /modules/Audio/FPGA/audio_hostio/audio_hostio.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/audio_hostio/audio_hostio.xise -------------------------------------------------------------------------------- /modules/Audio/FPGA/record_playback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/record_playback/README.md -------------------------------------------------------------------------------- /modules/Audio/FPGA/record_playback/RecordPlayback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/record_playback/RecordPlayback.py -------------------------------------------------------------------------------- /modules/Audio/FPGA/record_playback/XuLA2.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/record_playback/XuLA2.ucf -------------------------------------------------------------------------------- /modules/Audio/FPGA/record_playback/gui_record_playback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/record_playback/gui_record_playback.py -------------------------------------------------------------------------------- /modules/Audio/FPGA/record_playback/record_playback.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/record_playback/record_playback.vhd -------------------------------------------------------------------------------- /modules/Audio/FPGA/record_playback/record_playback.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/FPGA/record_playback/record_playback.xise -------------------------------------------------------------------------------- /modules/Audio/docs/Manual/AudioIO-blockdiag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/docs/Manual/AudioIO-blockdiag.svg -------------------------------------------------------------------------------- /modules/Audio/docs/Manual/StickIt-AudioIO-manual-v1_0.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/docs/Manual/StickIt-AudioIO-manual-v1_0.odt -------------------------------------------------------------------------------- /modules/Audio/pcb/StickIt-Audio.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/pcb/StickIt-Audio.brd -------------------------------------------------------------------------------- /modules/Audio/pcb/StickIt-Audio.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/pcb/StickIt-Audio.sch -------------------------------------------------------------------------------- /modules/Audio/pcb/eagle.epf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Audio/pcb/eagle.epf -------------------------------------------------------------------------------- /modules/Buttons/FPGA/ButtonScannerTest/ButtonScanner.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Buttons/FPGA/ButtonScannerTest/ButtonScanner.vhd -------------------------------------------------------------------------------- /modules/Buttons/FPGA/ButtonScannerTest/ButtonScannerTest.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Buttons/FPGA/ButtonScannerTest/ButtonScannerTest.ucf -------------------------------------------------------------------------------- /modules/Buttons/FPGA/ButtonScannerTest/ButtonScannerTest.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Buttons/FPGA/ButtonScannerTest/ButtonScannerTest.xise -------------------------------------------------------------------------------- /modules/Buttons/FPGA/ButtonScannerTest/Common.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Buttons/FPGA/ButtonScannerTest/Common.vhd -------------------------------------------------------------------------------- /modules/Buttons/FPGA/ButtonScannerTest/LedDigits.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Buttons/FPGA/ButtonScannerTest/LedDigits.vhd -------------------------------------------------------------------------------- /modules/Buttons/FPGA/ButtonScannerTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Buttons/FPGA/ButtonScannerTest/README.md -------------------------------------------------------------------------------- /modules/Buttons/FPGA/ButtonScannerTest/buttonscannertest.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Buttons/FPGA/ButtonScannerTest/buttonscannertest.bit -------------------------------------------------------------------------------- /modules/Buttons/docs/Manual/ButtonScan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Buttons/docs/Manual/ButtonScan.svg -------------------------------------------------------------------------------- /modules/Buttons/docs/Manual/StickIt-Buttons-manual-v2_0.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Buttons/docs/Manual/StickIt-Buttons-manual-v2_0.odt -------------------------------------------------------------------------------- /modules/Buttons/pcb/StickIt-Buttons.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Buttons/pcb/StickIt-Buttons.brd -------------------------------------------------------------------------------- /modules/Buttons/pcb/StickIt-Buttons.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Buttons/pcb/StickIt-Buttons.sch -------------------------------------------------------------------------------- /modules/DIPSwitch/FPGA/DipswTest/DipswTest-XuLA.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/DIPSwitch/FPGA/DipswTest/DipswTest-XuLA.ucf -------------------------------------------------------------------------------- /modules/DIPSwitch/FPGA/DipswTest/DipswTest-XuLA2.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/DIPSwitch/FPGA/DipswTest/DipswTest-XuLA2.ucf -------------------------------------------------------------------------------- /modules/DIPSwitch/FPGA/DipswTest/DipswTest.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/DIPSwitch/FPGA/DipswTest/DipswTest.ucf -------------------------------------------------------------------------------- /modules/DIPSwitch/FPGA/DipswTest/DipswTest.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/DIPSwitch/FPGA/DipswTest/DipswTest.vhd -------------------------------------------------------------------------------- /modules/DIPSwitch/FPGA/DipswTest/DipswTest.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/DIPSwitch/FPGA/DipswTest/DipswTest.xise -------------------------------------------------------------------------------- /modules/DIPSwitch/FPGA/DipswTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/DIPSwitch/FPGA/DipswTest/README.md -------------------------------------------------------------------------------- /modules/DIPSwitch/FPGA/DipswTest/dipsw_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/DIPSwitch/FPGA/DipswTest/dipsw_test.py -------------------------------------------------------------------------------- /modules/DIPSwitch/docs/Manual/StickIt-DIPSwitch-manual-v1_0.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/DIPSwitch/docs/Manual/StickIt-DIPSwitch-manual-v1_0.odt -------------------------------------------------------------------------------- /modules/DIPSwitch/pcb/StickIt-DIPSwitch.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/DIPSwitch/pcb/StickIt-DIPSwitch.brd -------------------------------------------------------------------------------- /modules/DIPSwitch/pcb/StickIt-DIPSwitch.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/DIPSwitch/pcb/StickIt-DIPSwitch.sch -------------------------------------------------------------------------------- /modules/DIPSwitch/pcb/eagle.epf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/DIPSwitch/pcb/eagle.epf -------------------------------------------------------------------------------- /modules/LedDigits/FPGA/LedDigitsTest/Common.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/LedDigits/FPGA/LedDigitsTest/Common.vhd -------------------------------------------------------------------------------- /modules/LedDigits/FPGA/LedDigitsTest/LedDigits.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/LedDigits/FPGA/LedDigitsTest/LedDigits.vhd -------------------------------------------------------------------------------- /modules/LedDigits/FPGA/LedDigitsTest/LedDigitsTest.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/LedDigits/FPGA/LedDigitsTest/LedDigitsTest.ucf -------------------------------------------------------------------------------- /modules/LedDigits/FPGA/LedDigitsTest/LedDigitsTest.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/LedDigits/FPGA/LedDigitsTest/LedDigitsTest.xise -------------------------------------------------------------------------------- /modules/LedDigits/FPGA/LedDigitsTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/LedDigits/FPGA/LedDigitsTest/README.md -------------------------------------------------------------------------------- /modules/LedDigits/FPGA/LedDigitsTest/leddigitstest.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/LedDigits/FPGA/LedDigitsTest/leddigitstest.bit -------------------------------------------------------------------------------- /modules/LedDigits/docs/Manual/StickIt-LedDigits-manual-v2_0.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/LedDigits/docs/Manual/StickIt-LedDigits-manual-v2_0.odt -------------------------------------------------------------------------------- /modules/LedDigits/pcb/StickIt-LedDigits.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/LedDigits/pcb/StickIt-LedDigits.brd -------------------------------------------------------------------------------- /modules/LedDigits/pcb/StickIt-LedDigits.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/LedDigits/pcb/StickIt-LedDigits.sch -------------------------------------------------------------------------------- /modules/MPU/FPGA/MPUTest/ClkGen.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/FPGA/MPUTest/ClkGen.vhd -------------------------------------------------------------------------------- /modules/MPU/FPGA/MPUTest/Common.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/FPGA/MPUTest/Common.vhd -------------------------------------------------------------------------------- /modules/MPU/FPGA/MPUTest/HostIo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/FPGA/MPUTest/HostIo.vhd -------------------------------------------------------------------------------- /modules/MPU/FPGA/MPUTest/HostIoToI2c.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/FPGA/MPUTest/HostIoToI2c.vhd -------------------------------------------------------------------------------- /modules/MPU/FPGA/MPUTest/I2c.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/FPGA/MPUTest/I2c.vhd -------------------------------------------------------------------------------- /modules/MPU/FPGA/MPUTest/MPUTest-XuLA.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/FPGA/MPUTest/MPUTest-XuLA.ucf -------------------------------------------------------------------------------- /modules/MPU/FPGA/MPUTest/MPUTest-XuLA2.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/FPGA/MPUTest/MPUTest-XuLA2.ucf -------------------------------------------------------------------------------- /modules/MPU/FPGA/MPUTest/MPUTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/FPGA/MPUTest/MPUTest.py -------------------------------------------------------------------------------- /modules/MPU/FPGA/MPUTest/MPUTest.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/FPGA/MPUTest/MPUTest.vhd -------------------------------------------------------------------------------- /modules/MPU/FPGA/MPUTest/MPUTest.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/FPGA/MPUTest/MPUTest.xise -------------------------------------------------------------------------------- /modules/MPU/FPGA/MPUTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/FPGA/MPUTest/README.md -------------------------------------------------------------------------------- /modules/MPU/FPGA/MPUTest/SyncToClk.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/FPGA/MPUTest/SyncToClk.vhd -------------------------------------------------------------------------------- /modules/MPU/docs/Manual/MPU-6050-circuit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/docs/Manual/MPU-6050-circuit.svg -------------------------------------------------------------------------------- /modules/MPU/docs/Manual/MPU-9150-circuit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/docs/Manual/MPU-9150-circuit.svg -------------------------------------------------------------------------------- /modules/MPU/docs/Manual/StickIt-MPU-6050-manual-v1_0.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/docs/Manual/StickIt-MPU-6050-manual-v1_0.odt -------------------------------------------------------------------------------- /modules/MPU/docs/Manual/StickIt-MPU-9150-manual-v1_0.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/docs/Manual/StickIt-MPU-9150-manual-v1_0.odt -------------------------------------------------------------------------------- /modules/MPU/docs/Manual/img_1382.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/docs/Manual/img_1382.svg -------------------------------------------------------------------------------- /modules/MPU/pcb/StickIt-MPU.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/pcb/StickIt-MPU.brd -------------------------------------------------------------------------------- /modules/MPU/pcb/StickIt-MPU.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/pcb/StickIt-MPU.sch -------------------------------------------------------------------------------- /modules/MPU/pcb/accel_gyro_axes.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/pcb/accel_gyro_axes.bmp -------------------------------------------------------------------------------- /modules/MPU/pcb/accel_gyro_axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/pcb/accel_gyro_axes.png -------------------------------------------------------------------------------- /modules/MPU/pcb/accel_gyro_compass_axes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/pcb/accel_gyro_compass_axes.svg -------------------------------------------------------------------------------- /modules/MPU/pcb/compass_axes.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/pcb/compass_axes.bmp -------------------------------------------------------------------------------- /modules/MPU/pcb/compass_axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/pcb/compass_axes.png -------------------------------------------------------------------------------- /modules/MPU/pcb/eagle.epf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/MPU/pcb/eagle.epf -------------------------------------------------------------------------------- /modules/OctalAdc/FPGA/DataSampler/DataSampler.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/OctalAdc/FPGA/DataSampler/DataSampler.vhd -------------------------------------------------------------------------------- /modules/OctalAdc/FPGA/DataSampler/DataSampler.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/OctalAdc/FPGA/DataSampler/DataSampler.xise -------------------------------------------------------------------------------- /modules/OctalAdc/FPGA/DataSampler/XuLA2.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/OctalAdc/FPGA/DataSampler/XuLA2.ucf -------------------------------------------------------------------------------- /modules/OctalAdc/FPGA/DataSampler/datasampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/OctalAdc/FPGA/DataSampler/datasampler.py -------------------------------------------------------------------------------- /modules/OctalAdc/pcb/ADCXX8S.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/OctalAdc/pcb/ADCXX8S.cmp -------------------------------------------------------------------------------- /modules/OctalAdc/pcb/ADCXX8S.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/OctalAdc/pcb/ADCXX8S.kicad_pcb -------------------------------------------------------------------------------- /modules/OctalAdc/pcb/ADCXX8S.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/OctalAdc/pcb/ADCXX8S.lib -------------------------------------------------------------------------------- /modules/OctalAdc/pcb/ADCXX8S.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/OctalAdc/pcb/ADCXX8S.net -------------------------------------------------------------------------------- /modules/OctalAdc/pcb/ADCXX8S.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/OctalAdc/pcb/ADCXX8S.pro -------------------------------------------------------------------------------- /modules/OctalAdc/pcb/ADCXX8S.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/OctalAdc/pcb/ADCXX8S.sch -------------------------------------------------------------------------------- /modules/Ps2/FPGA/KbdScannerTest/Common.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/FPGA/KbdScannerTest/Common.vhd -------------------------------------------------------------------------------- /modules/Ps2/FPGA/KbdScannerTest/KbdScanner.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/FPGA/KbdScannerTest/KbdScanner.vhd -------------------------------------------------------------------------------- /modules/Ps2/FPGA/KbdScannerTest/KbdScannerTest.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/FPGA/KbdScannerTest/KbdScannerTest.ucf -------------------------------------------------------------------------------- /modules/Ps2/FPGA/KbdScannerTest/KbdScannerTest.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/FPGA/KbdScannerTest/KbdScannerTest.xise -------------------------------------------------------------------------------- /modules/Ps2/FPGA/KbdScannerTest/LedDigits.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/FPGA/KbdScannerTest/LedDigits.vhd -------------------------------------------------------------------------------- /modules/Ps2/FPGA/KbdScannerTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/FPGA/KbdScannerTest/README.md -------------------------------------------------------------------------------- /modules/Ps2/FPGA/KbdScannerTest/kbdscannertest.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/FPGA/KbdScannerTest/kbdscannertest.bit -------------------------------------------------------------------------------- /modules/Ps2/docs/Manual/KbdSignals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/docs/Manual/KbdSignals.svg -------------------------------------------------------------------------------- /modules/Ps2/docs/Manual/StickIt-Ps2-manual-v2_0.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/docs/Manual/StickIt-Ps2-manual-v2_0.odt -------------------------------------------------------------------------------- /modules/Ps2/pcb/.solderpad/board.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/pcb/.solderpad/board.pdf -------------------------------------------------------------------------------- /modules/Ps2/pcb/.solderpad/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/pcb/.solderpad/bom.json -------------------------------------------------------------------------------- /modules/Ps2/pcb/.solderpad/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/pcb/.solderpad/photo.png -------------------------------------------------------------------------------- /modules/Ps2/pcb/.solderpad/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/pcb/.solderpad/schematic.pdf -------------------------------------------------------------------------------- /modules/Ps2/pcb/StickIt-PS2.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/pcb/StickIt-PS2.brd -------------------------------------------------------------------------------- /modules/Ps2/pcb/StickIt-PS2.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Ps2/pcb/StickIt-PS2.sch -------------------------------------------------------------------------------- /modules/RotaryEncoder/FPGA/RotaryEncoderTest/ClkGen.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/FPGA/RotaryEncoderTest/ClkGen.vhd -------------------------------------------------------------------------------- /modules/RotaryEncoder/FPGA/RotaryEncoderTest/Common.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/FPGA/RotaryEncoderTest/Common.vhd -------------------------------------------------------------------------------- /modules/RotaryEncoder/FPGA/RotaryEncoderTest/HostIo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/FPGA/RotaryEncoderTest/HostIo.vhd -------------------------------------------------------------------------------- /modules/RotaryEncoder/FPGA/RotaryEncoderTest/LedDigits.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/FPGA/RotaryEncoderTest/LedDigits.vhd -------------------------------------------------------------------------------- /modules/RotaryEncoder/FPGA/RotaryEncoderTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/FPGA/RotaryEncoderTest/README.md -------------------------------------------------------------------------------- /modules/RotaryEncoder/FPGA/RotaryEncoderTest/RotaryEncoder.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/FPGA/RotaryEncoderTest/RotaryEncoder.vhd -------------------------------------------------------------------------------- /modules/RotaryEncoder/FPGA/RotaryEncoderTest/RotaryEncoderTest-xula.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/FPGA/RotaryEncoderTest/RotaryEncoderTest-xula.ucf -------------------------------------------------------------------------------- /modules/RotaryEncoder/FPGA/RotaryEncoderTest/RotaryEncoderTest-xula2.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/FPGA/RotaryEncoderTest/RotaryEncoderTest-xula2.ucf -------------------------------------------------------------------------------- /modules/RotaryEncoder/FPGA/RotaryEncoderTest/RotaryEncoderTest.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/FPGA/RotaryEncoderTest/RotaryEncoderTest.ucf -------------------------------------------------------------------------------- /modules/RotaryEncoder/FPGA/RotaryEncoderTest/RotaryEncoderTest.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/FPGA/RotaryEncoderTest/RotaryEncoderTest.vhd -------------------------------------------------------------------------------- /modules/RotaryEncoder/FPGA/RotaryEncoderTest/RotaryEncoderTest.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/FPGA/RotaryEncoderTest/RotaryEncoderTest.xise -------------------------------------------------------------------------------- /modules/RotaryEncoder/FPGA/RotaryEncoderTest/SyncToClk.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/FPGA/RotaryEncoderTest/SyncToClk.vhd -------------------------------------------------------------------------------- /modules/RotaryEncoder/FPGA/RotaryEncoderTest/rot_enc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/FPGA/RotaryEncoderTest/rot_enc_test.py -------------------------------------------------------------------------------- /modules/RotaryEncoder/docs/Manual/RotaryEncoder-circuit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/docs/Manual/RotaryEncoder-circuit.svg -------------------------------------------------------------------------------- /modules/RotaryEncoder/docs/Manual/RotaryEncoder-waveforms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/docs/Manual/RotaryEncoder-waveforms.svg -------------------------------------------------------------------------------- /modules/RotaryEncoder/docs/Manual/StickIt-RotaryEncoder-manual-v1_0.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/docs/Manual/StickIt-RotaryEncoder-manual-v1_0.odt -------------------------------------------------------------------------------- /modules/RotaryEncoder/pcb/StickIt-RotaryEncoder.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/pcb/StickIt-RotaryEncoder.brd -------------------------------------------------------------------------------- /modules/RotaryEncoder/pcb/StickIt-RotaryEncoder.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/RotaryEncoder/pcb/StickIt-RotaryEncoder.sch -------------------------------------------------------------------------------- /modules/Template/pcb/StickIt-Template.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Template/pcb/StickIt-Template.brd -------------------------------------------------------------------------------- /modules/Template/pcb/StickIt-Template.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Template/pcb/StickIt-Template.sch -------------------------------------------------------------------------------- /modules/Vga/FPGA/PixelVgaTest/PixelVgaTest-xula.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/FPGA/PixelVgaTest/PixelVgaTest-xula.ucf -------------------------------------------------------------------------------- /modules/Vga/FPGA/PixelVgaTest/PixelVgaTest.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/FPGA/PixelVgaTest/PixelVgaTest.xise -------------------------------------------------------------------------------- /modules/Vga/FPGA/PixelVgaTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/FPGA/PixelVgaTest/README.md -------------------------------------------------------------------------------- /modules/Vga/FPGA/PixelVgaTest/img_1024x792.xes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/FPGA/PixelVgaTest/img_1024x792.xes -------------------------------------------------------------------------------- /modules/Vga/FPGA/PixelVgaTest/img_800x600.xes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/FPGA/PixelVgaTest/img_800x600.xes -------------------------------------------------------------------------------- /modules/Vga/FPGA/PixelVgaTest/pixelvgatest-xula2.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/FPGA/PixelVgaTest/pixelvgatest-xula2.ucf -------------------------------------------------------------------------------- /modules/Vga/docs/Manual/ResistorDac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/docs/Manual/ResistorDac.svg -------------------------------------------------------------------------------- /modules/Vga/docs/Manual/StickIt-Vga-manual.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/docs/Manual/StickIt-Vga-manual.odt -------------------------------------------------------------------------------- /modules/Vga/docs/Manual/VgaTiming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/docs/Manual/VgaTiming.svg -------------------------------------------------------------------------------- /modules/Vga/docs/Manual/pinout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/docs/Manual/pinout.svg -------------------------------------------------------------------------------- /modules/Vga/pcb/.solderpad/board.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/pcb/.solderpad/board.pdf -------------------------------------------------------------------------------- /modules/Vga/pcb/.solderpad/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/pcb/.solderpad/bom.json -------------------------------------------------------------------------------- /modules/Vga/pcb/.solderpad/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/pcb/.solderpad/photo.jpg -------------------------------------------------------------------------------- /modules/Vga/pcb/.solderpad/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/pcb/.solderpad/schematic.pdf -------------------------------------------------------------------------------- /modules/Vga/pcb/StickIt-Vga.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/pcb/StickIt-Vga.brd -------------------------------------------------------------------------------- /modules/Vga/pcb/StickIt-Vga.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xesscorp/StickIt/HEAD/modules/Vga/pcb/StickIt-Vga.sch --------------------------------------------------------------------------------