├── .gitignore ├── LICENSE ├── README.md ├── doc ├── 1541-rebuild-schaltplan.pdf ├── 1541-rebuild.odt ├── 1541-rebuild.pdf ├── 1541-rebuild_bom.ods ├── 1541-rebuild_bom.pdf ├── bedienung_entwurf.txt ├── fotos │ ├── 1541-rebuild.png │ ├── 1541-rebuild_raytraced.png │ ├── byte_ready_cut_gatearray.jpg │ ├── platine_rev_1.4.0 │ │ ├── IMG_20200430_231529.jpg │ │ ├── IMG_20200430_232355.jpg │ │ ├── IMG_20200430_232406.jpg │ │ └── IMG_20200430_232413.jpg │ ├── prototyp_lochraster_v1.1 │ │ ├── IMG_20180418_214205.jpg │ │ ├── IMG_20180418_214222.jpg │ │ ├── IMG_20180418_214328.jpg │ │ └── IMG_20180418_214337.jpg │ ├── testaufbau_mit_sd_karte │ │ ├── P9200087.JPG │ │ ├── P9200088.JPG │ │ ├── PA010089.JPG │ │ ├── PA010090.JPG │ │ ├── PA010091.JPG │ │ ├── PA010092.JPG │ │ ├── PA010093.JPG │ │ ├── PA010094.JPG │ │ ├── PA010095.JPG │ │ ├── PA010096.JPG │ │ ├── PB220001.JPG │ │ └── PB220002.JPG │ └── testaufbau_noch_ohne_sd_karte │ │ ├── P9140087.JPG │ │ ├── P9140088.JPG │ │ ├── P9140089.JPG │ │ ├── P9140090.JPG │ │ ├── P9140091.JPG │ │ ├── P9140092.JPG │ │ └── P9140093.JPG ├── gesammelte_infos │ ├── 1541-II.340503.gif │ ├── 1541-II_Schaltplan.gif │ ├── 1541_II_platinenaße_max.jpg │ ├── 1541_kurz_platinenaße_max.jpg │ ├── 1541_pcb_250448.pdf │ ├── 1541_short_platinenaße_max.jpg │ ├── 6522-VIA.txt │ ├── 6522.txt │ ├── D64.TXT │ ├── G64.TXT │ ├── Schaltplan_1541_II.pdf │ ├── g64_images │ │ ├── aceoace.g64 │ │ └── aceoace_track18_gcr.raw │ ├── iec_bus_captures │ │ ├── 1541_real_turrican1.vcd │ │ ├── 1541_rebuild_turrican1.vcd │ │ ├── emu64_turrican1.vcd │ │ ├── readme.txt │ │ └── turrican1-s1.d64 │ ├── mos_6522 │ │ ├── 6522-01.gif │ │ ├── 6522-02.gif │ │ ├── 6522-03.gif │ │ ├── 6522-04.gif │ │ ├── 6522-05.gif │ │ ├── 6522-06.gif │ │ ├── 6522-07.gif │ │ ├── 6522-08.gif │ │ ├── 6522-09.gif │ │ ├── 6522-10.gif │ │ ├── 6522-11.gif │ │ ├── 6522-12.gif │ │ ├── 6522-13.gif │ │ ├── 6522-14.gif │ │ ├── 6522-15.gif │ │ ├── 6522-16.gif │ │ ├── 6522-17.gif │ │ ├── 6522-18.gif │ │ ├── 6522-19.gif │ │ ├── 6522-20.gif │ │ ├── 6522-21.gif │ │ ├── 6522-22.gif │ │ ├── 6522-23.gif │ │ └── 6522-24.gif │ ├── sd_an_microcontroller.jpg │ ├── sd_card_pinbelegung.jpg │ └── synertek_sy6522.pdf └── oscilloskope_bilder_real_hardware │ ├── alle_15ms_wird_SOE_high_im_leerlauf.png │ ├── byte_ready(blau)_und_SOE.png │ ├── byte_ready(blau)_und_SOE_im_leerlauf.png │ ├── byte_ready_impulstime.png │ ├── byte_ready_min_time.png │ ├── byte_ready_time_track18.png │ ├── byte_ready_track18_zoom.png │ ├── sync_time.png │ ├── sync_track18_abstand_block.png │ ├── time_zwischen_2_byte_ready_signale.png │ └── time_zwischen_sync_header_und_block_track18.png ├── firmware ├── Doxyfile ├── Makefile ├── create_doc.sh ├── del_doc.sh ├── gui_constants.h ├── lcd.c ├── lcd.h ├── main.c ├── main.h ├── menu.c ├── menu.h ├── menu_sim │ ├── .gitignore │ ├── lcd_widget.cpp │ ├── lcd_widget.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── menu_sim.pro ├── sd_card_lib │ ├── ChangeLog │ ├── FAQ │ ├── byteordering.c │ ├── byteordering.h │ ├── fat.c │ ├── fat.h │ ├── fat_config.h │ ├── partition.c │ ├── partition.h │ ├── partition_config.h │ ├── sd-reader_config.h │ ├── sd_raw.c │ ├── sd_raw.h │ ├── sd_raw_config.h │ ├── uart.c │ └── uart.h ├── settings.c ├── settings.h └── version.h └── hardware ├── 1541-rebuild-cache.dcm ├── 1541-rebuild-cache.lib ├── 1541-rebuild.kicad_pcb ├── 1541-rebuild.net ├── 1541-rebuild.pro ├── 1541-rebuild.sch ├── gerber ├── 1541-rebuild-gerber_rev_1.3.5.rar └── 1541-rebuild-gerber_rev_1.4.0.zip ├── lcd.sch ├── readme.txt ├── sym-lib-table └── via6522_sockel.sch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/README.md -------------------------------------------------------------------------------- /doc/1541-rebuild-schaltplan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/1541-rebuild-schaltplan.pdf -------------------------------------------------------------------------------- /doc/1541-rebuild.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/1541-rebuild.odt -------------------------------------------------------------------------------- /doc/1541-rebuild.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/1541-rebuild.pdf -------------------------------------------------------------------------------- /doc/1541-rebuild_bom.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/1541-rebuild_bom.ods -------------------------------------------------------------------------------- /doc/1541-rebuild_bom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/1541-rebuild_bom.pdf -------------------------------------------------------------------------------- /doc/bedienung_entwurf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/bedienung_entwurf.txt -------------------------------------------------------------------------------- /doc/fotos/1541-rebuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/1541-rebuild.png -------------------------------------------------------------------------------- /doc/fotos/1541-rebuild_raytraced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/1541-rebuild_raytraced.png -------------------------------------------------------------------------------- /doc/fotos/byte_ready_cut_gatearray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/byte_ready_cut_gatearray.jpg -------------------------------------------------------------------------------- /doc/fotos/platine_rev_1.4.0/IMG_20200430_231529.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/platine_rev_1.4.0/IMG_20200430_231529.jpg -------------------------------------------------------------------------------- /doc/fotos/platine_rev_1.4.0/IMG_20200430_232355.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/platine_rev_1.4.0/IMG_20200430_232355.jpg -------------------------------------------------------------------------------- /doc/fotos/platine_rev_1.4.0/IMG_20200430_232406.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/platine_rev_1.4.0/IMG_20200430_232406.jpg -------------------------------------------------------------------------------- /doc/fotos/platine_rev_1.4.0/IMG_20200430_232413.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/platine_rev_1.4.0/IMG_20200430_232413.jpg -------------------------------------------------------------------------------- /doc/fotos/prototyp_lochraster_v1.1/IMG_20180418_214205.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/prototyp_lochraster_v1.1/IMG_20180418_214205.jpg -------------------------------------------------------------------------------- /doc/fotos/prototyp_lochraster_v1.1/IMG_20180418_214222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/prototyp_lochraster_v1.1/IMG_20180418_214222.jpg -------------------------------------------------------------------------------- /doc/fotos/prototyp_lochraster_v1.1/IMG_20180418_214328.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/prototyp_lochraster_v1.1/IMG_20180418_214328.jpg -------------------------------------------------------------------------------- /doc/fotos/prototyp_lochraster_v1.1/IMG_20180418_214337.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/prototyp_lochraster_v1.1/IMG_20180418_214337.jpg -------------------------------------------------------------------------------- /doc/fotos/testaufbau_mit_sd_karte/P9200087.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_mit_sd_karte/P9200087.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_mit_sd_karte/P9200088.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_mit_sd_karte/P9200088.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_mit_sd_karte/PA010089.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_mit_sd_karte/PA010089.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_mit_sd_karte/PA010090.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_mit_sd_karte/PA010090.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_mit_sd_karte/PA010091.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_mit_sd_karte/PA010091.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_mit_sd_karte/PA010092.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_mit_sd_karte/PA010092.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_mit_sd_karte/PA010093.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_mit_sd_karte/PA010093.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_mit_sd_karte/PA010094.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_mit_sd_karte/PA010094.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_mit_sd_karte/PA010095.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_mit_sd_karte/PA010095.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_mit_sd_karte/PA010096.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_mit_sd_karte/PA010096.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_mit_sd_karte/PB220001.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_mit_sd_karte/PB220001.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_mit_sd_karte/PB220002.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_mit_sd_karte/PB220002.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_noch_ohne_sd_karte/P9140087.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_noch_ohne_sd_karte/P9140087.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_noch_ohne_sd_karte/P9140088.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_noch_ohne_sd_karte/P9140088.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_noch_ohne_sd_karte/P9140089.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_noch_ohne_sd_karte/P9140089.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_noch_ohne_sd_karte/P9140090.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_noch_ohne_sd_karte/P9140090.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_noch_ohne_sd_karte/P9140091.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_noch_ohne_sd_karte/P9140091.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_noch_ohne_sd_karte/P9140092.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_noch_ohne_sd_karte/P9140092.JPG -------------------------------------------------------------------------------- /doc/fotos/testaufbau_noch_ohne_sd_karte/P9140093.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/fotos/testaufbau_noch_ohne_sd_karte/P9140093.JPG -------------------------------------------------------------------------------- /doc/gesammelte_infos/1541-II.340503.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/1541-II.340503.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/1541-II_Schaltplan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/1541-II_Schaltplan.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/1541_II_platinenaße_max.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/1541_II_platinenaße_max.jpg -------------------------------------------------------------------------------- /doc/gesammelte_infos/1541_kurz_platinenaße_max.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/1541_kurz_platinenaße_max.jpg -------------------------------------------------------------------------------- /doc/gesammelte_infos/1541_pcb_250448.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/1541_pcb_250448.pdf -------------------------------------------------------------------------------- /doc/gesammelte_infos/1541_short_platinenaße_max.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/1541_short_platinenaße_max.jpg -------------------------------------------------------------------------------- /doc/gesammelte_infos/6522-VIA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/6522-VIA.txt -------------------------------------------------------------------------------- /doc/gesammelte_infos/6522.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/6522.txt -------------------------------------------------------------------------------- /doc/gesammelte_infos/D64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/D64.TXT -------------------------------------------------------------------------------- /doc/gesammelte_infos/G64.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/G64.TXT -------------------------------------------------------------------------------- /doc/gesammelte_infos/Schaltplan_1541_II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/Schaltplan_1541_II.pdf -------------------------------------------------------------------------------- /doc/gesammelte_infos/g64_images/aceoace.g64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/g64_images/aceoace.g64 -------------------------------------------------------------------------------- /doc/gesammelte_infos/g64_images/aceoace_track18_gcr.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/g64_images/aceoace_track18_gcr.raw -------------------------------------------------------------------------------- /doc/gesammelte_infos/iec_bus_captures/1541_real_turrican1.vcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/iec_bus_captures/1541_real_turrican1.vcd -------------------------------------------------------------------------------- /doc/gesammelte_infos/iec_bus_captures/1541_rebuild_turrican1.vcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/iec_bus_captures/1541_rebuild_turrican1.vcd -------------------------------------------------------------------------------- /doc/gesammelte_infos/iec_bus_captures/emu64_turrican1.vcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/iec_bus_captures/emu64_turrican1.vcd -------------------------------------------------------------------------------- /doc/gesammelte_infos/iec_bus_captures/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/iec_bus_captures/readme.txt -------------------------------------------------------------------------------- /doc/gesammelte_infos/iec_bus_captures/turrican1-s1.d64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/iec_bus_captures/turrican1-s1.d64 -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-01.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-02.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-03.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-04.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-05.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-06.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-07.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-08.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-09.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-09.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-10.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-11.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-12.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-13.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-14.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-15.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-16.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-17.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-18.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-19.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-20.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-21.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-22.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-23.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/mos_6522/6522-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/mos_6522/6522-24.gif -------------------------------------------------------------------------------- /doc/gesammelte_infos/sd_an_microcontroller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/sd_an_microcontroller.jpg -------------------------------------------------------------------------------- /doc/gesammelte_infos/sd_card_pinbelegung.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/sd_card_pinbelegung.jpg -------------------------------------------------------------------------------- /doc/gesammelte_infos/synertek_sy6522.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/gesammelte_infos/synertek_sy6522.pdf -------------------------------------------------------------------------------- /doc/oscilloskope_bilder_real_hardware/alle_15ms_wird_SOE_high_im_leerlauf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/oscilloskope_bilder_real_hardware/alle_15ms_wird_SOE_high_im_leerlauf.png -------------------------------------------------------------------------------- /doc/oscilloskope_bilder_real_hardware/byte_ready(blau)_und_SOE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/oscilloskope_bilder_real_hardware/byte_ready(blau)_und_SOE.png -------------------------------------------------------------------------------- /doc/oscilloskope_bilder_real_hardware/byte_ready(blau)_und_SOE_im_leerlauf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/oscilloskope_bilder_real_hardware/byte_ready(blau)_und_SOE_im_leerlauf.png -------------------------------------------------------------------------------- /doc/oscilloskope_bilder_real_hardware/byte_ready_impulstime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/oscilloskope_bilder_real_hardware/byte_ready_impulstime.png -------------------------------------------------------------------------------- /doc/oscilloskope_bilder_real_hardware/byte_ready_min_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/oscilloskope_bilder_real_hardware/byte_ready_min_time.png -------------------------------------------------------------------------------- /doc/oscilloskope_bilder_real_hardware/byte_ready_time_track18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/oscilloskope_bilder_real_hardware/byte_ready_time_track18.png -------------------------------------------------------------------------------- /doc/oscilloskope_bilder_real_hardware/byte_ready_track18_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/oscilloskope_bilder_real_hardware/byte_ready_track18_zoom.png -------------------------------------------------------------------------------- /doc/oscilloskope_bilder_real_hardware/sync_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/oscilloskope_bilder_real_hardware/sync_time.png -------------------------------------------------------------------------------- /doc/oscilloskope_bilder_real_hardware/sync_track18_abstand_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/oscilloskope_bilder_real_hardware/sync_track18_abstand_block.png -------------------------------------------------------------------------------- /doc/oscilloskope_bilder_real_hardware/time_zwischen_2_byte_ready_signale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/oscilloskope_bilder_real_hardware/time_zwischen_2_byte_ready_signale.png -------------------------------------------------------------------------------- /doc/oscilloskope_bilder_real_hardware/time_zwischen_sync_header_und_block_track18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/doc/oscilloskope_bilder_real_hardware/time_zwischen_sync_header_und_block_track18.png -------------------------------------------------------------------------------- /firmware/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/Doxyfile -------------------------------------------------------------------------------- /firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/Makefile -------------------------------------------------------------------------------- /firmware/create_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/create_doc.sh -------------------------------------------------------------------------------- /firmware/del_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/del_doc.sh -------------------------------------------------------------------------------- /firmware/gui_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/gui_constants.h -------------------------------------------------------------------------------- /firmware/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/lcd.c -------------------------------------------------------------------------------- /firmware/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/lcd.h -------------------------------------------------------------------------------- /firmware/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/main.c -------------------------------------------------------------------------------- /firmware/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/main.h -------------------------------------------------------------------------------- /firmware/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/menu.c -------------------------------------------------------------------------------- /firmware/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/menu.h -------------------------------------------------------------------------------- /firmware/menu_sim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/menu_sim/.gitignore -------------------------------------------------------------------------------- /firmware/menu_sim/lcd_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/menu_sim/lcd_widget.cpp -------------------------------------------------------------------------------- /firmware/menu_sim/lcd_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/menu_sim/lcd_widget.h -------------------------------------------------------------------------------- /firmware/menu_sim/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/menu_sim/main.cpp -------------------------------------------------------------------------------- /firmware/menu_sim/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/menu_sim/mainwindow.cpp -------------------------------------------------------------------------------- /firmware/menu_sim/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/menu_sim/mainwindow.h -------------------------------------------------------------------------------- /firmware/menu_sim/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/menu_sim/mainwindow.ui -------------------------------------------------------------------------------- /firmware/menu_sim/menu_sim.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/menu_sim/menu_sim.pro -------------------------------------------------------------------------------- /firmware/sd_card_lib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/ChangeLog -------------------------------------------------------------------------------- /firmware/sd_card_lib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/FAQ -------------------------------------------------------------------------------- /firmware/sd_card_lib/byteordering.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/byteordering.c -------------------------------------------------------------------------------- /firmware/sd_card_lib/byteordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/byteordering.h -------------------------------------------------------------------------------- /firmware/sd_card_lib/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/fat.c -------------------------------------------------------------------------------- /firmware/sd_card_lib/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/fat.h -------------------------------------------------------------------------------- /firmware/sd_card_lib/fat_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/fat_config.h -------------------------------------------------------------------------------- /firmware/sd_card_lib/partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/partition.c -------------------------------------------------------------------------------- /firmware/sd_card_lib/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/partition.h -------------------------------------------------------------------------------- /firmware/sd_card_lib/partition_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/partition_config.h -------------------------------------------------------------------------------- /firmware/sd_card_lib/sd-reader_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/sd-reader_config.h -------------------------------------------------------------------------------- /firmware/sd_card_lib/sd_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/sd_raw.c -------------------------------------------------------------------------------- /firmware/sd_card_lib/sd_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/sd_raw.h -------------------------------------------------------------------------------- /firmware/sd_card_lib/sd_raw_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/sd_raw_config.h -------------------------------------------------------------------------------- /firmware/sd_card_lib/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/uart.c -------------------------------------------------------------------------------- /firmware/sd_card_lib/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/sd_card_lib/uart.h -------------------------------------------------------------------------------- /firmware/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/settings.c -------------------------------------------------------------------------------- /firmware/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/settings.h -------------------------------------------------------------------------------- /firmware/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/firmware/version.h -------------------------------------------------------------------------------- /hardware/1541-rebuild-cache.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /hardware/1541-rebuild-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/hardware/1541-rebuild-cache.lib -------------------------------------------------------------------------------- /hardware/1541-rebuild.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/hardware/1541-rebuild.kicad_pcb -------------------------------------------------------------------------------- /hardware/1541-rebuild.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/hardware/1541-rebuild.net -------------------------------------------------------------------------------- /hardware/1541-rebuild.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/hardware/1541-rebuild.pro -------------------------------------------------------------------------------- /hardware/1541-rebuild.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/hardware/1541-rebuild.sch -------------------------------------------------------------------------------- /hardware/gerber/1541-rebuild-gerber_rev_1.3.5.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/hardware/gerber/1541-rebuild-gerber_rev_1.3.5.rar -------------------------------------------------------------------------------- /hardware/gerber/1541-rebuild-gerber_rev_1.4.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/hardware/gerber/1541-rebuild-gerber_rev_1.4.0.zip -------------------------------------------------------------------------------- /hardware/lcd.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/hardware/lcd.sch -------------------------------------------------------------------------------- /hardware/readme.txt: -------------------------------------------------------------------------------- 1 | Die Hardware wurde mit KiCad Version 5.1.4 erstellt. 2 | -------------------------------------------------------------------------------- /hardware/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/hardware/sym-lib-table -------------------------------------------------------------------------------- /hardware/via6522_sockel.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThKattanek/1541-rebuild/HEAD/hardware/via6522_sockel.sch --------------------------------------------------------------------------------