├── .gitignore ├── FreeRTOS ├── License │ └── license.txt ├── README_1st.txt ├── Source │ ├── croutine.c │ ├── event_groups.c │ ├── include │ │ ├── FreeRTOS.h │ │ ├── StackMacros.h │ │ ├── croutine.h │ │ ├── deprecated_definitions.h │ │ ├── event_groups.h │ │ ├── list.h │ │ ├── mpu_prototypes.h │ │ ├── mpu_wrappers.h │ │ ├── portable.h │ │ ├── projdefs.h │ │ ├── queue.h │ │ ├── semphr.h │ │ ├── stdint.readme │ │ ├── task.h │ │ └── timers.h │ ├── list.c │ ├── portable │ │ ├── Common │ │ │ └── mpu_wrappers.c │ │ ├── GCC │ │ │ ├── ARM_CM3 │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ │ ├── ARM_CM3_MPU │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ │ ├── ARM_CM4F │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ │ └── ARM_CM4_MPU │ │ │ │ ├── port.c │ │ │ │ └── portmacro.h │ │ ├── MemMang │ │ │ ├── LICENSE.TXT │ │ │ ├── ReadMe.url │ │ │ ├── dbglog.h │ │ │ ├── heap_1.c │ │ │ ├── heap_2.c │ │ │ ├── heap_3.c │ │ │ ├── heap_4.c │ │ │ └── heap_5.c │ │ └── readme.txt │ ├── queue.c │ ├── readme.txt │ ├── tasks.c │ └── timers.c └── readme.txt ├── apps ├── benchmarks │ ├── clock_accuracy_tester │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ ├── iic_access │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── benchmark.c │ │ ├── benchmark.h │ │ └── mios32_config.h │ ├── midi_out │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── benchmark.c │ │ ├── benchmark.h │ │ ├── dhcpc.c │ │ ├── dhcpc.h │ │ ├── mios32_config.h │ │ ├── osc_client.c │ │ ├── osc_client.h │ │ ├── osc_server.c │ │ ├── osc_server.h │ │ ├── shell.c │ │ ├── shell.h │ │ ├── telnetd.c │ │ ├── telnetd.h │ │ ├── uip-conf.h │ │ ├── uip_task.c │ │ └── uip_task.h │ ├── midi_parser │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── benchmark.c │ │ ├── benchmark.h │ │ └── mios32_config.h │ └── seq_scheduler │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── benchmark.c │ │ ├── benchmark.h │ │ ├── mb_midifile_demo.inc │ │ ├── mid_file.c │ │ ├── mid_file.h │ │ └── mios32_config.h ├── controllers │ ├── blm_scalar │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── mios32_config.h │ │ ├── sysex.c │ │ └── sysex.h │ ├── midibox_kb_v1 │ │ ├── .cproject │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.cdt.codan.core.prefs │ │ │ ├── org.eclipse.cdt.core.prefs │ │ │ └── org.eclipse.cdt.ui.prefs │ │ ├── CHANGELOG.txt │ │ ├── Makefile │ │ ├── README.txt │ │ ├── release.sh │ │ └── src │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── mios32_config.h │ │ │ ├── presets.c │ │ │ ├── presets.h │ │ │ ├── shell.c │ │ │ ├── tasks.h │ │ │ ├── terminal.c │ │ │ └── terminal.h │ ├── midibox_lc_v2 │ │ ├── Makefile │ │ ├── README.txt │ │ ├── release.sh │ │ └── src │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── lc_dio.c │ │ │ ├── lc_dio.h │ │ │ ├── lc_dio_table.c │ │ │ ├── lc_dio_table.h │ │ │ ├── lc_dio_table_mbseq.inc │ │ │ ├── lc_gpc.c │ │ │ ├── lc_gpc.h │ │ │ ├── lc_gpc_lables.c │ │ │ ├── lc_gpc_lables.h │ │ │ ├── lc_hwcfg.c │ │ │ ├── lc_hwcfg.h │ │ │ ├── lc_lcd.c │ │ │ ├── lc_lcd.h │ │ │ ├── lc_leddigits.c │ │ │ ├── lc_leddigits.h │ │ │ ├── lc_meters.c │ │ │ ├── lc_meters.h │ │ │ ├── lc_mf.c │ │ │ ├── lc_mf.h │ │ │ ├── lc_midi.c │ │ │ ├── lc_midi.h │ │ │ ├── lc_sysex.c │ │ │ ├── lc_sysex.h │ │ │ ├── lc_vpot.c │ │ │ ├── lc_vpot.h │ │ │ ├── mios32_config.h │ │ │ ├── presets.c │ │ │ ├── presets.h │ │ │ ├── shell.c │ │ │ ├── tasks.h │ │ │ ├── terminal.c │ │ │ └── terminal.h │ ├── midibox_mm_v3 │ │ ├── Makefile │ │ ├── README.txt │ │ └── src │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── mios32_config.h │ │ │ ├── mm_dio.c │ │ │ ├── mm_dio.h │ │ │ ├── mm_dio_table.c │ │ │ ├── mm_dio_table.h │ │ │ ├── mm_gpc.c │ │ │ ├── mm_gpc.h │ │ │ ├── mm_gpc_lables.c │ │ │ ├── mm_gpc_lables.h │ │ │ ├── mm_hwcfg.c │ │ │ ├── mm_hwcfg.h │ │ │ ├── mm_lcd.c │ │ │ ├── mm_lcd.h │ │ │ ├── mm_leddigits.c │ │ │ ├── mm_leddigits.h │ │ │ ├── mm_mf.c │ │ │ ├── mm_mf.h │ │ │ ├── mm_midi.c │ │ │ ├── mm_midi.h │ │ │ ├── mm_sysex.c │ │ │ ├── mm_sysex.h │ │ │ ├── mm_vpot.c │ │ │ ├── mm_vpot.h │ │ │ ├── presets.c │ │ │ ├── presets.h │ │ │ ├── shell.c │ │ │ ├── tasks.h │ │ │ ├── terminal.c │ │ │ └── terminal.h │ ├── midibox_ng_v1 │ │ ├── .cproject │ │ ├── .project │ │ ├── CHANGELOG.txt │ │ ├── Makefile │ │ ├── README.txt │ │ ├── cfg │ │ │ ├── default │ │ │ │ ├── default.ngc │ │ │ │ └── default.ngl │ │ │ ├── midiphy │ │ │ │ ├── fluxtest.ngr │ │ │ │ ├── seq_l.ngc │ │ │ │ └── seq_r.ngc │ │ │ ├── templates │ │ │ │ ├── blofeld.ngc │ │ │ │ ├── blofeld.ngl │ │ │ │ ├── logictrl.ngc │ │ │ │ ├── lre8x2.ngc │ │ │ │ ├── lre8x2x4.ngc │ │ │ │ └── pg300.ngc │ │ │ ├── tests │ │ │ │ ├── ain.ngc │ │ │ │ ├── ain_fsr.ngc │ │ │ │ ├── ain_sw.ngc │ │ │ │ ├── ainmodes.ngc │ │ │ │ ├── ainser64.ngc │ │ │ │ ├── ainser8.ngc │ │ │ │ ├── ainser8n.ngc │ │ │ │ ├── ainserhq.ngc │ │ │ │ ├── blm16x4.ngc │ │ │ │ ├── blm16x4e.ngc │ │ │ │ ├── blm8x8.ngc │ │ │ │ ├── bnk_2sel.ngc │ │ │ │ ├── bnk_8sel.ngc │ │ │ │ ├── bnkled.ngc │ │ │ │ ├── bnkledcc.ngc │ │ │ │ ├── clcd_16.ngc │ │ │ │ ├── clcd_6.ngc │ │ │ │ ├── conditions.ngc │ │ │ │ ├── conditions.ngl │ │ │ │ ├── conev_1.ngc │ │ │ │ ├── conev_2.ngc │ │ │ │ ├── conev_3.ngc │ │ │ │ ├── conev_4.ngc │ │ │ │ ├── conev_5.ngc │ │ │ │ ├── conev_6.ngc │ │ │ │ ├── cv.ngc │ │ │ │ ├── cvhires.ngc │ │ │ │ ├── cvnotes.ngc │ │ │ │ ├── cvtransp.ngc │ │ │ │ ├── dimled.ngc │ │ │ │ ├── dimled_m.ngc │ │ │ │ ├── diocfg_1.ngc │ │ │ │ ├── diocfg_2.ngc │ │ │ │ ├── diocfg_3.ngc │ │ │ │ ├── diocfg_4.ngc │ │ │ │ ├── ebnkpart.ngc │ │ │ │ ├── emu_enc.ngc │ │ │ │ ├── encbanks.ngc │ │ │ │ ├── encspeed.ngc │ │ │ │ ├── fwd.ngc │ │ │ │ ├── glcd1306.ngc │ │ │ │ ├── glcdfont.ngc │ │ │ │ ├── kb_1.ngc │ │ │ │ ├── kb_2.ngc │ │ │ │ ├── kb_3.ngc │ │ │ │ ├── kb_4.ngc │ │ │ │ ├── kb_5.ngc │ │ │ │ ├── kb_6.ngc │ │ │ │ ├── kb_6.ngr │ │ │ │ ├── lcbanks.ngc │ │ │ │ ├── leddig1.ngc │ │ │ │ ├── leddig2.ngc │ │ │ │ ├── mapain.ngc │ │ │ │ ├── mapbtn.ngc │ │ │ │ ├── mapenc.ngc │ │ │ │ ├── mapmf.ngc │ │ │ │ ├── mapmidi.ngc │ │ │ │ ├── max72xx.ngc │ │ │ │ ├── mbseqrm.ngc │ │ │ │ ├── metalrn.ngc │ │ │ │ ├── mf_banks.ngc │ │ │ │ ├── mf_cc.ngc │ │ │ │ ├── mf_multi.ngc │ │ │ │ ├── midiclk.ngc │ │ │ │ ├── multi_lc.ngc │ │ │ │ ├── multibnk.ngc │ │ │ │ ├── multibnk.ngr │ │ │ │ ├── multimcu.ngc │ │ │ │ ├── nrpn.ngc │ │ │ │ ├── radiogrp.ngc │ │ │ │ ├── ranges.ngc │ │ │ │ ├── rgb_1.ngc │ │ │ │ ├── rgb_2.ngc │ │ │ │ ├── rgb_3.ngc │ │ │ │ ├── rgb_4.ngc │ │ │ │ ├── rgbled_1.ngc │ │ │ │ ├── rgbled_2.ngc │ │ │ │ ├── rgbled_2.ngr │ │ │ │ ├── rgbled_3.ngc │ │ │ │ ├── runscr1.ngc │ │ │ │ ├── runscr1.ngr │ │ │ │ ├── runscr2.ngc │ │ │ │ ├── runscr2.ngr │ │ │ │ ├── runscr3.ngc │ │ │ │ ├── runscr3.ngr │ │ │ │ ├── runscr4.ngc │ │ │ │ ├── runscr4.ngr │ │ │ │ ├── runscr5.ngc │ │ │ │ ├── runscr5.ngl │ │ │ │ ├── runscr5.ngr │ │ │ │ ├── runscr6.ngc │ │ │ │ ├── runscr6.ngr │ │ │ │ ├── scs.ngc │ │ │ │ ├── seq1.ngc │ │ │ │ ├── seq1.ngr │ │ │ │ ├── seq2.ngc │ │ │ │ ├── seq2.ngr │ │ │ │ ├── seq3.ngc │ │ │ │ ├── seq3.ngr │ │ │ │ ├── syxlabel.ngc │ │ │ │ ├── syxtxt.ngc │ │ │ │ └── tpd.ngc │ │ │ └── tk │ │ │ │ ├── enc_mlcd.ngc │ │ │ │ ├── mb16enc.ngc │ │ │ │ ├── mbcv.ngc │ │ │ │ ├── mbseq.ngc │ │ │ │ ├── mbseqp.ngc │ │ │ │ └── osc_def.ngc │ │ ├── doc │ │ │ └── Doxyfile │ │ ├── release.sh │ │ ├── src │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── mbng_ain.c │ │ │ ├── mbng_ain.h │ │ │ ├── mbng_ainser.c │ │ │ ├── mbng_ainser.h │ │ │ ├── mbng_cv.c │ │ │ ├── mbng_cv.h │ │ │ ├── mbng_din.c │ │ │ ├── mbng_din.h │ │ │ ├── mbng_dio.c │ │ │ ├── mbng_dio.h │ │ │ ├── mbng_dout.c │ │ │ ├── mbng_dout.h │ │ │ ├── mbng_enc.c │ │ │ ├── mbng_enc.h │ │ │ ├── mbng_event.c │ │ │ ├── mbng_event.h │ │ │ ├── mbng_file.c │ │ │ ├── mbng_file.h │ │ │ ├── mbng_file_c.c │ │ │ ├── mbng_file_c.h │ │ │ ├── mbng_file_k.c │ │ │ ├── mbng_file_k.h │ │ │ ├── mbng_file_l.c │ │ │ ├── mbng_file_l.h │ │ │ ├── mbng_file_r.c │ │ │ ├── mbng_file_r.h │ │ │ ├── mbng_file_s.c │ │ │ ├── mbng_file_s.h │ │ │ ├── mbng_kb.c │ │ │ ├── mbng_kb.h │ │ │ ├── mbng_lcd.c │ │ │ ├── mbng_lcd.h │ │ │ ├── mbng_matrix.c │ │ │ ├── mbng_matrix.h │ │ │ ├── mbng_mf.c │ │ │ ├── mbng_mf.h │ │ │ ├── mbng_patch.c │ │ │ ├── mbng_patch.h │ │ │ ├── mbng_rgbled.c │ │ │ ├── mbng_rgbled.h │ │ │ ├── mbng_seq.c │ │ │ ├── mbng_seq.h │ │ │ ├── mbng_sysex.c │ │ │ ├── mbng_sysex.h │ │ │ ├── mios32_config.h │ │ │ ├── scs_config.c │ │ │ ├── scs_config.h │ │ │ ├── tasks.h │ │ │ ├── terminal.c │ │ │ └── terminal.h │ │ ├── tools │ │ │ ├── gen_colour_maps.pl │ │ │ ├── mbseqhwcfgwilba_to_id.pl │ │ │ └── patterns.pl │ │ └── touchosc │ │ │ └── bidirectional_cc_via_osc.touchosc │ └── midio128_v3 │ │ ├── CHANGELOG.txt │ │ ├── Makefile │ │ ├── README.txt │ │ ├── doc │ │ └── midio128_sysex_implementation.txt │ │ ├── release.sh │ │ └── src │ │ ├── app.c │ │ ├── app.h │ │ ├── mid_file.c │ │ ├── mid_file.h │ │ ├── midio_ain.c │ │ ├── midio_ain.h │ │ ├── midio_din.c │ │ ├── midio_din.h │ │ ├── midio_dout.c │ │ ├── midio_dout.h │ │ ├── midio_file.c │ │ ├── midio_file.h │ │ ├── midio_file_p.c │ │ ├── midio_file_p.h │ │ ├── midio_matrix.c │ │ ├── midio_matrix.h │ │ ├── midio_patch.c │ │ ├── midio_patch.h │ │ ├── midio_sysex.c │ │ ├── midio_sysex.h │ │ ├── mios32_config.h │ │ ├── scs_config.c │ │ ├── scs_config.h │ │ ├── seq.c │ │ ├── seq.h │ │ ├── tasks.h │ │ ├── terminal.c │ │ └── terminal.h ├── examples │ ├── blm │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ ├── blm_cheapo │ │ ├── Makefile │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ ├── blm_scalar_communication │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ ├── blm_x │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ ├── com_console │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── console.c │ │ ├── console.h │ │ └── mios32_config.h │ ├── cv_autotune │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── frq_meter.c │ │ ├── frq_meter.h │ │ ├── mios32_config.h │ │ └── schematics │ │ │ ├── comparator_circuit_lpc17.pdf │ │ │ ├── comparator_circuit_lpc17.ps │ │ │ ├── comparator_circuit_stm32.pdf │ │ │ ├── comparator_circuit_stm32.ps │ │ │ └── comparator_waveforms.jpg │ ├── dmx │ │ ├── Makefile │ │ ├── app.c │ │ ├── app.h │ │ ├── glcd_font_faders.c │ │ ├── mios32_config.h │ │ └── test │ │ │ ├── Art-Net.h │ │ │ ├── Makefile │ │ │ ├── RDM.h │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── chase.h │ │ │ ├── dhcpc.c │ │ │ ├── dhcpc.h │ │ │ ├── fs.c │ │ │ ├── fs.h │ │ │ ├── mios32_config.h │ │ │ ├── osc_client.c │ │ │ ├── osc_client.h │ │ │ ├── osc_server.c │ │ │ ├── osc_server.h │ │ │ ├── shell.c │ │ │ ├── shell.h │ │ │ ├── telnet.c │ │ │ ├── telnet.h │ │ │ ├── telnetd.c │ │ │ ├── telnetd.h │ │ │ ├── uip-conf.h │ │ │ ├── uip_task.c │ │ │ ├── uip_task.h │ │ │ ├── xml.c │ │ │ └── xml.h │ ├── ethernet │ │ ├── osc │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── dhcpc.c │ │ │ ├── dhcpc.h │ │ │ ├── mios32_config.h │ │ │ ├── osc_client.c │ │ │ ├── osc_client.h │ │ │ ├── osc_server.c │ │ │ ├── osc_server.h │ │ │ ├── shell.c │ │ │ ├── shell.h │ │ │ ├── telnetd.c │ │ │ ├── telnetd.h │ │ │ ├── uip-conf.h │ │ │ ├── uip_task.c │ │ │ └── uip_task.h │ │ ├── telnet │ │ │ ├── Makefile │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── dhcpc.c │ │ │ ├── dhcpc.h │ │ │ ├── mios32_config.h │ │ │ ├── telnet.c │ │ │ ├── telnet.h │ │ │ ├── uip-conf.h │ │ │ ├── uip_task.c │ │ │ └── uip_task.h │ │ ├── telnetd │ │ │ ├── Makefile │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── dhcpc.c │ │ │ ├── dhcpc.h │ │ │ ├── mios32_config.h │ │ │ ├── shell.c │ │ │ ├── shell.h │ │ │ ├── telnetd.c │ │ │ ├── telnetd.h │ │ │ ├── uip-conf.h │ │ │ ├── uip_task.c │ │ │ └── uip_task.h │ │ └── webserver │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── clock-arch.c │ │ │ ├── dhcpc.c │ │ │ ├── dhcpc.h │ │ │ ├── fs.c │ │ │ ├── fs.h │ │ │ ├── htdocs │ │ │ ├── 404.HTM │ │ │ ├── fade.png │ │ │ ├── files.sht │ │ │ ├── footer.HTM │ │ │ ├── header.HTM │ │ │ ├── index.HTM │ │ │ ├── io.sht │ │ │ ├── logo.gif │ │ │ ├── process.sht │ │ │ ├── runtime.sht │ │ │ ├── stats.sht │ │ │ ├── style.css │ │ │ └── tcp.sht │ │ │ ├── http-strings │ │ │ ├── http-strings.c │ │ │ ├── http-strings.h │ │ │ ├── httpd-cgi.c │ │ │ ├── httpd-cgi.h │ │ │ ├── httpd-fs.c │ │ │ ├── httpd-fs.h │ │ │ ├── httpd.c │ │ │ ├── httpd.h │ │ │ ├── makestrings │ │ │ ├── mios32_config.h │ │ │ ├── ntpclient.c │ │ │ ├── ntpclient.h │ │ │ ├── uip-conf.h │ │ │ ├── uip_task.c │ │ │ ├── uip_task.h │ │ │ └── webserver.h │ ├── fastscan_button_matrix_16x16 │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── doc │ │ │ ├── Keyboard to Shift Register Connections.doc │ │ │ ├── Matrix_88.gif │ │ │ └── Row Col Fast Scan pin from 0.doc │ │ ├── mios32_config.h │ │ └── util │ │ │ ├── result.txt │ │ │ └── test_pinmap.pl │ ├── max72xx │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ ├── mbnet │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── mbnet_debug.png │ │ ├── mbnet_task.c │ │ ├── mbnet_task.h │ │ ├── mios32_config.h │ │ ├── terminal.c │ │ └── terminal.h │ ├── microvga │ │ ├── Makefile │ │ ├── aa.c │ │ ├── app.c │ │ ├── app.h │ │ ├── main.c │ │ └── mios32_config.h │ ├── midi_console │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── console.c │ │ ├── console.h │ │ └── mios32_config.h │ ├── speech_synth │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── embspeech │ │ │ ├── README.txt │ │ │ └── src │ │ │ │ ├── Sounddrv.c │ │ │ │ ├── Sounddrv.h │ │ │ │ ├── en_list.h │ │ │ │ ├── mcu_otherdef.h │ │ │ │ ├── mcu_phondata.c │ │ │ │ ├── mcu_phoneme.h │ │ │ │ ├── mcu_phontab.c │ │ │ │ ├── mcu_sintab.h │ │ │ │ ├── mcu_synthdata.c │ │ │ │ ├── mcu_synthesize.c │ │ │ │ ├── mcu_synthesize.h │ │ │ │ ├── mcu_traslator.c │ │ │ │ └── mcu_wavegen.c │ │ ├── mios32_config.h │ │ ├── scs_config.c │ │ ├── scs_config.h │ │ ├── synth.c │ │ ├── synth.h │ │ ├── synth_file.c │ │ ├── synth_file.h │ │ ├── synth_file_b.c │ │ ├── synth_file_b.h │ │ └── tasks.h │ ├── srio │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ └── uwindows │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h ├── mios32_test │ ├── README.txt │ ├── app_lcd │ │ ├── clcd_multi │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ └── mios32_config.h │ │ ├── dog_g │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ └── mios32_config.h │ │ ├── ks0108 │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ └── mios32_config.h │ │ ├── pcd8544 │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ └── mios32_config.h │ │ ├── sed1520 │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ └── mios32_config.h │ │ ├── ssd1306 │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ └── mios32_config.h │ │ ├── ssd1322 │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ └── mios32_config.h │ │ ├── st7637 │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ └── mios32_config.h │ │ ├── t6963c_h │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ └── mios32_config.h │ │ └── t6963c_v │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ └── mios32_config.h │ ├── bs_check_simple │ │ ├── Makefile │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ ├── bs_rw_check │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ ├── com_terminal_esp8266 │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── esp8266_fw.inc │ │ ├── fw │ │ │ ├── 0x00000.bin │ │ │ ├── 0x00000.inc │ │ │ ├── 0x01000.bin │ │ │ ├── 0x01000.inc │ │ │ ├── 0x02000.bin │ │ │ ├── 0x02000.inc │ │ │ ├── Makefile │ │ │ └── README │ │ ├── mios32_config.h │ │ ├── terminal.c │ │ └── terminal.h │ ├── mios32_spi_midi │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── mios32_config.h │ │ ├── terminal.c │ │ └── terminal.h │ ├── rtc_check │ │ ├── Makefile │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ ├── sdcard_rw_check │ │ ├── Makefile │ │ ├── README.txt │ │ ├── WARNING_SDCARD_CONTENT_WILL_BE_DESTROYED.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ └── spi_master_slave │ │ ├── spi_j16_master │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ │ ├── spi_j16_slave_dma │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ │ └── spi_j16_slave_polling │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h ├── misc │ ├── mbsid_can_osc_proxy │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── mbnet_task.c │ │ ├── mbnet_task.h │ │ ├── mios32_config.h │ │ ├── osc_client.c │ │ ├── osc_client.h │ │ ├── osc_server.c │ │ ├── osc_server.h │ │ ├── shell.c │ │ ├── shell.h │ │ ├── telnetd.c │ │ ├── telnetd.h │ │ ├── uip-conf.h │ │ ├── uip_task.c │ │ └── uip_task.h │ ├── rgb_led_controller │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── control.c │ │ ├── control.h │ │ ├── control_config.c │ │ ├── display.c │ │ ├── display.h │ │ ├── display_config.c │ │ ├── externalheaders.c │ │ ├── externalheaders.h │ │ ├── knoepfli.xcodeproj │ │ │ ├── ALEXander.pbxuser │ │ │ ├── ALEXander.perspectivev3 │ │ │ └── project.pbxproj │ │ ├── mios32_config.h │ │ ├── sysex.c │ │ └── sysex.h │ ├── usb_mass_storage_device │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── mios32_config.h │ │ └── release.sh │ ├── usb_midi_2x2 │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── mios32_config.h │ │ ├── release.sh │ │ ├── terminal.c │ │ └── terminal.h │ ├── usb_midi_4x4 │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── mios32_config.h │ │ ├── release.sh │ │ ├── terminal.c │ │ └── terminal.h │ └── usb_osc_midi_proxy │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── mios32_config.h │ │ ├── presets.c │ │ ├── presets.h │ │ ├── shell.c │ │ ├── tasks.h │ │ ├── terminal.c │ │ └── terminal.h ├── processing │ ├── midi_force_to_scale │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── mios32_config.h │ │ ├── scale.c │ │ └── scale.h │ └── midibox_cv_v2 │ │ ├── .cproject │ │ ├── .project │ │ ├── CHANGELOG.txt │ │ ├── Makefile │ │ ├── README.txt │ │ ├── doc │ │ └── midibox_cv_sysex_implementation.txt │ │ ├── hwcfg │ │ ├── latigidon │ │ │ └── MBCV_HW.CV2 │ │ └── standard │ │ │ └── MBCV_HW.CV2 │ │ ├── lemur │ │ ├── MIDIbox_CV_V2.jzml │ │ └── README.txt │ │ ├── release.sh │ │ ├── src │ │ ├── app.cpp │ │ ├── app.h │ │ ├── components │ │ │ ├── CapChargeCurve.c │ │ │ ├── CapChargeCurve.h │ │ │ ├── MbCv.cpp │ │ │ ├── MbCv.h │ │ │ ├── MbCvArp.cpp │ │ │ ├── MbCvArp.h │ │ │ ├── MbCvClock.cpp │ │ │ ├── MbCvClock.h │ │ │ ├── MbCvEnv.cpp │ │ │ ├── MbCvEnv.h │ │ │ ├── MbCvEnvBase.cpp │ │ │ ├── MbCvEnvBase.h │ │ │ ├── MbCvEnvMulti.cpp │ │ │ ├── MbCvEnvMulti.h │ │ │ ├── MbCvEnvironment.cpp │ │ │ ├── MbCvEnvironment.h │ │ │ ├── MbCvLfo.cpp │ │ │ ├── MbCvLfo.h │ │ │ ├── MbCvMidiVoice.cpp │ │ │ ├── MbCvMidiVoice.h │ │ │ ├── MbCvMod.cpp │ │ │ ├── MbCvMod.h │ │ │ ├── MbCvPatch.cpp │ │ │ ├── MbCvPatch.h │ │ │ ├── MbCvRandomGen.cpp │ │ │ ├── MbCvRandomGen.h │ │ │ ├── MbCvScope.cpp │ │ │ ├── MbCvScope.h │ │ │ ├── MbCvSeq.cpp │ │ │ ├── MbCvSeq.h │ │ │ ├── MbCvSeqBassline.cpp │ │ │ ├── MbCvSeqBassline.h │ │ │ ├── MbCvStructs.h │ │ │ ├── MbCvTables.cpp │ │ │ ├── MbCvTables.h │ │ │ ├── MbCvVoice.cpp │ │ │ ├── MbCvVoice.h │ │ │ ├── MbCvVoiceQueue.cpp │ │ │ └── MbCvVoiceQueue.h │ │ ├── mbcv_button.cpp │ │ ├── mbcv_button.h │ │ ├── mbcv_enc.cpp │ │ ├── mbcv_enc.h │ │ ├── mbcv_file.cpp │ │ ├── mbcv_file.h │ │ ├── mbcv_file_b.cpp │ │ ├── mbcv_file_b.h │ │ ├── mbcv_file_hw.cpp │ │ ├── mbcv_file_hw.h │ │ ├── mbcv_file_p.cpp │ │ ├── mbcv_file_p.h │ │ ├── mbcv_hwcfg.c │ │ ├── mbcv_hwcfg.h │ │ ├── mbcv_lre.cpp │ │ ├── mbcv_lre.h │ │ ├── mbcv_map.cpp │ │ ├── mbcv_map.h │ │ ├── mbcv_patch.cpp │ │ ├── mbcv_patch.h │ │ ├── mbcv_rgb.cpp │ │ ├── mbcv_rgb.h │ │ ├── mbcv_sysex.cpp │ │ ├── mbcv_sysex.h │ │ ├── mios32_config.h │ │ ├── scs_config.cpp │ │ ├── scs_config.h │ │ ├── tasks.c │ │ ├── tasks.h │ │ ├── terminal.cpp │ │ └── terminal.h │ │ └── tools │ │ └── curve_c_charge.pl ├── quickies │ ├── csc │ │ ├── Makefile │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ ├── fast_srio_scan │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ └── midibox_link_ep │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h ├── sequencers │ ├── LoopA │ │ ├── .gitignore │ │ ├── CHANGELOG.txt │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── app_lcd.c │ │ ├── app_lcd.h │ │ ├── app_lcd.mk │ │ ├── attic │ │ │ ├── app_old.c │ │ │ ├── app_old.h │ │ │ ├── convBitmap.C │ │ │ ├── old_v1_loopa.c │ │ │ ├── old_v1_loopa.h │ │ │ ├── seq.c │ │ │ ├── seq.h │ │ │ └── v4_live_fwd.c │ │ ├── commonIncludes.h │ │ ├── convPNM.C │ │ ├── gfx │ │ │ ├── LoopAFontBold-B.png │ │ │ ├── LoopAFontBold-B.pnm │ │ │ ├── LoopAFontNormal-B.png │ │ │ ├── LoopAFontNormal-B.pnm │ │ │ ├── LoopAFontSmall-B.png │ │ │ ├── LoopAFontSmall-B.pnm │ │ │ ├── LoopAIconFont.png │ │ │ ├── LoopAIconFont.pnm │ │ │ ├── LoopASmallDigits-B.png │ │ │ ├── LoopASmallDigits-B.pnm │ │ │ ├── LoopASmallLogo.png │ │ │ └── LoopASmallLogo.pnm │ │ ├── gfx_resources.h │ │ ├── hardware.c │ │ ├── hardware.h │ │ ├── installation-notes.txt │ │ ├── loopa.c │ │ ├── loopa.h │ │ ├── loopa_datatypes.h │ │ ├── midi_out.c │ │ ├── midi_out.h │ │ ├── mios32_config.h │ │ ├── releases │ │ │ └── LoopA_firmware_v205.zip │ │ ├── screen.c │ │ ├── screen.h │ │ ├── setup.c │ │ ├── setup.h │ │ ├── tasks.h │ │ ├── terminal.c │ │ ├── terminal.h │ │ ├── ui.c │ │ ├── ui.h │ │ ├── voxelspace.c │ │ └── voxelspace.h │ ├── MB909 │ │ ├── Makefile │ │ ├── core │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── seq_blm.c │ │ │ ├── seq_blm.h │ │ │ ├── seq_cc.c │ │ │ ├── seq_cc.h │ │ │ ├── seq_cc_labels.c │ │ │ ├── seq_cc_labels.h │ │ │ ├── seq_chord.c │ │ │ ├── seq_chord.h │ │ │ ├── seq_core.c │ │ │ ├── seq_core.h │ │ │ ├── seq_cv.c │ │ │ ├── seq_cv.h │ │ │ ├── seq_file.c │ │ │ ├── seq_file.h │ │ │ ├── seq_file_b.c │ │ │ ├── seq_file_b.h │ │ │ ├── seq_file_bm.c │ │ │ ├── seq_file_bm.h │ │ │ ├── seq_file_c.c │ │ │ ├── seq_file_c.h │ │ │ ├── seq_file_g.c │ │ │ ├── seq_file_g.h │ │ │ ├── seq_file_gc.c │ │ │ ├── seq_file_gc.h │ │ │ ├── seq_file_hw.c │ │ │ ├── seq_file_hw.h │ │ │ ├── seq_file_m.c │ │ │ ├── seq_file_m.h │ │ │ ├── seq_file_s.c │ │ │ ├── seq_file_s.h │ │ │ ├── seq_file_t.c │ │ │ ├── seq_file_t.h │ │ │ ├── seq_groove.c │ │ │ ├── seq_groove.h │ │ │ ├── seq_humanize.c │ │ │ ├── seq_humanize.h │ │ │ ├── seq_hwcfg.c │ │ │ ├── seq_hwcfg.h │ │ │ ├── seq_label.c │ │ │ ├── seq_label.h │ │ │ ├── seq_layer.c │ │ │ ├── seq_layer.h │ │ │ ├── seq_lcd.c │ │ │ ├── seq_lcd.h │ │ │ ├── seq_lcd_logo.c │ │ │ ├── seq_lcd_logo.h │ │ │ ├── seq_lcd_logo.inc │ │ │ ├── seq_led.c │ │ │ ├── seq_led.h │ │ │ ├── seq_lfo.c │ │ │ ├── seq_lfo.h │ │ │ ├── seq_live.c │ │ │ ├── seq_live.h │ │ │ ├── seq_midexp.c │ │ │ ├── seq_midexp.h │ │ │ ├── seq_midi_in.c │ │ │ ├── seq_midi_in.h │ │ │ ├── seq_midi_port.c │ │ │ ├── seq_midi_port.h │ │ │ ├── seq_midi_router.c │ │ │ ├── seq_midi_router.h │ │ │ ├── seq_midi_sysex.c │ │ │ ├── seq_midi_sysex.h │ │ │ ├── seq_midimp.c │ │ │ ├── seq_midimp.h │ │ │ ├── seq_midply.c │ │ │ ├── seq_midply.h │ │ │ ├── seq_mixer.c │ │ │ ├── seq_mixer.h │ │ │ ├── seq_morph.c │ │ │ ├── seq_morph.h │ │ │ ├── seq_par.c │ │ │ ├── seq_par.h │ │ │ ├── seq_pattern.c │ │ │ ├── seq_pattern.h │ │ │ ├── seq_random.c │ │ │ ├── seq_random.h │ │ │ ├── seq_record.c │ │ │ ├── seq_record.h │ │ │ ├── seq_robotize.c │ │ │ ├── seq_robotize.h │ │ │ ├── seq_scale.c │ │ │ ├── seq_scale.h │ │ │ ├── seq_song.c │ │ │ ├── seq_song.h │ │ │ ├── seq_statistics.c │ │ │ ├── seq_statistics.h │ │ │ ├── seq_terminal.c │ │ │ ├── seq_terminal.h │ │ │ ├── seq_tpd.c │ │ │ ├── seq_tpd.h │ │ │ ├── seq_trg.c │ │ │ ├── seq_trg.h │ │ │ ├── seq_ui.c │ │ │ ├── seq_ui.h │ │ │ ├── seq_ui_bookmarks.c │ │ │ ├── seq_ui_bpm.c │ │ │ ├── seq_ui_bpm_presets.c │ │ │ ├── seq_ui_cv.c │ │ │ ├── seq_ui_disk.c │ │ │ ├── seq_ui_edit.c │ │ │ ├── seq_ui_eth.c │ │ │ ├── seq_ui_fx.c │ │ │ ├── seq_ui_fx_dupl.c │ │ │ ├── seq_ui_fx_echo.c │ │ │ ├── seq_ui_fx_humanize.c │ │ │ ├── seq_ui_fx_lfo.c │ │ │ ├── seq_ui_fx_limit.c │ │ │ ├── seq_ui_fx_loop.c │ │ │ ├── seq_ui_fx_robotize.c │ │ │ ├── seq_ui_fx_scale.c │ │ │ ├── seq_ui_info.c │ │ │ ├── seq_ui_lcd.c │ │ │ ├── seq_ui_manual.c │ │ │ ├── seq_ui_menu.c │ │ │ ├── seq_ui_metronome.c │ │ │ ├── seq_ui_midi.c │ │ │ ├── seq_ui_midimon.c │ │ │ ├── seq_ui_mixer.c │ │ │ ├── seq_ui_mute.c │ │ │ ├── seq_ui_opt.c │ │ │ ├── seq_ui_pages.c │ │ │ ├── seq_ui_pages.h │ │ │ ├── seq_ui_pages.inc │ │ │ ├── seq_ui_parsel.c │ │ │ ├── seq_ui_pattern.c │ │ │ ├── seq_ui_pattern_remix.c │ │ │ ├── seq_ui_pmute.c │ │ │ ├── seq_ui_save.c │ │ │ ├── seq_ui_song.c │ │ │ ├── seq_ui_stepsel.c │ │ │ ├── seq_ui_sysex.c │ │ │ ├── seq_ui_todo.c │ │ │ ├── seq_ui_tracksel.c │ │ │ ├── seq_ui_trgasg.c │ │ │ ├── seq_ui_trgsel.c │ │ │ ├── seq_ui_trkdir.c │ │ │ ├── seq_ui_trkdiv.c │ │ │ ├── seq_ui_trkeuclid.c │ │ │ ├── seq_ui_trkevnt.c │ │ │ ├── seq_ui_trkgrv.c │ │ │ ├── seq_ui_trkinst.c │ │ │ ├── seq_ui_trkjam.c │ │ │ ├── seq_ui_trklen.c │ │ │ ├── seq_ui_trklive.c │ │ │ ├── seq_ui_trklive.c.OLD │ │ │ ├── seq_ui_trkmode.c │ │ │ ├── seq_ui_trkmorph.c │ │ │ ├── seq_ui_trkrec.c │ │ │ ├── seq_ui_trkrnd.c │ │ │ ├── seq_ui_trktran.c │ │ │ ├── seq_ui_util.c │ │ │ └── tasks.h │ │ └── mios32 │ │ │ ├── mios32_config.h │ │ │ └── tasks.c │ ├── midibox_seq_v4 │ │ ├── .cproject │ │ ├── .project │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ └── settings.json │ │ ├── CHANGELOG.txt │ │ ├── Makefile │ │ ├── README.txt │ │ ├── core │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── seq_blm.c │ │ │ ├── seq_blm.h │ │ │ ├── seq_blm8x8.c │ │ │ ├── seq_blm8x8.h │ │ │ ├── seq_cc.c │ │ │ ├── seq_cc.h │ │ │ ├── seq_cc_labels.c │ │ │ ├── seq_cc_labels.h │ │ │ ├── seq_chord.c │ │ │ ├── seq_chord.h │ │ │ ├── seq_core.c │ │ │ ├── seq_core.h │ │ │ ├── seq_cv.c │ │ │ ├── seq_cv.h │ │ │ ├── seq_file.c │ │ │ ├── seq_file.h │ │ │ ├── seq_file_b.c │ │ │ ├── seq_file_b.h │ │ │ ├── seq_file_bm.c │ │ │ ├── seq_file_bm.h │ │ │ ├── seq_file_c.c │ │ │ ├── seq_file_c.h │ │ │ ├── seq_file_g.c │ │ │ ├── seq_file_g.h │ │ │ ├── seq_file_gc.c │ │ │ ├── seq_file_gc.h │ │ │ ├── seq_file_hw.c │ │ │ ├── seq_file_hw.h │ │ │ ├── seq_file_m.c │ │ │ ├── seq_file_m.h │ │ │ ├── seq_file_presets.c │ │ │ ├── seq_file_presets.h │ │ │ ├── seq_file_s.c │ │ │ ├── seq_file_s.h │ │ │ ├── seq_file_t.c │ │ │ ├── seq_file_t.h │ │ │ ├── seq_groove.c │ │ │ ├── seq_groove.h │ │ │ ├── seq_humanize.c │ │ │ ├── seq_humanize.h │ │ │ ├── seq_hwcfg.c │ │ │ ├── seq_hwcfg.h │ │ │ ├── seq_label.c │ │ │ ├── seq_label.h │ │ │ ├── seq_layer.c │ │ │ ├── seq_layer.h │ │ │ ├── seq_lcd.c │ │ │ ├── seq_lcd.h │ │ │ ├── seq_lcd_logo.c │ │ │ ├── seq_lcd_logo.h │ │ │ ├── seq_lcd_logo.inc │ │ │ ├── seq_led.c │ │ │ ├── seq_led.h │ │ │ ├── seq_lfo.c │ │ │ ├── seq_lfo.h │ │ │ ├── seq_live.c │ │ │ ├── seq_live.h │ │ │ ├── seq_midexp.c │ │ │ ├── seq_midexp.h │ │ │ ├── seq_midi_in.c │ │ │ ├── seq_midi_in.h │ │ │ ├── seq_midi_port.c │ │ │ ├── seq_midi_port.h │ │ │ ├── seq_midi_router.c │ │ │ ├── seq_midi_router.h │ │ │ ├── seq_midi_sysex.c │ │ │ ├── seq_midi_sysex.h │ │ │ ├── seq_midimp.c │ │ │ ├── seq_midimp.h │ │ │ ├── seq_midply.c │ │ │ ├── seq_midply.h │ │ │ ├── seq_mixer.c │ │ │ ├── seq_mixer.h │ │ │ ├── seq_morph.c │ │ │ ├── seq_morph.h │ │ │ ├── seq_par.c │ │ │ ├── seq_par.h │ │ │ ├── seq_pattern.c │ │ │ ├── seq_pattern.h │ │ │ ├── seq_random.c │ │ │ ├── seq_random.h │ │ │ ├── seq_record.c │ │ │ ├── seq_record.h │ │ │ ├── seq_robotize.c │ │ │ ├── seq_robotize.h │ │ │ ├── seq_scale.c │ │ │ ├── seq_scale.h │ │ │ ├── seq_song.c │ │ │ ├── seq_song.h │ │ │ ├── seq_statistics.c │ │ │ ├── seq_statistics.h │ │ │ ├── seq_terminal.c │ │ │ ├── seq_terminal.h │ │ │ ├── seq_tpd.c │ │ │ ├── seq_tpd.h │ │ │ ├── seq_trg.c │ │ │ ├── seq_trg.h │ │ │ ├── seq_ui.c │ │ │ ├── seq_ui.h │ │ │ ├── seq_ui_bookmarks.c │ │ │ ├── seq_ui_bpm.c │ │ │ ├── seq_ui_bpm_presets.c │ │ │ ├── seq_ui_cv.c │ │ │ ├── seq_ui_disk.c │ │ │ ├── seq_ui_edit.c │ │ │ ├── seq_ui_eth.c │ │ │ ├── seq_ui_fx.c │ │ │ ├── seq_ui_fx_dupl.c │ │ │ ├── seq_ui_fx_echo.c │ │ │ ├── seq_ui_fx_humanize.c │ │ │ ├── seq_ui_fx_lfo.c │ │ │ ├── seq_ui_fx_limit.c │ │ │ ├── seq_ui_fx_loop.c │ │ │ ├── seq_ui_fx_robotize.c │ │ │ ├── seq_ui_fx_scale.c │ │ │ ├── seq_ui_info.c │ │ │ ├── seq_ui_inssel.c │ │ │ ├── seq_ui_manual.c │ │ │ ├── seq_ui_menu.c │ │ │ ├── seq_ui_midi.c │ │ │ ├── seq_ui_midimon.c │ │ │ ├── seq_ui_mixer.c │ │ │ ├── seq_ui_mute.c │ │ │ ├── seq_ui_opt.c │ │ │ ├── seq_ui_pages.c │ │ │ ├── seq_ui_pages.h │ │ │ ├── seq_ui_parsel.c │ │ │ ├── seq_ui_pattern.c │ │ │ ├── seq_ui_pattern_remix.c │ │ │ ├── seq_ui_pmute.c │ │ │ ├── seq_ui_save.c │ │ │ ├── seq_ui_song.c │ │ │ ├── seq_ui_stepsel.c │ │ │ ├── seq_ui_sysex.c │ │ │ ├── seq_ui_todo.c │ │ │ ├── seq_ui_tracksel.c │ │ │ ├── seq_ui_trgasg.c │ │ │ ├── seq_ui_trgsel.c │ │ │ ├── seq_ui_trkdir.c │ │ │ ├── seq_ui_trkdiv.c │ │ │ ├── seq_ui_trkeuclid.c │ │ │ ├── seq_ui_trkevnt.c │ │ │ ├── seq_ui_trkgrv.c │ │ │ ├── seq_ui_trkinst.c │ │ │ ├── seq_ui_trkjam.c │ │ │ ├── seq_ui_trklen.c │ │ │ ├── seq_ui_trklive.c │ │ │ ├── seq_ui_trkmode.c │ │ │ ├── seq_ui_trkmorph.c │ │ │ ├── seq_ui_trkrnd.c │ │ │ ├── seq_ui_trktran.c │ │ │ ├── seq_ui_util.c │ │ │ └── tasks.h │ │ ├── doc │ │ │ ├── Doxyfile │ │ │ ├── mbseqv4_cc_implementation.txt │ │ │ ├── mbseqv4_remote_functions.txt │ │ │ └── pattern_remix_manual.txt │ │ ├── gnustep │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.gorm │ │ │ │ │ ├── Knob Add.png │ │ │ │ │ ├── Knob Attention.png │ │ │ │ │ ├── Knob Blue.png │ │ │ │ │ ├── Knob Cancel.png │ │ │ │ │ ├── Knob Download.png │ │ │ │ │ ├── Knob Fast Forward.png │ │ │ │ │ ├── Knob Fast Rewind.png │ │ │ │ │ ├── Knob Favorite.png │ │ │ │ │ ├── Knob Forward.png │ │ │ │ │ ├── Knob Graphite.png │ │ │ │ │ ├── Knob Green.png │ │ │ │ │ ├── Knob Grey.png │ │ │ │ │ ├── Knob Help.png │ │ │ │ │ ├── Knob Info.png │ │ │ │ │ ├── Knob Left.png │ │ │ │ │ ├── Knob Loop Off.png │ │ │ │ │ ├── Knob Loop On.png │ │ │ │ │ ├── Knob Message.png │ │ │ │ │ ├── Knob Orange.png │ │ │ │ │ ├── Knob Pause.png │ │ │ │ │ ├── Knob Play Green.png │ │ │ │ │ ├── Knob Play.png │ │ │ │ │ ├── Knob Purple.png │ │ │ │ │ ├── Knob Record On.png │ │ │ │ │ ├── Knob Red.png │ │ │ │ │ ├── Knob Refresh.png │ │ │ │ │ ├── Knob Remove Red.png │ │ │ │ │ ├── Knob Remove.png │ │ │ │ │ ├── Knob Search.png │ │ │ │ │ ├── Knob Shuffle Off.png │ │ │ │ │ ├── Knob Smart.png │ │ │ │ │ ├── Knob Snapback.png │ │ │ │ │ ├── Knob Snapforward.png │ │ │ │ │ ├── Knob Stop.png │ │ │ │ │ ├── Knob Upload.png │ │ │ │ │ ├── Knob Valid Blue.png │ │ │ │ │ ├── Knob Valid Green.png │ │ │ │ │ ├── data.classes │ │ │ │ │ ├── data.info │ │ │ │ │ └── objects.gorm │ │ │ ├── GNUmakefile │ │ │ ├── Info.plist │ │ │ ├── MIOS32_MIDI_Wrapper.h │ │ │ ├── MIOS32_MIDI_Wrapper.m │ │ │ ├── UI.h │ │ │ ├── UI.m │ │ │ ├── midibox_seq_v4_Prefix.pch │ │ │ └── mios32_config.h │ │ ├── hwcfg │ │ │ ├── README.txt │ │ │ ├── midiphy_lh │ │ │ │ └── MBSEQ_HW.V4 │ │ │ ├── midiphy_rh │ │ │ │ └── MBSEQ_HW.V4 │ │ │ ├── standard_v4 │ │ │ │ └── MBSEQ_HW.V4 │ │ │ ├── tk │ │ │ │ └── MBSEQ_HW.V4 │ │ │ ├── wilba │ │ │ │ └── MBSEQ_HW.V4 │ │ │ └── wilba_tpd │ │ │ │ └── MBSEQ_HW.V4 │ │ ├── ipad │ │ │ ├── Classes │ │ │ │ ├── FATFS_Wrapper.h │ │ │ │ ├── FATFS_Wrapper.m │ │ │ │ ├── FATFS_Wrapper_Dir.c │ │ │ │ ├── FreeRTOS_Wrapper.h │ │ │ │ ├── FreeRTOS_Wrapper.m │ │ │ │ ├── MIOS32_BOARD_Wrapper.h │ │ │ │ ├── MIOS32_BOARD_Wrapper.m │ │ │ │ ├── MIOS32_COM_Wrapper.h │ │ │ │ ├── MIOS32_COM_Wrapper.m │ │ │ │ ├── MIOS32_DELAY_Wrapper.h │ │ │ │ ├── MIOS32_DELAY_Wrapper.m │ │ │ │ ├── MIOS32_ENC_Wrapper.h │ │ │ │ ├── MIOS32_ENC_Wrapper.m │ │ │ │ ├── MIOS32_IRQ_Wrapper.h │ │ │ │ ├── MIOS32_IRQ_Wrapper.m │ │ │ │ ├── MIOS32_MIDI_Wrapper.h │ │ │ │ ├── MIOS32_MIDI_Wrapper.m │ │ │ │ ├── MIOS32_SDCARD_Wrapper.h │ │ │ │ ├── MIOS32_SDCARD_Wrapper.m │ │ │ │ ├── MIOS32_SPI_Wrapper.h │ │ │ │ ├── MIOS32_SPI_Wrapper.m │ │ │ │ ├── MIOS32_SRIO_Wrapper.h │ │ │ │ ├── MIOS32_SRIO_Wrapper.m │ │ │ │ ├── MIOS32_STOPWATCH_Wrapper.h │ │ │ │ ├── MIOS32_STOPWATCH_Wrapper.m │ │ │ │ ├── MIOS32_SYS_Wrapper.h │ │ │ │ ├── MIOS32_SYS_Wrapper.m │ │ │ │ ├── MIOS32_TIMER_Wrapper.h │ │ │ │ ├── MIOS32_TIMER_Wrapper.m │ │ │ │ ├── MbSeqAppDelegate.h │ │ │ │ ├── MbSeqAppDelegate.mm │ │ │ │ ├── MbSeqViewController.h │ │ │ │ ├── MbSeqViewController.mm │ │ │ │ ├── OscPort.h │ │ │ │ ├── OscPort.m │ │ │ │ ├── OscServer_Wrapper.h │ │ │ │ ├── OscServer_Wrapper.m │ │ │ │ ├── SeqButton.h │ │ │ │ ├── SeqButton.mm │ │ │ │ ├── SeqEncoder.h │ │ │ │ ├── SeqEncoder.mm │ │ │ │ ├── Tasks.h │ │ │ │ ├── Tasks.m │ │ │ │ ├── UDPEcho.h │ │ │ │ └── UDPEcho.m │ │ │ ├── FreeRTOS.h │ │ │ ├── MainWindow.xib │ │ │ ├── MbSeq-Info.plist │ │ │ ├── MbSeq.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── MbSeqViewController.xib │ │ │ ├── MbSeq_Prefix.pch │ │ │ ├── main.m │ │ │ └── mios32_config.h │ │ ├── macos │ │ │ ├── Classes │ │ │ │ ├── FATFS_Wrapper.h │ │ │ │ ├── FATFS_Wrapper.m │ │ │ │ ├── FATFS_Wrapper_Dir.c │ │ │ │ ├── FreeRTOS_Wrapper.h │ │ │ │ ├── FreeRTOS_Wrapper.m │ │ │ │ ├── MIOS32_BOARD_Wrapper.h │ │ │ │ ├── MIOS32_BOARD_Wrapper.m │ │ │ │ ├── MIOS32_COM_Wrapper.h │ │ │ │ ├── MIOS32_COM_Wrapper.m │ │ │ │ ├── MIOS32_DELAY_Wrapper.h │ │ │ │ ├── MIOS32_DELAY_Wrapper.m │ │ │ │ ├── MIOS32_ENC_Wrapper.h │ │ │ │ ├── MIOS32_ENC_Wrapper.m │ │ │ │ ├── MIOS32_IRQ_Wrapper.h │ │ │ │ ├── MIOS32_IRQ_Wrapper.m │ │ │ │ ├── MIOS32_MIDI_Wrapper.h │ │ │ │ ├── MIOS32_MIDI_Wrapper.m │ │ │ │ ├── MIOS32_SDCARD_Wrapper.h │ │ │ │ ├── MIOS32_SDCARD_Wrapper.m │ │ │ │ ├── MIOS32_SPI_Wrapper.h │ │ │ │ ├── MIOS32_SPI_Wrapper.m │ │ │ │ ├── MIOS32_SRIO_Wrapper.h │ │ │ │ ├── MIOS32_SRIO_Wrapper.m │ │ │ │ ├── MIOS32_STOPWATCH_Wrapper.h │ │ │ │ ├── MIOS32_STOPWATCH_Wrapper.m │ │ │ │ ├── MIOS32_SYS_Wrapper.h │ │ │ │ ├── MIOS32_SYS_Wrapper.m │ │ │ │ ├── MIOS32_TIMER_Wrapper.h │ │ │ │ ├── MIOS32_TIMER_Wrapper.m │ │ │ │ ├── OscPort.h │ │ │ │ ├── OscPort.m │ │ │ │ ├── OscServer_Wrapper.h │ │ │ │ ├── OscServer_Wrapper.m │ │ │ │ ├── SEQButton.h │ │ │ │ ├── SEQButton.m │ │ │ │ ├── SEQEncoder.h │ │ │ │ ├── SEQEncoder.m │ │ │ │ ├── Tasks.h │ │ │ │ ├── Tasks.m │ │ │ │ ├── UDPEcho.h │ │ │ │ ├── UDPEcho.m │ │ │ │ ├── UI.h │ │ │ │ └── UI.mm │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ ├── MainMenu.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── MainMenu_nib2.x.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ └── MainMenu_xib3.x.xib │ │ │ ├── FreeRTOS.h │ │ │ ├── Info.plist │ │ │ ├── main.m │ │ │ ├── midibox_seq_v4.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── midibox_seq_v4_Prefix.pch │ │ │ └── mios32_config.h │ │ ├── mios32 │ │ │ ├── mios32_config.h │ │ │ └── tasks.c │ │ ├── release.sh │ │ └── tools │ │ │ └── euclid.pl │ ├── midibox_seq_v4_lite │ │ ├── .cproject │ │ ├── .project │ │ ├── CHANGELOG.txt │ │ ├── Makefile │ │ ├── README.txt │ │ ├── core │ │ │ ├── seq_file_hw.c │ │ │ ├── seq_file_hw.h │ │ │ ├── seq_hwcfg.c │ │ │ ├── seq_hwcfg.h │ │ │ ├── seq_ui.c │ │ │ ├── seq_ui.h │ │ │ ├── seq_ui_pages.c │ │ │ ├── seq_ui_pages.h │ │ │ ├── seq_ui_util.c │ │ │ └── tasks.h │ │ ├── doc │ │ │ ├── mbseq_lite_remote_functions.pdf │ │ │ └── mbseqv4l_cc_implementation.txt │ │ ├── hwcfg │ │ │ ├── README.txt │ │ │ ├── srio_v4l │ │ │ │ └── MBSEQ_HW.V4L │ │ │ └── standard_v4l │ │ │ │ └── MBSEQ_HW.V4L │ │ ├── mios32 │ │ │ └── mios32_config.h │ │ └── release.sh │ └── vX32 │ │ ├── build │ │ ├── mios32 │ │ │ ├── Makefile │ │ │ ├── mios32_config.h │ │ │ └── mios32_config.h.core32 │ │ └── vXjuce │ │ │ ├── Makefile │ │ │ └── mios32_config.h │ │ ├── core │ │ ├── inc │ │ │ ├── app.h │ │ │ ├── graph.h │ │ │ ├── mclock.h │ │ │ ├── mod_send.h │ │ │ ├── mod_xlate.h │ │ │ ├── modules.h │ │ │ ├── patterns.h │ │ │ ├── tasks.h │ │ │ ├── ui.h │ │ │ └── utils.h │ │ └── src │ │ │ ├── app.c │ │ │ ├── graph.c │ │ │ ├── mclock.c │ │ │ ├── mod_send.c │ │ │ ├── mod_xlate.c │ │ │ ├── modules.c │ │ │ ├── patterns.c │ │ │ ├── tasks.c │ │ │ ├── ui.c │ │ │ └── utils.c │ │ ├── doc │ │ ├── README.txt │ │ └── devel │ │ │ └── vx32-ui-protocol-draft.txt │ │ ├── vXjuce │ │ ├── inc │ │ │ ├── AppComponent.h │ │ │ └── MIOS32_App_Headers.h │ │ └── src │ │ │ └── AppComponent.cpp │ │ └── vxmodules │ │ ├── inc │ │ ├── mod_midiout.h │ │ ├── mod_sclk.h │ │ ├── mod_seq.h │ │ └── mod_sxh.h │ │ └── src │ │ ├── mod_midiout.c │ │ ├── mod_sclk.c │ │ ├── mod_seq.c │ │ └── mod_sxh.c ├── synthesizers │ ├── SD card sample player │ │ ├── Makefile │ │ ├── SD card contents │ │ │ ├── bank.1 │ │ │ └── player.cfg │ │ ├── app.c │ │ ├── app.h │ │ ├── mios32_config.h │ │ ├── release │ │ │ ├── LPC1769 │ │ │ │ └── project.hex │ │ │ ├── STM32F103RE │ │ │ │ └── project.hex │ │ │ └── STM32F407VG │ │ │ │ └── project.hex │ │ └── tools │ │ │ └── gen_bank.pl │ ├── goom │ │ ├── LICENCE │ │ ├── Makefile │ │ ├── README.txt │ │ ├── release │ │ │ └── STM32F407VG │ │ │ │ └── project.hex │ │ └── src │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── mios32_config.h │ │ │ ├── synth.c │ │ │ ├── synth.h │ │ │ └── wave.s │ ├── midibox_fm_v2_1 │ │ ├── .cproject │ │ ├── .project │ │ ├── CHANGELOG.txt │ │ ├── Makefile │ │ ├── README.txt │ │ ├── cfg │ │ │ ├── default │ │ │ │ ├── default.ngc │ │ │ │ └── default.ngl │ │ │ ├── templates │ │ │ │ ├── blofeld.ngc │ │ │ │ ├── blofeld.ngl │ │ │ │ ├── logictrl.ngc │ │ │ │ ├── lre8x2.ngc │ │ │ │ ├── lre8x2x4.ngc │ │ │ │ └── pg300.ngc │ │ │ ├── tests │ │ │ │ ├── ain.ngc │ │ │ │ ├── ain_fsr.ngc │ │ │ │ ├── ainmodes.ngc │ │ │ │ ├── ainser64.ngc │ │ │ │ ├── ainser8.ngc │ │ │ │ ├── ainser8n.ngc │ │ │ │ ├── blm16x4.ngc │ │ │ │ ├── blm16x4e.ngc │ │ │ │ ├── blm8x8.ngc │ │ │ │ ├── bnk_2sel.ngc │ │ │ │ ├── bnk_8sel.ngc │ │ │ │ ├── bnkled.ngc │ │ │ │ ├── bnkledcc.ngc │ │ │ │ ├── clcd_16.ngc │ │ │ │ ├── clcd_6.ngc │ │ │ │ ├── conditions.ngc │ │ │ │ ├── conditions.ngl │ │ │ │ ├── conev_1.ngc │ │ │ │ ├── conev_2.ngc │ │ │ │ ├── conev_3.ngc │ │ │ │ ├── conev_4.ngc │ │ │ │ ├── conev_5.ngc │ │ │ │ ├── conev_6.ngc │ │ │ │ ├── cv.ngc │ │ │ │ ├── cvhires.ngc │ │ │ │ ├── cvnotes.ngc │ │ │ │ ├── cvtransp.ngc │ │ │ │ ├── dimled.ngc │ │ │ │ ├── dimled_m.ngc │ │ │ │ ├── diocfg_1.ngc │ │ │ │ ├── diocfg_2.ngc │ │ │ │ ├── emu_enc.ngc │ │ │ │ ├── encbanks.ngc │ │ │ │ ├── encspeed.ngc │ │ │ │ ├── fwd.ngc │ │ │ │ ├── glcd1306.ngc │ │ │ │ ├── glcdfont.ngc │ │ │ │ ├── kb_1.ngc │ │ │ │ ├── kb_2.ngc │ │ │ │ ├── kb_3.ngc │ │ │ │ ├── kb_4.ngc │ │ │ │ ├── lcbanks.ngc │ │ │ │ ├── leddig1.ngc │ │ │ │ ├── leddig2.ngc │ │ │ │ ├── mapain.ngc │ │ │ │ ├── mapbtn.ngc │ │ │ │ ├── mapenc.ngc │ │ │ │ ├── mapmf.ngc │ │ │ │ ├── mapmidi.ngc │ │ │ │ ├── max72xx.ngc │ │ │ │ ├── mbseqrm.ngc │ │ │ │ ├── mf_banks.ngc │ │ │ │ ├── mf_cc.ngc │ │ │ │ ├── mf_multi.ngc │ │ │ │ ├── midiclk.ngc │ │ │ │ ├── multi_lc.ngc │ │ │ │ ├── multibnk.ngc │ │ │ │ ├── multibnk.ngr │ │ │ │ ├── multimcu.ngc │ │ │ │ ├── nrpn.ngc │ │ │ │ ├── radiogrp.ngc │ │ │ │ ├── ranges.ngc │ │ │ │ ├── rgb_1.ngc │ │ │ │ ├── rgb_2.ngc │ │ │ │ ├── rgb_3.ngc │ │ │ │ ├── runscr1.ngc │ │ │ │ ├── runscr1.ngr │ │ │ │ ├── runscr2.ngc │ │ │ │ ├── runscr2.ngr │ │ │ │ ├── runscr3.ngc │ │ │ │ ├── runscr3.ngr │ │ │ │ ├── runscr4.ngc │ │ │ │ ├── runscr4.ngr │ │ │ │ ├── runscr5.ngc │ │ │ │ ├── runscr5.ngl │ │ │ │ ├── runscr5.ngr │ │ │ │ ├── scs.ngc │ │ │ │ ├── syxlabel.ngc │ │ │ │ ├── syxtxt.ngc │ │ │ │ └── tpd.ngc │ │ │ └── tk │ │ │ │ ├── enc_mlcd.ngc │ │ │ │ ├── mb16enc.ngc │ │ │ │ ├── mbseq.ngc │ │ │ │ └── osc_def.ngc │ │ ├── doc │ │ │ └── Doxyfile │ │ ├── project.hex │ │ ├── project_build │ │ │ ├── data │ │ │ │ └── Hardware │ │ │ │ │ └── MIDIbox │ │ │ │ │ └── mios32 │ │ │ │ │ └── trunk │ │ │ │ │ ├── FreeRTOS │ │ │ │ │ └── Source │ │ │ │ │ │ ├── list.d │ │ │ │ │ │ ├── portable │ │ │ │ │ │ ├── GCC │ │ │ │ │ │ │ └── ARM_CM3 │ │ │ │ │ │ │ │ └── port.d │ │ │ │ │ │ └── MemMang │ │ │ │ │ │ │ └── umm_malloc.d │ │ │ │ │ │ ├── queue.d │ │ │ │ │ │ ├── tasks.d │ │ │ │ │ │ └── timers.d │ │ │ │ │ ├── drivers │ │ │ │ │ └── STM32F4xx │ │ │ │ │ │ └── v1.1.0 │ │ │ │ │ │ ├── STM32F4xx_StdPeriph_Driver │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── misc.d │ │ │ │ │ │ │ ├── stm32f4xx_adc.d │ │ │ │ │ │ │ ├── stm32f4xx_can.d │ │ │ │ │ │ │ ├── stm32f4xx_crc.d │ │ │ │ │ │ │ ├── stm32f4xx_cryp.d │ │ │ │ │ │ │ ├── stm32f4xx_cryp_aes.d │ │ │ │ │ │ │ ├── stm32f4xx_cryp_des.d │ │ │ │ │ │ │ ├── stm32f4xx_cryp_tdes.d │ │ │ │ │ │ │ ├── stm32f4xx_dac.d │ │ │ │ │ │ │ ├── stm32f4xx_dbgmcu.d │ │ │ │ │ │ │ ├── stm32f4xx_dcmi.d │ │ │ │ │ │ │ ├── stm32f4xx_dma.d │ │ │ │ │ │ │ ├── stm32f4xx_exti.d │ │ │ │ │ │ │ ├── stm32f4xx_flash.d │ │ │ │ │ │ │ ├── stm32f4xx_fsmc.d │ │ │ │ │ │ │ ├── stm32f4xx_gpio.d │ │ │ │ │ │ │ ├── stm32f4xx_hash.d │ │ │ │ │ │ │ ├── stm32f4xx_hash_md5.d │ │ │ │ │ │ │ ├── stm32f4xx_hash_sha1.d │ │ │ │ │ │ │ ├── stm32f4xx_i2c.d │ │ │ │ │ │ │ ├── stm32f4xx_iwdg.d │ │ │ │ │ │ │ ├── stm32f4xx_pwr.d │ │ │ │ │ │ │ ├── stm32f4xx_rcc.d │ │ │ │ │ │ │ ├── stm32f4xx_rng.d │ │ │ │ │ │ │ ├── stm32f4xx_rtc.d │ │ │ │ │ │ │ ├── stm32f4xx_sdio.d │ │ │ │ │ │ │ ├── stm32f4xx_spi.d │ │ │ │ │ │ │ ├── stm32f4xx_syscfg.d │ │ │ │ │ │ │ ├── stm32f4xx_tim.d │ │ │ │ │ │ │ ├── stm32f4xx_usart.d │ │ │ │ │ │ │ └── stm32f4xx_wwdg.d │ │ │ │ │ │ ├── STM32_USB_Device_Library │ │ │ │ │ │ └── Core │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── usbd_core.d │ │ │ │ │ │ │ ├── usbd_ioreq.d │ │ │ │ │ │ │ └── usbd_req.d │ │ │ │ │ │ ├── STM32_USB_HOST_Library │ │ │ │ │ │ └── Core │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── usbh_core.d │ │ │ │ │ │ │ ├── usbh_hcs.d │ │ │ │ │ │ │ ├── usbh_ioreq.d │ │ │ │ │ │ │ └── usbh_stdreq.d │ │ │ │ │ │ └── STM32_USB_OTG_Driver │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── usb_core.d │ │ │ │ │ │ ├── usb_dcd.d │ │ │ │ │ │ ├── usb_dcd_int.d │ │ │ │ │ │ ├── usb_hcd.d │ │ │ │ │ │ ├── usb_hcd_int.d │ │ │ │ │ │ └── usb_otg.d │ │ │ │ │ ├── mios32 │ │ │ │ │ ├── STM32F4xx │ │ │ │ │ │ ├── mios32_ain.d │ │ │ │ │ │ ├── mios32_board.d │ │ │ │ │ │ ├── mios32_bsl.d │ │ │ │ │ │ ├── mios32_delay.d │ │ │ │ │ │ ├── mios32_i2s.d │ │ │ │ │ │ ├── mios32_iic.d │ │ │ │ │ │ ├── mios32_irq.d │ │ │ │ │ │ ├── mios32_spi.d │ │ │ │ │ │ ├── mios32_stopwatch.d │ │ │ │ │ │ ├── mios32_sys.d │ │ │ │ │ │ ├── mios32_timer.d │ │ │ │ │ │ ├── mios32_uart.d │ │ │ │ │ │ ├── mios32_usb.d │ │ │ │ │ │ ├── mios32_usb_com.d │ │ │ │ │ │ └── mios32_usb_midi.d │ │ │ │ │ └── common │ │ │ │ │ │ ├── mios32_com.d │ │ │ │ │ │ ├── mios32_din.d │ │ │ │ │ │ ├── mios32_dout.d │ │ │ │ │ │ ├── mios32_enc.d │ │ │ │ │ │ ├── mios32_enc28j60.d │ │ │ │ │ │ ├── mios32_iic_bs.d │ │ │ │ │ │ ├── mios32_iic_midi.d │ │ │ │ │ │ ├── mios32_lcd.d │ │ │ │ │ │ ├── mios32_mf.d │ │ │ │ │ │ ├── mios32_midi.d │ │ │ │ │ │ ├── mios32_osc.d │ │ │ │ │ │ ├── mios32_sdcard.d │ │ │ │ │ │ ├── mios32_spi_midi.d │ │ │ │ │ │ ├── mios32_srio.d │ │ │ │ │ │ ├── mios32_timestamp.d │ │ │ │ │ │ ├── mios32_uart_midi.d │ │ │ │ │ │ └── printf-stdarg.d │ │ │ │ │ ├── modules │ │ │ │ │ ├── ainser │ │ │ │ │ │ └── ainser.d │ │ │ │ │ ├── aout │ │ │ │ │ │ └── aout.d │ │ │ │ │ ├── app_lcd │ │ │ │ │ │ └── universal │ │ │ │ │ │ │ └── app_lcd.d │ │ │ │ │ ├── fatfs │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── diskio.d │ │ │ │ │ │ │ ├── ff.d │ │ │ │ │ │ │ └── option │ │ │ │ │ │ │ └── ccsbcs.d │ │ │ │ │ ├── file │ │ │ │ │ │ └── file.d │ │ │ │ │ ├── freertos_utils │ │ │ │ │ │ └── freertos_utils.d │ │ │ │ │ ├── glcd_font │ │ │ │ │ │ ├── glcd_font_big.d │ │ │ │ │ │ ├── glcd_font_knob_icons.d │ │ │ │ │ │ ├── glcd_font_meter_icons_h.d │ │ │ │ │ │ ├── glcd_font_meter_icons_v.d │ │ │ │ │ │ ├── glcd_font_normal.d │ │ │ │ │ │ ├── glcd_font_normal_inv.d │ │ │ │ │ │ ├── glcd_font_small.d │ │ │ │ │ │ └── glcd_font_tiny.d │ │ │ │ │ ├── keyboard │ │ │ │ │ │ └── keyboard.d │ │ │ │ │ ├── max72xx │ │ │ │ │ │ └── max72xx.d │ │ │ │ │ ├── md5 │ │ │ │ │ │ └── md5.d │ │ │ │ │ ├── midi_router │ │ │ │ │ │ ├── midi_port.d │ │ │ │ │ │ └── midi_router.d │ │ │ │ │ ├── midimon │ │ │ │ │ │ └── midimon.d │ │ │ │ │ ├── msd │ │ │ │ │ │ └── STM32F4xx │ │ │ │ │ │ │ └── msd.d │ │ │ │ │ ├── notestack │ │ │ │ │ │ └── notestack.d │ │ │ │ │ ├── opl3 │ │ │ │ │ │ └── opl3.d │ │ │ │ │ ├── random │ │ │ │ │ │ └── jsw_rand.d │ │ │ │ │ ├── sequencer │ │ │ │ │ │ ├── seq_bpm.d │ │ │ │ │ │ └── seq_midi_out.d │ │ │ │ │ ├── uip │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── memb.d │ │ │ │ │ │ ├── mios32 │ │ │ │ │ │ │ ├── STM32F4xx │ │ │ │ │ │ │ │ └── network-device.d │ │ │ │ │ │ │ └── clock-arch.d │ │ │ │ │ │ └── uip │ │ │ │ │ │ │ ├── psock.d │ │ │ │ │ │ │ ├── timer.d │ │ │ │ │ │ │ ├── uip-neighbor.d │ │ │ │ │ │ │ ├── uip.d │ │ │ │ │ │ │ ├── uip_arp.d │ │ │ │ │ │ │ └── uiplib.d │ │ │ │ │ └── uip_task_standard │ │ │ │ │ │ ├── dhcpc.d │ │ │ │ │ │ ├── osc_client.d │ │ │ │ │ │ ├── osc_server.d │ │ │ │ │ │ ├── uip_task.d │ │ │ │ │ │ └── uip_terminal.d │ │ │ │ │ └── programming_models │ │ │ │ │ └── traditional │ │ │ │ │ ├── freertos_heap.d │ │ │ │ │ ├── main.d │ │ │ │ │ ├── mini_cpp.d │ │ │ │ │ ├── startup_stm32f4xx.d │ │ │ │ │ └── strtol.d │ │ │ ├── project.bin │ │ │ ├── project.elf │ │ │ ├── project.lss │ │ │ ├── project.map │ │ │ ├── project.sym │ │ │ └── src │ │ │ │ ├── app.d │ │ │ │ ├── mbfm.d │ │ │ │ ├── mbfm_controlhandler.d │ │ │ │ ├── mbfm_modulation.d │ │ │ │ ├── mbfm_patch.d │ │ │ │ ├── mbfm_sequencer.d │ │ │ │ ├── mbfm_temperament.d │ │ │ │ ├── mbng_ain.d │ │ │ │ ├── mbng_ainser.d │ │ │ │ ├── mbng_cv.d │ │ │ │ ├── mbng_din.d │ │ │ │ ├── mbng_dio.d │ │ │ │ ├── mbng_dout.d │ │ │ │ ├── mbng_enc.d │ │ │ │ ├── mbng_event.d │ │ │ │ ├── mbng_file.d │ │ │ │ ├── mbng_file_c.d │ │ │ │ ├── mbng_file_l.d │ │ │ │ ├── mbng_file_r.d │ │ │ │ ├── mbng_file_s.d │ │ │ │ ├── mbng_kb.d │ │ │ │ ├── mbng_lcd.d │ │ │ │ ├── mbng_matrix.d │ │ │ │ ├── mbng_mf.d │ │ │ │ ├── mbng_patch.d │ │ │ │ ├── mbng_seq.d │ │ │ │ ├── mbng_sysex.d │ │ │ │ └── terminal.d │ │ ├── release.sh │ │ ├── sdcard_backup │ │ │ ├── DEFAULT.BIN │ │ │ ├── DEFAULT.NGC │ │ │ ├── DEFAULT.NGL │ │ │ ├── DEFAULT.NGS │ │ │ └── mbfm │ │ │ │ ├── BMSB0 │ │ │ │ ├── BLSB0 │ │ │ │ │ ├── PAT1.fm │ │ │ │ │ ├── PAT10.fm │ │ │ │ │ ├── PAT104.fm │ │ │ │ │ ├── PAT105.fm │ │ │ │ │ ├── PAT107.fm │ │ │ │ │ ├── PAT11.fm │ │ │ │ │ ├── PAT112.fm │ │ │ │ │ ├── PAT113.fm │ │ │ │ │ ├── PAT114.fm │ │ │ │ │ ├── PAT115.fm │ │ │ │ │ ├── PAT116.fm │ │ │ │ │ ├── PAT119.fm │ │ │ │ │ ├── PAT12.fm │ │ │ │ │ ├── PAT122.fm │ │ │ │ │ ├── PAT123.fm │ │ │ │ │ ├── PAT13.fm │ │ │ │ │ ├── PAT14.fm │ │ │ │ │ ├── PAT15.fm │ │ │ │ │ ├── PAT19.fm │ │ │ │ │ ├── PAT2.fm │ │ │ │ │ ├── PAT24.fm │ │ │ │ │ ├── PAT25.fm │ │ │ │ │ ├── PAT26.fm │ │ │ │ │ ├── PAT27.fm │ │ │ │ │ ├── PAT28.fm │ │ │ │ │ ├── PAT29.fm │ │ │ │ │ ├── PAT3.fm │ │ │ │ │ ├── PAT30.fm │ │ │ │ │ ├── PAT31.fm │ │ │ │ │ ├── PAT32.fm │ │ │ │ │ ├── PAT33.fm │ │ │ │ │ ├── PAT34.fm │ │ │ │ │ ├── PAT35.fm │ │ │ │ │ ├── PAT36.fm │ │ │ │ │ ├── PAT37.fm │ │ │ │ │ ├── PAT38.fm │ │ │ │ │ ├── PAT39.fm │ │ │ │ │ ├── PAT40.fm │ │ │ │ │ ├── PAT41.fm │ │ │ │ │ ├── PAT42.fm │ │ │ │ │ ├── PAT43.fm │ │ │ │ │ ├── PAT44.fm │ │ │ │ │ ├── PAT47.fm │ │ │ │ │ ├── PAT49.fm │ │ │ │ │ ├── PAT51.fm │ │ │ │ │ ├── PAT53.fm │ │ │ │ │ ├── PAT54.fm │ │ │ │ │ ├── PAT55.fm │ │ │ │ │ ├── PAT57.fm │ │ │ │ │ ├── PAT58.fm │ │ │ │ │ ├── PAT59.fm │ │ │ │ │ ├── PAT61.fm │ │ │ │ │ ├── PAT62.fm │ │ │ │ │ ├── PAT63.fm │ │ │ │ │ ├── PAT64.fm │ │ │ │ │ ├── PAT65.fm │ │ │ │ │ ├── PAT66.fm │ │ │ │ │ ├── PAT67.fm │ │ │ │ │ ├── PAT7.fm │ │ │ │ │ ├── PAT72.fm │ │ │ │ │ ├── PAT73.fm │ │ │ │ │ ├── PAT74.fm │ │ │ │ │ ├── PAT76.fm │ │ │ │ │ ├── PAT77.fm │ │ │ │ │ ├── PAT78.fm │ │ │ │ │ ├── PAT79.fm │ │ │ │ │ ├── PAT8.fm │ │ │ │ │ ├── PAT81.fm │ │ │ │ │ ├── PAT82.fm │ │ │ │ │ ├── PAT83.fm │ │ │ │ │ ├── PAT84.fm │ │ │ │ │ ├── PAT85.fm │ │ │ │ │ ├── PAT86.fm │ │ │ │ │ ├── PAT87.fm │ │ │ │ │ ├── PAT89.fm │ │ │ │ │ ├── PAT90.fm │ │ │ │ │ ├── PAT92.fm │ │ │ │ │ ├── PAT93.fm │ │ │ │ │ ├── Pat0.fm │ │ │ │ │ ├── Pat16.fm │ │ │ │ │ ├── Pat17.fm │ │ │ │ │ ├── Pat18.fm │ │ │ │ │ ├── Pat20.fm │ │ │ │ │ ├── Pat21.fm │ │ │ │ │ ├── Pat22.fm │ │ │ │ │ ├── Pat23.fm │ │ │ │ │ ├── Pat4.fm │ │ │ │ │ ├── Pat45.fm │ │ │ │ │ ├── Pat46.fm │ │ │ │ │ ├── Pat48.fm │ │ │ │ │ ├── Pat5.fm │ │ │ │ │ ├── Pat50.fm │ │ │ │ │ ├── Pat52.fm │ │ │ │ │ ├── Pat56.fm │ │ │ │ │ ├── Pat6.fm │ │ │ │ │ ├── Pat60.fm │ │ │ │ │ ├── Pat68.fm │ │ │ │ │ ├── Pat69.fm │ │ │ │ │ ├── Pat70.fm │ │ │ │ │ ├── Pat71.fm │ │ │ │ │ ├── Pat75.fm │ │ │ │ │ ├── Pat80.fm │ │ │ │ │ ├── Pat9.fm │ │ │ │ │ └── Pat99.fm │ │ │ │ ├── BLSB1 │ │ │ │ │ ├── PAT0.fm │ │ │ │ │ ├── PAT18.fm │ │ │ │ │ ├── PAT20.fm │ │ │ │ │ ├── PAT26.fm │ │ │ │ │ ├── PAT38.fm │ │ │ │ │ ├── PAT47.fm │ │ │ │ │ ├── PAT48.fm │ │ │ │ │ ├── PAT54.fm │ │ │ │ │ ├── PAT60.fm │ │ │ │ │ ├── PAT80.fm │ │ │ │ │ └── PAT87.fm │ │ │ │ └── BLSB2 │ │ │ │ │ ├── PAT38.fm │ │ │ │ │ └── Pat19.fm │ │ │ │ └── BMSB127 │ │ │ │ ├── BLSB0 │ │ │ │ ├── PAT0.fm │ │ │ │ ├── PAT1.fm │ │ │ │ ├── PAT10.fm │ │ │ │ └── PAT127.fm │ │ │ │ └── BLSB1 │ │ │ │ └── PAT1.fm │ │ ├── src │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── mbfm.c │ │ │ ├── mbfm.h │ │ │ ├── mbfm_controlhandler.c │ │ │ ├── mbfm_controlhandler.h │ │ │ ├── mbfm_modulation.c │ │ │ ├── mbfm_modulation.h │ │ │ ├── mbfm_patch.c │ │ │ ├── mbfm_patch.h │ │ │ ├── mbfm_sequencer.c │ │ │ ├── mbfm_sequencer.h │ │ │ ├── mbfm_tables.h │ │ │ ├── mbfm_temperament.c │ │ │ ├── mbfm_temperament.h │ │ │ ├── mbng_ain.c │ │ │ ├── mbng_ain.h │ │ │ ├── mbng_ainser.c │ │ │ ├── mbng_ainser.h │ │ │ ├── mbng_cv.c │ │ │ ├── mbng_cv.h │ │ │ ├── mbng_din.c │ │ │ ├── mbng_din.h │ │ │ ├── mbng_dio.c │ │ │ ├── mbng_dio.h │ │ │ ├── mbng_dout.c │ │ │ ├── mbng_dout.h │ │ │ ├── mbng_enc.c │ │ │ ├── mbng_enc.h │ │ │ ├── mbng_event.c │ │ │ ├── mbng_event.h │ │ │ ├── mbng_file.c │ │ │ ├── mbng_file.h │ │ │ ├── mbng_file_c.c │ │ │ ├── mbng_file_c.h │ │ │ ├── mbng_file_l.c │ │ │ ├── mbng_file_l.h │ │ │ ├── mbng_file_r.c │ │ │ ├── mbng_file_r.h │ │ │ ├── mbng_file_s.c │ │ │ ├── mbng_file_s.h │ │ │ ├── mbng_kb.c │ │ │ ├── mbng_kb.h │ │ │ ├── mbng_lcd.c │ │ │ ├── mbng_lcd.h │ │ │ ├── mbng_matrix.c │ │ │ ├── mbng_matrix.h │ │ │ ├── mbng_mf.c │ │ │ ├── mbng_mf.h │ │ │ ├── mbng_patch.c │ │ │ ├── mbng_patch.h │ │ │ ├── mbng_seq.c │ │ │ ├── mbng_seq.h │ │ │ ├── mbng_sysex.c │ │ │ ├── mbng_sysex.h │ │ │ ├── mios32_config.h │ │ │ ├── scs_config_isbad.c │ │ │ ├── scs_config_isbad.h │ │ │ ├── tasks.h │ │ │ ├── terminal.c │ │ │ └── terminal.h │ │ ├── tools │ │ │ ├── kb_vel_map.pl │ │ │ ├── mbseqhwcfgwilba_to_id.pl │ │ │ └── patterns.pl │ │ └── touchosc │ │ │ └── bidirectional_cc_via_osc.touchosc │ ├── midibox_genesis_tracker │ │ ├── Makefile │ │ ├── README.txt │ │ └── src │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ └── mios32_config.h │ ├── midibox_quad_genesis │ │ ├── Makefile │ │ ├── README.txt │ │ ├── project.hex │ │ └── src │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── capturer.c │ │ │ ├── capturer.h │ │ │ ├── cmdeditor.c │ │ │ ├── cmdeditor.h │ │ │ ├── demoprograms.c │ │ │ ├── demoprograms.h │ │ │ ├── filebrowser.c │ │ │ ├── filebrowser.h │ │ │ ├── frontpanel.c │ │ │ ├── frontpanel.h │ │ │ ├── genesisstate.c │ │ │ ├── genesisstate.h │ │ │ ├── interface.c │ │ │ ├── interface.h │ │ │ ├── mios32_config.h │ │ │ ├── mode_chan.c │ │ │ ├── mode_chan.h │ │ │ ├── mode_controller.c │ │ │ ├── mode_controller.h │ │ │ ├── mode_mdltr.c │ │ │ ├── mode_mdltr.h │ │ │ ├── mode_prog.c │ │ │ ├── mode_prog.h │ │ │ ├── mode_sample.c │ │ │ ├── mode_sample.h │ │ │ ├── mode_system.c │ │ │ ├── mode_system.h │ │ │ ├── mode_vgm.c │ │ │ ├── mode_vgm.h │ │ │ ├── mode_voice.c │ │ │ ├── mode_voice.h │ │ │ ├── nameeditor.c │ │ │ ├── nameeditor.h │ │ │ ├── syeng.c │ │ │ ├── syeng.h │ │ │ ├── tracker.c │ │ │ └── tracker.h │ ├── midibox_sid_v3 │ │ ├── Makefile │ │ ├── core │ │ │ ├── MbSid.cpp │ │ │ ├── MbSid.h │ │ │ ├── MbSidAsid.cpp │ │ │ ├── MbSidAsid.h │ │ │ ├── MbSidEnvironment.cpp │ │ │ ├── MbSidEnvironment.h │ │ │ ├── MbSidPatch.cpp │ │ │ ├── MbSidPatch.h │ │ │ ├── MbSidSe.cpp │ │ │ ├── MbSidSe.h │ │ │ ├── MbSidSeBassline.cpp │ │ │ ├── MbSidSeBassline.h │ │ │ ├── MbSidSeDrum.cpp │ │ │ ├── MbSidSeDrum.h │ │ │ ├── MbSidSeLead.cpp │ │ │ ├── MbSidSeLead.h │ │ │ ├── MbSidSeMulti.cpp │ │ │ ├── MbSidSeMulti.h │ │ │ ├── MbSidStructs.h │ │ │ ├── MbSidSysEx.cpp │ │ │ ├── MbSidSysEx.h │ │ │ ├── MbSidTables.cpp │ │ │ ├── MbSidTables.h │ │ │ ├── app.cpp │ │ │ ├── app.h │ │ │ ├── components │ │ │ │ ├── MbSidArp.cpp │ │ │ │ ├── MbSidArp.h │ │ │ │ ├── MbSidClock.cpp │ │ │ │ ├── MbSidClock.h │ │ │ │ ├── MbSidDrum.cpp │ │ │ │ ├── MbSidDrum.h │ │ │ │ ├── MbSidEnv.cpp │ │ │ │ ├── MbSidEnv.h │ │ │ │ ├── MbSidEnvLead.cpp │ │ │ │ ├── MbSidEnvLead.h │ │ │ │ ├── MbSidFilter.cpp │ │ │ │ ├── MbSidFilter.h │ │ │ │ ├── MbSidLfo.cpp │ │ │ │ ├── MbSidLfo.h │ │ │ │ ├── MbSidMidiVoice.cpp │ │ │ │ ├── MbSidMidiVoice.h │ │ │ │ ├── MbSidMod.cpp │ │ │ │ ├── MbSidMod.h │ │ │ │ ├── MbSidRandomGen.cpp │ │ │ │ ├── MbSidRandomGen.h │ │ │ │ ├── MbSidSeq.cpp │ │ │ │ ├── MbSidSeq.h │ │ │ │ ├── MbSidSeqBassline.cpp │ │ │ │ ├── MbSidSeqBassline.h │ │ │ │ ├── MbSidSeqDrum.cpp │ │ │ │ ├── MbSidSeqDrum.h │ │ │ │ ├── MbSidVoice.cpp │ │ │ │ ├── MbSidVoice.h │ │ │ │ ├── MbSidVoiceDrum.cpp │ │ │ │ ├── MbSidVoiceDrum.h │ │ │ │ ├── MbSidVoiceQueue.cpp │ │ │ │ ├── MbSidVoiceQueue.h │ │ │ │ ├── MbSidWt.cpp │ │ │ │ ├── MbSidWt.h │ │ │ │ ├── MbSidWtDrum.cpp │ │ │ │ └── MbSidWtDrum.h │ │ │ ├── sid_bank_preset_a.inc │ │ │ └── tasks.h │ │ ├── doc │ │ │ ├── mbsidv3_parameter_chart.txt │ │ │ └── mbsidv3_sysex_implementation.txt │ │ ├── juce │ │ │ ├── Builds │ │ │ │ ├── Linux │ │ │ │ │ └── Makefile │ │ │ │ ├── MacOSX │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MIDIboxSID.xcodeproj │ │ │ │ │ │ ├── TK.mode1v3 │ │ │ │ │ │ ├── TK.pbxuser │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── RecentFilesMenuTemplate.nib │ │ │ │ │ └── install.sh │ │ │ │ └── VisualStudio2010 │ │ │ │ │ ├── MIDIboxSID.sln │ │ │ │ │ ├── MIDIboxSID.vcxproj │ │ │ │ │ ├── MIDIboxSID.vcxproj.filters │ │ │ │ │ └── resources.rc │ │ │ ├── JuceLibraryCode │ │ │ │ ├── AppConfig.h │ │ │ │ ├── BinaryData.cpp │ │ │ │ ├── BinaryData.h │ │ │ │ ├── JuceHeader.h │ │ │ │ ├── ReadMe.txt │ │ │ │ └── modules │ │ │ │ │ ├── juce_audio_basics │ │ │ │ │ ├── buffers │ │ │ │ │ │ ├── juce_AudioDataConverters.cpp │ │ │ │ │ │ ├── juce_AudioDataConverters.h │ │ │ │ │ │ ├── juce_AudioSampleBuffer.cpp │ │ │ │ │ │ ├── juce_AudioSampleBuffer.h │ │ │ │ │ │ ├── juce_FloatVectorOperations.cpp │ │ │ │ │ │ └── juce_FloatVectorOperations.h │ │ │ │ │ ├── effects │ │ │ │ │ │ ├── juce_Decibels.h │ │ │ │ │ │ ├── juce_IIRFilter.cpp │ │ │ │ │ │ ├── juce_IIRFilter.h │ │ │ │ │ │ ├── juce_LagrangeInterpolator.cpp │ │ │ │ │ │ ├── juce_LagrangeInterpolator.h │ │ │ │ │ │ └── juce_Reverb.h │ │ │ │ │ ├── juce_audio_basics.cpp │ │ │ │ │ ├── juce_audio_basics.h │ │ │ │ │ ├── juce_audio_basics.mm │ │ │ │ │ ├── juce_module_info │ │ │ │ │ ├── midi │ │ │ │ │ │ ├── juce_MidiBuffer.cpp │ │ │ │ │ │ ├── juce_MidiBuffer.h │ │ │ │ │ │ ├── juce_MidiFile.cpp │ │ │ │ │ │ ├── juce_MidiFile.h │ │ │ │ │ │ ├── juce_MidiKeyboardState.cpp │ │ │ │ │ │ ├── juce_MidiKeyboardState.h │ │ │ │ │ │ ├── juce_MidiMessage.cpp │ │ │ │ │ │ ├── juce_MidiMessage.h │ │ │ │ │ │ ├── juce_MidiMessageSequence.cpp │ │ │ │ │ │ └── juce_MidiMessageSequence.h │ │ │ │ │ ├── sources │ │ │ │ │ │ ├── juce_AudioSource.h │ │ │ │ │ │ ├── juce_BufferingAudioSource.cpp │ │ │ │ │ │ ├── juce_BufferingAudioSource.h │ │ │ │ │ │ ├── juce_ChannelRemappingAudioSource.cpp │ │ │ │ │ │ ├── juce_ChannelRemappingAudioSource.h │ │ │ │ │ │ ├── juce_IIRFilterAudioSource.cpp │ │ │ │ │ │ ├── juce_IIRFilterAudioSource.h │ │ │ │ │ │ ├── juce_MixerAudioSource.cpp │ │ │ │ │ │ ├── juce_MixerAudioSource.h │ │ │ │ │ │ ├── juce_PositionableAudioSource.h │ │ │ │ │ │ ├── juce_ResamplingAudioSource.cpp │ │ │ │ │ │ ├── juce_ResamplingAudioSource.h │ │ │ │ │ │ ├── juce_ReverbAudioSource.cpp │ │ │ │ │ │ ├── juce_ReverbAudioSource.h │ │ │ │ │ │ ├── juce_ToneGeneratorAudioSource.cpp │ │ │ │ │ │ └── juce_ToneGeneratorAudioSource.h │ │ │ │ │ └── synthesisers │ │ │ │ │ │ ├── juce_Synthesiser.cpp │ │ │ │ │ │ └── juce_Synthesiser.h │ │ │ │ │ ├── juce_audio_devices │ │ │ │ │ ├── audio_cd │ │ │ │ │ │ ├── juce_AudioCDBurner.h │ │ │ │ │ │ ├── juce_AudioCDReader.cpp │ │ │ │ │ │ └── juce_AudioCDReader.h │ │ │ │ │ ├── audio_io │ │ │ │ │ │ ├── juce_AudioDeviceManager.cpp │ │ │ │ │ │ ├── juce_AudioDeviceManager.h │ │ │ │ │ │ ├── juce_AudioIODevice.cpp │ │ │ │ │ │ ├── juce_AudioIODevice.h │ │ │ │ │ │ ├── juce_AudioIODeviceType.cpp │ │ │ │ │ │ ├── juce_AudioIODeviceType.h │ │ │ │ │ │ └── juce_SystemAudioVolume.h │ │ │ │ │ ├── juce_audio_devices.cpp │ │ │ │ │ ├── juce_audio_devices.h │ │ │ │ │ ├── juce_audio_devices.mm │ │ │ │ │ ├── juce_module_info │ │ │ │ │ ├── midi_io │ │ │ │ │ │ ├── juce_MidiInput.h │ │ │ │ │ │ ├── juce_MidiMessageCollector.cpp │ │ │ │ │ │ ├── juce_MidiMessageCollector.h │ │ │ │ │ │ ├── juce_MidiOutput.cpp │ │ │ │ │ │ └── juce_MidiOutput.h │ │ │ │ │ ├── native │ │ │ │ │ │ ├── juce_MidiDataConcatenator.h │ │ │ │ │ │ ├── juce_android_Audio.cpp │ │ │ │ │ │ ├── juce_android_Midi.cpp │ │ │ │ │ │ ├── juce_android_OpenSL.cpp │ │ │ │ │ │ ├── juce_ios_Audio.cpp │ │ │ │ │ │ ├── juce_linux_ALSA.cpp │ │ │ │ │ │ ├── juce_linux_AudioCDReader.cpp │ │ │ │ │ │ ├── juce_linux_JackAudio.cpp │ │ │ │ │ │ ├── juce_linux_Midi.cpp │ │ │ │ │ │ ├── juce_mac_AudioCDBurner.mm │ │ │ │ │ │ ├── juce_mac_AudioCDReader.mm │ │ │ │ │ │ ├── juce_mac_CoreAudio.cpp │ │ │ │ │ │ ├── juce_mac_CoreMidi.cpp │ │ │ │ │ │ ├── juce_win32_ASIO.cpp │ │ │ │ │ │ ├── juce_win32_AudioCDBurner.cpp │ │ │ │ │ │ ├── juce_win32_AudioCDReader.cpp │ │ │ │ │ │ ├── juce_win32_DirectSound.cpp │ │ │ │ │ │ ├── juce_win32_Midi.cpp │ │ │ │ │ │ └── juce_win32_WASAPI.cpp │ │ │ │ │ └── sources │ │ │ │ │ │ ├── juce_AudioSourcePlayer.cpp │ │ │ │ │ │ ├── juce_AudioSourcePlayer.h │ │ │ │ │ │ ├── juce_AudioTransportSource.cpp │ │ │ │ │ │ └── juce_AudioTransportSource.h │ │ │ │ │ ├── juce_audio_formats │ │ │ │ │ ├── codecs │ │ │ │ │ │ ├── flac │ │ │ │ │ │ │ ├── Flac Licence.txt │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── alloc.h │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ │ ├── endswap.h │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ ├── libFLAC │ │ │ │ │ │ │ │ ├── bitmath.c │ │ │ │ │ │ │ │ ├── bitreader.c │ │ │ │ │ │ │ │ ├── bitwriter.c │ │ │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ │ │ ├── crc.c │ │ │ │ │ │ │ │ ├── fixed.c │ │ │ │ │ │ │ │ ├── float.c │ │ │ │ │ │ │ │ ├── format.c │ │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ │ ├── private │ │ │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ │ │ ├── bitmath.h │ │ │ │ │ │ │ │ │ │ ├── bitreader.h │ │ │ │ │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ │ │ │ │ ├── fixed.h │ │ │ │ │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ │ │ │ │ │ └── window.h │ │ │ │ │ │ │ │ │ └── protected │ │ │ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ │ │ ├── lpc_flac.c │ │ │ │ │ │ │ │ ├── md5.c │ │ │ │ │ │ │ │ ├── memory.c │ │ │ │ │ │ │ │ ├── stream_decoder.c │ │ │ │ │ │ │ │ ├── stream_encoder.c │ │ │ │ │ │ │ │ ├── stream_encoder_framing.c │ │ │ │ │ │ │ │ └── window_flac.c │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ ├── juce_AiffAudioFormat.cpp │ │ │ │ │ │ ├── juce_AiffAudioFormat.h │ │ │ │ │ │ ├── juce_CoreAudioFormat.cpp │ │ │ │ │ │ ├── juce_CoreAudioFormat.h │ │ │ │ │ │ ├── juce_FlacAudioFormat.cpp │ │ │ │ │ │ ├── juce_FlacAudioFormat.h │ │ │ │ │ │ ├── juce_LAMEEncoderAudioFormat.cpp │ │ │ │ │ │ ├── juce_LAMEEncoderAudioFormat.h │ │ │ │ │ │ ├── juce_MP3AudioFormat.cpp │ │ │ │ │ │ ├── juce_MP3AudioFormat.h │ │ │ │ │ │ ├── juce_OggVorbisAudioFormat.cpp │ │ │ │ │ │ ├── juce_OggVorbisAudioFormat.h │ │ │ │ │ │ ├── juce_QuickTimeAudioFormat.cpp │ │ │ │ │ │ ├── juce_QuickTimeAudioFormat.h │ │ │ │ │ │ ├── juce_WavAudioFormat.cpp │ │ │ │ │ │ ├── juce_WavAudioFormat.h │ │ │ │ │ │ ├── juce_WindowsMediaAudioFormat.cpp │ │ │ │ │ │ ├── juce_WindowsMediaAudioFormat.h │ │ │ │ │ │ └── oggvorbis │ │ │ │ │ │ │ ├── Ogg Vorbis Licence.txt │ │ │ │ │ │ │ ├── bitwise.c │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ ├── config_types.h │ │ │ │ │ │ │ ├── framing.c │ │ │ │ │ │ │ ├── libvorbis-1.3.2 │ │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ │ ├── CHANGES │ │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ ├── analysis.c │ │ │ │ │ │ │ │ ├── backends.h │ │ │ │ │ │ │ │ ├── bitrate.c │ │ │ │ │ │ │ │ ├── bitrate.h │ │ │ │ │ │ │ │ ├── block.c │ │ │ │ │ │ │ │ ├── books │ │ │ │ │ │ │ │ ├── coupled │ │ │ │ │ │ │ │ │ ├── res_books_51.h │ │ │ │ │ │ │ │ │ └── res_books_stereo.h │ │ │ │ │ │ │ │ ├── floor │ │ │ │ │ │ │ │ │ └── floor_books.h │ │ │ │ │ │ │ │ └── uncoupled │ │ │ │ │ │ │ │ │ └── res_books_uncoupled.h │ │ │ │ │ │ │ │ ├── codebook.c │ │ │ │ │ │ │ │ ├── codebook.h │ │ │ │ │ │ │ │ ├── codec_internal.h │ │ │ │ │ │ │ │ ├── envelope.c │ │ │ │ │ │ │ │ ├── envelope.h │ │ │ │ │ │ │ │ ├── floor0.c │ │ │ │ │ │ │ │ ├── floor1.c │ │ │ │ │ │ │ │ ├── highlevel.h │ │ │ │ │ │ │ │ ├── info.c │ │ │ │ │ │ │ │ ├── lookup.c │ │ │ │ │ │ │ │ ├── lookup.h │ │ │ │ │ │ │ │ ├── lookup_data.h │ │ │ │ │ │ │ │ ├── lpc.c │ │ │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ │ │ ├── lsp.c │ │ │ │ │ │ │ │ ├── lsp.h │ │ │ │ │ │ │ │ ├── mapping0.c │ │ │ │ │ │ │ │ ├── masking.h │ │ │ │ │ │ │ │ ├── mdct.c │ │ │ │ │ │ │ │ ├── mdct.h │ │ │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ │ │ ├── modes │ │ │ │ │ │ │ │ ├── floor_all.h │ │ │ │ │ │ │ │ ├── psych_11.h │ │ │ │ │ │ │ │ ├── psych_16.h │ │ │ │ │ │ │ │ ├── psych_44.h │ │ │ │ │ │ │ │ ├── psych_8.h │ │ │ │ │ │ │ │ ├── residue_16.h │ │ │ │ │ │ │ │ ├── residue_44.h │ │ │ │ │ │ │ │ ├── residue_44p51.h │ │ │ │ │ │ │ │ ├── residue_44u.h │ │ │ │ │ │ │ │ ├── residue_8.h │ │ │ │ │ │ │ │ ├── setup_11.h │ │ │ │ │ │ │ │ ├── setup_16.h │ │ │ │ │ │ │ │ ├── setup_22.h │ │ │ │ │ │ │ │ ├── setup_32.h │ │ │ │ │ │ │ │ ├── setup_44.h │ │ │ │ │ │ │ │ ├── setup_44p51.h │ │ │ │ │ │ │ │ ├── setup_44u.h │ │ │ │ │ │ │ │ ├── setup_8.h │ │ │ │ │ │ │ │ └── setup_X.h │ │ │ │ │ │ │ │ ├── os.h │ │ │ │ │ │ │ │ ├── psy.c │ │ │ │ │ │ │ │ ├── psy.h │ │ │ │ │ │ │ │ ├── registry.c │ │ │ │ │ │ │ │ ├── registry.h │ │ │ │ │ │ │ │ ├── res0.c │ │ │ │ │ │ │ │ ├── scales.h │ │ │ │ │ │ │ │ ├── sharedbook.c │ │ │ │ │ │ │ │ ├── smallft.c │ │ │ │ │ │ │ │ ├── smallft.h │ │ │ │ │ │ │ │ ├── synthesis.c │ │ │ │ │ │ │ │ ├── vorbisenc.c │ │ │ │ │ │ │ │ ├── vorbisfile.c │ │ │ │ │ │ │ │ ├── window.c │ │ │ │ │ │ │ │ └── window.h │ │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ │ ├── os_types.h │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ ├── format │ │ │ │ │ │ ├── juce_AudioFormat.cpp │ │ │ │ │ │ ├── juce_AudioFormat.h │ │ │ │ │ │ ├── juce_AudioFormatManager.cpp │ │ │ │ │ │ ├── juce_AudioFormatManager.h │ │ │ │ │ │ ├── juce_AudioFormatReader.cpp │ │ │ │ │ │ ├── juce_AudioFormatReader.h │ │ │ │ │ │ ├── juce_AudioFormatReaderSource.cpp │ │ │ │ │ │ ├── juce_AudioFormatReaderSource.h │ │ │ │ │ │ ├── juce_AudioFormatWriter.cpp │ │ │ │ │ │ ├── juce_AudioFormatWriter.h │ │ │ │ │ │ ├── juce_AudioSubsectionReader.cpp │ │ │ │ │ │ ├── juce_AudioSubsectionReader.h │ │ │ │ │ │ ├── juce_BufferingAudioFormatReader.cpp │ │ │ │ │ │ ├── juce_BufferingAudioFormatReader.h │ │ │ │ │ │ └── juce_MemoryMappedAudioFormatReader.h │ │ │ │ │ ├── juce_audio_formats.cpp │ │ │ │ │ ├── juce_audio_formats.h │ │ │ │ │ ├── juce_audio_formats.mm │ │ │ │ │ ├── juce_module_info │ │ │ │ │ └── sampler │ │ │ │ │ │ ├── juce_Sampler.cpp │ │ │ │ │ │ └── juce_Sampler.h │ │ │ │ │ ├── juce_audio_plugin_client │ │ │ │ │ ├── AAX │ │ │ │ │ │ ├── juce_AAX_Wrapper.cpp │ │ │ │ │ │ └── juce_AAX_Wrapper.mm │ │ │ │ │ ├── AU │ │ │ │ │ │ ├── juce_AU_Resources.r │ │ │ │ │ │ └── juce_AU_Wrapper.mm │ │ │ │ │ ├── RTAS │ │ │ │ │ │ ├── juce_RTAS_DigiCode1.cpp │ │ │ │ │ │ ├── juce_RTAS_DigiCode2.cpp │ │ │ │ │ │ ├── juce_RTAS_DigiCode3.cpp │ │ │ │ │ │ ├── juce_RTAS_DigiCode_Header.h │ │ │ │ │ │ ├── juce_RTAS_MacResources.r │ │ │ │ │ │ ├── juce_RTAS_MacUtilities.mm │ │ │ │ │ │ ├── juce_RTAS_WinExports.def │ │ │ │ │ │ ├── juce_RTAS_WinResources.rsr │ │ │ │ │ │ ├── juce_RTAS_WinUtilities.cpp │ │ │ │ │ │ └── juce_RTAS_Wrapper.cpp │ │ │ │ │ ├── Standalone │ │ │ │ │ │ └── juce_StandaloneFilterWindow.h │ │ │ │ │ ├── VST │ │ │ │ │ │ ├── juce_VST_Wrapper.cpp │ │ │ │ │ │ └── juce_VST_Wrapper.mm │ │ │ │ │ ├── VST3 │ │ │ │ │ │ ├── juce_VST3_Wrapper.cpp │ │ │ │ │ │ └── juce_VST3_Wrapper.mm │ │ │ │ │ ├── juce_audio_plugin_client.h │ │ │ │ │ ├── juce_module_info │ │ │ │ │ └── utility │ │ │ │ │ │ ├── juce_CarbonVisibility.h │ │ │ │ │ │ ├── juce_CheckSettingMacros.h │ │ │ │ │ │ ├── juce_FakeMouseMoveGenerator.h │ │ │ │ │ │ ├── juce_IncludeModuleHeaders.h │ │ │ │ │ │ ├── juce_IncludeSystemHeaders.h │ │ │ │ │ │ ├── juce_PluginHostType.h │ │ │ │ │ │ ├── juce_PluginUtilities.cpp │ │ │ │ │ │ └── juce_WindowsHooks.h │ │ │ │ │ ├── juce_audio_processors │ │ │ │ │ ├── format │ │ │ │ │ │ ├── juce_AudioPluginFormat.cpp │ │ │ │ │ │ ├── juce_AudioPluginFormat.h │ │ │ │ │ │ ├── juce_AudioPluginFormatManager.cpp │ │ │ │ │ │ └── juce_AudioPluginFormatManager.h │ │ │ │ │ ├── format_types │ │ │ │ │ │ ├── juce_AudioUnitPluginFormat.h │ │ │ │ │ │ ├── juce_AudioUnitPluginFormat.mm │ │ │ │ │ │ ├── juce_LADSPAPluginFormat.cpp │ │ │ │ │ │ ├── juce_LADSPAPluginFormat.h │ │ │ │ │ │ ├── juce_VST3Common.h │ │ │ │ │ │ ├── juce_VST3Headers.h │ │ │ │ │ │ ├── juce_VST3PluginFormat.cpp │ │ │ │ │ │ ├── juce_VST3PluginFormat.h │ │ │ │ │ │ ├── juce_VSTMidiEventList.h │ │ │ │ │ │ ├── juce_VSTPluginFormat.cpp │ │ │ │ │ │ └── juce_VSTPluginFormat.h │ │ │ │ │ ├── juce_audio_processors.cpp │ │ │ │ │ ├── juce_audio_processors.h │ │ │ │ │ ├── juce_audio_processors.mm │ │ │ │ │ ├── juce_module_info │ │ │ │ │ ├── processors │ │ │ │ │ │ ├── juce_AudioPlayHead.h │ │ │ │ │ │ ├── juce_AudioPluginInstance.h │ │ │ │ │ │ ├── juce_AudioProcessor.cpp │ │ │ │ │ │ ├── juce_AudioProcessor.h │ │ │ │ │ │ ├── juce_AudioProcessorEditor.cpp │ │ │ │ │ │ ├── juce_AudioProcessorEditor.h │ │ │ │ │ │ ├── juce_AudioProcessorGraph.cpp │ │ │ │ │ │ ├── juce_AudioProcessorGraph.h │ │ │ │ │ │ ├── juce_AudioProcessorListener.h │ │ │ │ │ │ ├── juce_GenericAudioProcessorEditor.cpp │ │ │ │ │ │ ├── juce_GenericAudioProcessorEditor.h │ │ │ │ │ │ ├── juce_PluginDescription.cpp │ │ │ │ │ │ └── juce_PluginDescription.h │ │ │ │ │ └── scanning │ │ │ │ │ │ ├── juce_KnownPluginList.cpp │ │ │ │ │ │ ├── juce_KnownPluginList.h │ │ │ │ │ │ ├── juce_PluginDirectoryScanner.cpp │ │ │ │ │ │ ├── juce_PluginDirectoryScanner.h │ │ │ │ │ │ ├── juce_PluginListComponent.cpp │ │ │ │ │ │ └── juce_PluginListComponent.h │ │ │ │ │ ├── juce_audio_utils │ │ │ │ │ ├── gui │ │ │ │ │ │ ├── juce_AudioDeviceSelectorComponent.cpp │ │ │ │ │ │ ├── juce_AudioDeviceSelectorComponent.h │ │ │ │ │ │ ├── juce_AudioThumbnail.cpp │ │ │ │ │ │ ├── juce_AudioThumbnail.h │ │ │ │ │ │ ├── juce_AudioThumbnailBase.h │ │ │ │ │ │ ├── juce_AudioThumbnailCache.cpp │ │ │ │ │ │ ├── juce_AudioThumbnailCache.h │ │ │ │ │ │ ├── juce_MidiKeyboardComponent.cpp │ │ │ │ │ │ └── juce_MidiKeyboardComponent.h │ │ │ │ │ ├── juce_audio_utils.cpp │ │ │ │ │ ├── juce_audio_utils.h │ │ │ │ │ ├── juce_audio_utils.mm │ │ │ │ │ ├── juce_module_info │ │ │ │ │ └── players │ │ │ │ │ │ ├── juce_AudioProcessorPlayer.cpp │ │ │ │ │ │ └── juce_AudioProcessorPlayer.h │ │ │ │ │ ├── juce_core │ │ │ │ │ ├── containers │ │ │ │ │ │ ├── juce_AbstractFifo.cpp │ │ │ │ │ │ ├── juce_AbstractFifo.h │ │ │ │ │ │ ├── juce_Array.h │ │ │ │ │ │ ├── juce_ArrayAllocationBase.h │ │ │ │ │ │ ├── juce_DynamicObject.cpp │ │ │ │ │ │ ├── juce_DynamicObject.h │ │ │ │ │ │ ├── juce_ElementComparator.h │ │ │ │ │ │ ├── juce_HashMap.h │ │ │ │ │ │ ├── juce_LinkedListPointer.h │ │ │ │ │ │ ├── juce_NamedValueSet.cpp │ │ │ │ │ │ ├── juce_NamedValueSet.h │ │ │ │ │ │ ├── juce_OwnedArray.h │ │ │ │ │ │ ├── juce_PropertySet.cpp │ │ │ │ │ │ ├── juce_PropertySet.h │ │ │ │ │ │ ├── juce_ReferenceCountedArray.h │ │ │ │ │ │ ├── juce_ScopedValueSetter.h │ │ │ │ │ │ ├── juce_SortedSet.h │ │ │ │ │ │ ├── juce_SparseSet.h │ │ │ │ │ │ ├── juce_Variant.cpp │ │ │ │ │ │ └── juce_Variant.h │ │ │ │ │ ├── files │ │ │ │ │ │ ├── juce_DirectoryIterator.cpp │ │ │ │ │ │ ├── juce_DirectoryIterator.h │ │ │ │ │ │ ├── juce_File.cpp │ │ │ │ │ │ ├── juce_File.h │ │ │ │ │ │ ├── juce_FileFilter.cpp │ │ │ │ │ │ ├── juce_FileFilter.h │ │ │ │ │ │ ├── juce_FileInputStream.cpp │ │ │ │ │ │ ├── juce_FileInputStream.h │ │ │ │ │ │ ├── juce_FileOutputStream.cpp │ │ │ │ │ │ ├── juce_FileOutputStream.h │ │ │ │ │ │ ├── juce_FileSearchPath.cpp │ │ │ │ │ │ ├── juce_FileSearchPath.h │ │ │ │ │ │ ├── juce_MemoryMappedFile.h │ │ │ │ │ │ ├── juce_TemporaryFile.cpp │ │ │ │ │ │ ├── juce_TemporaryFile.h │ │ │ │ │ │ ├── juce_WildcardFileFilter.cpp │ │ │ │ │ │ └── juce_WildcardFileFilter.h │ │ │ │ │ ├── javascript │ │ │ │ │ │ ├── juce_JSON.cpp │ │ │ │ │ │ ├── juce_JSON.h │ │ │ │ │ │ ├── juce_Javascript.cpp │ │ │ │ │ │ └── juce_Javascript.h │ │ │ │ │ ├── json │ │ │ │ │ │ ├── juce_JSON.cpp │ │ │ │ │ │ └── juce_JSON.h │ │ │ │ │ ├── juce_core.cpp │ │ │ │ │ ├── juce_core.h │ │ │ │ │ ├── juce_core.mm │ │ │ │ │ ├── juce_module_info │ │ │ │ │ ├── logging │ │ │ │ │ │ ├── juce_FileLogger.cpp │ │ │ │ │ │ ├── juce_FileLogger.h │ │ │ │ │ │ ├── juce_Logger.cpp │ │ │ │ │ │ └── juce_Logger.h │ │ │ │ │ ├── maths │ │ │ │ │ │ ├── juce_BigInteger.cpp │ │ │ │ │ │ ├── juce_BigInteger.h │ │ │ │ │ │ ├── juce_Expression.cpp │ │ │ │ │ │ ├── juce_Expression.h │ │ │ │ │ │ ├── juce_MathsFunctions.h │ │ │ │ │ │ ├── juce_Random.cpp │ │ │ │ │ │ ├── juce_Random.h │ │ │ │ │ │ └── juce_Range.h │ │ │ │ │ ├── memory │ │ │ │ │ │ ├── juce_Atomic.h │ │ │ │ │ │ ├── juce_ByteOrder.h │ │ │ │ │ │ ├── juce_ContainerDeletePolicy.h │ │ │ │ │ │ ├── juce_HeapBlock.h │ │ │ │ │ │ ├── juce_LeakedObjectDetector.h │ │ │ │ │ │ ├── juce_Memory.h │ │ │ │ │ │ ├── juce_MemoryBlock.cpp │ │ │ │ │ │ ├── juce_MemoryBlock.h │ │ │ │ │ │ ├── juce_OptionalScopedPointer.h │ │ │ │ │ │ ├── juce_ReferenceCountedObject.h │ │ │ │ │ │ ├── juce_ScopedPointer.h │ │ │ │ │ │ ├── juce_SharedResourcePointer.h │ │ │ │ │ │ ├── juce_Singleton.h │ │ │ │ │ │ └── juce_WeakReference.h │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── juce_Result.cpp │ │ │ │ │ │ ├── juce_Result.h │ │ │ │ │ │ ├── juce_Uuid.cpp │ │ │ │ │ │ ├── juce_Uuid.h │ │ │ │ │ │ └── juce_WindowsRegistry.h │ │ │ │ │ ├── native │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── JuceAppActivity.java │ │ │ │ │ │ ├── juce_BasicNativeHeaders.h │ │ │ │ │ │ ├── juce_android_Files.cpp │ │ │ │ │ │ ├── juce_android_JNIHelpers.h │ │ │ │ │ │ ├── juce_android_Misc.cpp │ │ │ │ │ │ ├── juce_android_Network.cpp │ │ │ │ │ │ ├── juce_android_SystemStats.cpp │ │ │ │ │ │ ├── juce_android_Threads.cpp │ │ │ │ │ │ ├── juce_linux_CommonFile.cpp │ │ │ │ │ │ ├── juce_linux_Files.cpp │ │ │ │ │ │ ├── juce_linux_Network.cpp │ │ │ │ │ │ ├── juce_linux_SystemStats.cpp │ │ │ │ │ │ ├── juce_linux_Threads.cpp │ │ │ │ │ │ ├── juce_mac_Files.mm │ │ │ │ │ │ ├── juce_mac_Network.mm │ │ │ │ │ │ ├── juce_mac_Strings.mm │ │ │ │ │ │ ├── juce_mac_SystemStats.mm │ │ │ │ │ │ ├── juce_mac_Threads.mm │ │ │ │ │ │ ├── juce_osx_ObjCHelpers.h │ │ │ │ │ │ ├── juce_posix_NamedPipe.cpp │ │ │ │ │ │ ├── juce_posix_SharedCode.h │ │ │ │ │ │ ├── juce_win32_ComSmartPtr.h │ │ │ │ │ │ ├── juce_win32_Files.cpp │ │ │ │ │ │ ├── juce_win32_Network.cpp │ │ │ │ │ │ ├── juce_win32_Registry.cpp │ │ │ │ │ │ ├── juce_win32_SystemStats.cpp │ │ │ │ │ │ └── juce_win32_Threads.cpp │ │ │ │ │ ├── network │ │ │ │ │ │ ├── juce_IPAddress.cpp │ │ │ │ │ │ ├── juce_IPAddress.h │ │ │ │ │ │ ├── juce_MACAddress.cpp │ │ │ │ │ │ ├── juce_MACAddress.h │ │ │ │ │ │ ├── juce_NamedPipe.cpp │ │ │ │ │ │ ├── juce_NamedPipe.h │ │ │ │ │ │ ├── juce_Socket.cpp │ │ │ │ │ │ ├── juce_Socket.h │ │ │ │ │ │ ├── juce_URL.cpp │ │ │ │ │ │ └── juce_URL.h │ │ │ │ │ ├── streams │ │ │ │ │ │ ├── juce_BufferedInputStream.cpp │ │ │ │ │ │ ├── juce_BufferedInputStream.h │ │ │ │ │ │ ├── juce_FileInputSource.cpp │ │ │ │ │ │ ├── juce_FileInputSource.h │ │ │ │ │ │ ├── juce_InputSource.h │ │ │ │ │ │ ├── juce_InputStream.cpp │ │ │ │ │ │ ├── juce_InputStream.h │ │ │ │ │ │ ├── juce_MemoryInputStream.cpp │ │ │ │ │ │ ├── juce_MemoryInputStream.h │ │ │ │ │ │ ├── juce_MemoryOutputStream.cpp │ │ │ │ │ │ ├── juce_MemoryOutputStream.h │ │ │ │ │ │ ├── juce_OutputStream.cpp │ │ │ │ │ │ ├── juce_OutputStream.h │ │ │ │ │ │ ├── juce_SubregionStream.cpp │ │ │ │ │ │ └── juce_SubregionStream.h │ │ │ │ │ ├── system │ │ │ │ │ │ ├── juce_PlatformDefs.h │ │ │ │ │ │ ├── juce_StandardHeader.h │ │ │ │ │ │ ├── juce_SystemStats.cpp │ │ │ │ │ │ ├── juce_SystemStats.h │ │ │ │ │ │ └── juce_TargetPlatform.h │ │ │ │ │ ├── text │ │ │ │ │ │ ├── juce_CharPointer_ASCII.h │ │ │ │ │ │ ├── juce_CharPointer_UTF16.h │ │ │ │ │ │ ├── juce_CharPointer_UTF32.h │ │ │ │ │ │ ├── juce_CharPointer_UTF8.h │ │ │ │ │ │ ├── juce_CharacterFunctions.cpp │ │ │ │ │ │ ├── juce_CharacterFunctions.h │ │ │ │ │ │ ├── juce_Identifier.cpp │ │ │ │ │ │ ├── juce_Identifier.h │ │ │ │ │ │ ├── juce_LocalisedStrings.cpp │ │ │ │ │ │ ├── juce_LocalisedStrings.h │ │ │ │ │ │ ├── juce_NewLine.h │ │ │ │ │ │ ├── juce_String.cpp │ │ │ │ │ │ ├── juce_String.h │ │ │ │ │ │ ├── juce_StringArray.cpp │ │ │ │ │ │ ├── juce_StringArray.h │ │ │ │ │ │ ├── juce_StringPairArray.cpp │ │ │ │ │ │ ├── juce_StringPairArray.h │ │ │ │ │ │ ├── juce_StringPool.cpp │ │ │ │ │ │ ├── juce_StringPool.h │ │ │ │ │ │ ├── juce_StringRef.h │ │ │ │ │ │ ├── juce_TextDiff.cpp │ │ │ │ │ │ └── juce_TextDiff.h │ │ │ │ │ ├── threads │ │ │ │ │ │ ├── juce_ChildProcess.cpp │ │ │ │ │ │ ├── juce_ChildProcess.h │ │ │ │ │ │ ├── juce_CriticalSection.h │ │ │ │ │ │ ├── juce_DynamicLibrary.h │ │ │ │ │ │ ├── juce_HighResolutionTimer.cpp │ │ │ │ │ │ ├── juce_HighResolutionTimer.h │ │ │ │ │ │ ├── juce_InterProcessLock.h │ │ │ │ │ │ ├── juce_Process.h │ │ │ │ │ │ ├── juce_ReadWriteLock.cpp │ │ │ │ │ │ ├── juce_ReadWriteLock.h │ │ │ │ │ │ ├── juce_ScopedLock.h │ │ │ │ │ │ ├── juce_ScopedReadLock.h │ │ │ │ │ │ ├── juce_ScopedWriteLock.h │ │ │ │ │ │ ├── juce_SpinLock.h │ │ │ │ │ │ ├── juce_Thread.cpp │ │ │ │ │ │ ├── juce_Thread.h │ │ │ │ │ │ ├── juce_ThreadLocalValue.h │ │ │ │ │ │ ├── juce_ThreadPool.cpp │ │ │ │ │ │ ├── juce_ThreadPool.h │ │ │ │ │ │ ├── juce_TimeSliceThread.cpp │ │ │ │ │ │ ├── juce_TimeSliceThread.h │ │ │ │ │ │ └── juce_WaitableEvent.h │ │ │ │ │ ├── time │ │ │ │ │ │ ├── juce_PerformanceCounter.cpp │ │ │ │ │ │ ├── juce_PerformanceCounter.h │ │ │ │ │ │ ├── juce_RelativeTime.cpp │ │ │ │ │ │ ├── juce_RelativeTime.h │ │ │ │ │ │ ├── juce_Time.cpp │ │ │ │ │ │ └── juce_Time.h │ │ │ │ │ ├── unit_tests │ │ │ │ │ │ ├── juce_UnitTest.cpp │ │ │ │ │ │ └── juce_UnitTest.h │ │ │ │ │ ├── xml │ │ │ │ │ │ ├── juce_XmlDocument.cpp │ │ │ │ │ │ ├── juce_XmlDocument.h │ │ │ │ │ │ ├── juce_XmlElement.cpp │ │ │ │ │ │ └── juce_XmlElement.h │ │ │ │ │ └── zip │ │ │ │ │ │ ├── juce_GZIPCompressorOutputStream.cpp │ │ │ │ │ │ ├── juce_GZIPCompressorOutputStream.h │ │ │ │ │ │ ├── juce_GZIPDecompressorInputStream.cpp │ │ │ │ │ │ ├── juce_GZIPDecompressorInputStream.h │ │ │ │ │ │ ├── juce_ZipFile.cpp │ │ │ │ │ │ ├── juce_ZipFile.h │ │ │ │ │ │ └── zlib │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── adler32.c │ │ │ │ │ │ ├── compress.c │ │ │ │ │ │ ├── crc32.c │ │ │ │ │ │ ├── crc32.h │ │ │ │ │ │ ├── deflate.c │ │ │ │ │ │ ├── deflate.h │ │ │ │ │ │ ├── infback.c │ │ │ │ │ │ ├── inffast.c │ │ │ │ │ │ ├── inffast.h │ │ │ │ │ │ ├── inffixed.h │ │ │ │ │ │ ├── inflate.c │ │ │ │ │ │ ├── inflate.h │ │ │ │ │ │ ├── inftrees.c │ │ │ │ │ │ ├── inftrees.h │ │ │ │ │ │ ├── trees.c │ │ │ │ │ │ ├── trees.h │ │ │ │ │ │ ├── uncompr.c │ │ │ │ │ │ ├── zconf.h │ │ │ │ │ │ ├── zconf.in.h │ │ │ │ │ │ ├── zlib.h │ │ │ │ │ │ ├── zutil.c │ │ │ │ │ │ └── zutil.h │ │ │ │ │ ├── juce_cryptography │ │ │ │ │ ├── encryption │ │ │ │ │ │ ├── juce_BlowFish.cpp │ │ │ │ │ │ ├── juce_BlowFish.h │ │ │ │ │ │ ├── juce_Primes.cpp │ │ │ │ │ │ ├── juce_Primes.h │ │ │ │ │ │ ├── juce_RSAKey.cpp │ │ │ │ │ │ └── juce_RSAKey.h │ │ │ │ │ ├── hashing │ │ │ │ │ │ ├── juce_MD5.cpp │ │ │ │ │ │ ├── juce_MD5.h │ │ │ │ │ │ ├── juce_SHA256.cpp │ │ │ │ │ │ └── juce_SHA256.h │ │ │ │ │ ├── juce_cryptography.cpp │ │ │ │ │ ├── juce_cryptography.h │ │ │ │ │ ├── juce_cryptography.mm │ │ │ │ │ └── juce_module_info │ │ │ │ │ ├── juce_data_structures │ │ │ │ │ ├── app_properties │ │ │ │ │ │ ├── juce_ApplicationProperties.cpp │ │ │ │ │ │ ├── juce_ApplicationProperties.h │ │ │ │ │ │ ├── juce_PropertiesFile.cpp │ │ │ │ │ │ └── juce_PropertiesFile.h │ │ │ │ │ ├── juce_data_structures.cpp │ │ │ │ │ ├── juce_data_structures.h │ │ │ │ │ ├── juce_data_structures.mm │ │ │ │ │ ├── juce_module_info │ │ │ │ │ ├── undomanager │ │ │ │ │ │ ├── juce_UndoManager.cpp │ │ │ │ │ │ ├── juce_UndoManager.h │ │ │ │ │ │ └── juce_UndoableAction.h │ │ │ │ │ └── values │ │ │ │ │ │ ├── juce_Value.cpp │ │ │ │ │ │ ├── juce_Value.h │ │ │ │ │ │ ├── juce_ValueTree.cpp │ │ │ │ │ │ └── juce_ValueTree.h │ │ │ │ │ ├── juce_events │ │ │ │ │ ├── broadcasters │ │ │ │ │ │ ├── juce_ActionBroadcaster.cpp │ │ │ │ │ │ ├── juce_ActionBroadcaster.h │ │ │ │ │ │ ├── juce_ActionListener.h │ │ │ │ │ │ ├── juce_AsyncUpdater.cpp │ │ │ │ │ │ ├── juce_AsyncUpdater.h │ │ │ │ │ │ ├── juce_ChangeBroadcaster.cpp │ │ │ │ │ │ ├── juce_ChangeBroadcaster.h │ │ │ │ │ │ ├── juce_ChangeListener.h │ │ │ │ │ │ └── juce_ListenerList.h │ │ │ │ │ ├── interprocess │ │ │ │ │ │ ├── juce_ConnectedChildProcess.cpp │ │ │ │ │ │ ├── juce_ConnectedChildProcess.h │ │ │ │ │ │ ├── juce_InterprocessConnection.cpp │ │ │ │ │ │ ├── juce_InterprocessConnection.h │ │ │ │ │ │ ├── juce_InterprocessConnectionServer.cpp │ │ │ │ │ │ └── juce_InterprocessConnectionServer.h │ │ │ │ │ ├── juce_events.cpp │ │ │ │ │ ├── juce_events.h │ │ │ │ │ ├── juce_events.mm │ │ │ │ │ ├── juce_module_info │ │ │ │ │ ├── messages │ │ │ │ │ │ ├── juce_ApplicationBase.cpp │ │ │ │ │ │ ├── juce_ApplicationBase.h │ │ │ │ │ │ ├── juce_CallbackMessage.h │ │ │ │ │ │ ├── juce_DeletedAtShutdown.cpp │ │ │ │ │ │ ├── juce_DeletedAtShutdown.h │ │ │ │ │ │ ├── juce_Initialisation.h │ │ │ │ │ │ ├── juce_Message.h │ │ │ │ │ │ ├── juce_MessageListener.cpp │ │ │ │ │ │ ├── juce_MessageListener.h │ │ │ │ │ │ ├── juce_MessageManager.cpp │ │ │ │ │ │ ├── juce_MessageManager.h │ │ │ │ │ │ └── juce_NotificationType.h │ │ │ │ │ ├── native │ │ │ │ │ │ ├── juce_ScopedXLock.h │ │ │ │ │ │ ├── juce_android_Messaging.cpp │ │ │ │ │ │ ├── juce_ios_MessageManager.mm │ │ │ │ │ │ ├── juce_linux_Messaging.cpp │ │ │ │ │ │ ├── juce_mac_MessageManager.mm │ │ │ │ │ │ ├── juce_osx_MessageQueue.h │ │ │ │ │ │ ├── juce_win32_HiddenMessageWindow.h │ │ │ │ │ │ └── juce_win32_Messaging.cpp │ │ │ │ │ └── timers │ │ │ │ │ │ ├── juce_MultiTimer.cpp │ │ │ │ │ │ ├── juce_MultiTimer.h │ │ │ │ │ │ ├── juce_Timer.cpp │ │ │ │ │ │ └── juce_Timer.h │ │ │ │ │ ├── juce_graphics │ │ │ │ │ ├── colour │ │ │ │ │ │ ├── juce_Colour.cpp │ │ │ │ │ │ ├── juce_Colour.h │ │ │ │ │ │ ├── juce_ColourGradient.cpp │ │ │ │ │ │ ├── juce_ColourGradient.h │ │ │ │ │ │ ├── juce_Colours.cpp │ │ │ │ │ │ ├── juce_Colours.h │ │ │ │ │ │ ├── juce_FillType.cpp │ │ │ │ │ │ ├── juce_FillType.h │ │ │ │ │ │ └── juce_PixelFormats.h │ │ │ │ │ ├── contexts │ │ │ │ │ │ ├── juce_GraphicsContext.cpp │ │ │ │ │ │ ├── juce_GraphicsContext.h │ │ │ │ │ │ ├── juce_LowLevelGraphicsContext.h │ │ │ │ │ │ ├── juce_LowLevelGraphicsPostScriptRenderer.cpp │ │ │ │ │ │ ├── juce_LowLevelGraphicsPostScriptRenderer.h │ │ │ │ │ │ ├── juce_LowLevelGraphicsSoftwareRenderer.cpp │ │ │ │ │ │ └── juce_LowLevelGraphicsSoftwareRenderer.h │ │ │ │ │ ├── effects │ │ │ │ │ │ ├── juce_DropShadowEffect.cpp │ │ │ │ │ │ ├── juce_DropShadowEffect.h │ │ │ │ │ │ ├── juce_GlowEffect.cpp │ │ │ │ │ │ ├── juce_GlowEffect.h │ │ │ │ │ │ └── juce_ImageEffectFilter.h │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── juce_AttributedString.cpp │ │ │ │ │ │ ├── juce_AttributedString.h │ │ │ │ │ │ ├── juce_CustomTypeface.cpp │ │ │ │ │ │ ├── juce_CustomTypeface.h │ │ │ │ │ │ ├── juce_Font.cpp │ │ │ │ │ │ ├── juce_Font.h │ │ │ │ │ │ ├── juce_GlyphArrangement.cpp │ │ │ │ │ │ ├── juce_GlyphArrangement.h │ │ │ │ │ │ ├── juce_TextLayout.cpp │ │ │ │ │ │ ├── juce_TextLayout.h │ │ │ │ │ │ ├── juce_Typeface.cpp │ │ │ │ │ │ └── juce_Typeface.h │ │ │ │ │ ├── geometry │ │ │ │ │ │ ├── juce_AffineTransform.cpp │ │ │ │ │ │ ├── juce_AffineTransform.h │ │ │ │ │ │ ├── juce_BorderSize.h │ │ │ │ │ │ ├── juce_EdgeTable.cpp │ │ │ │ │ │ ├── juce_EdgeTable.h │ │ │ │ │ │ ├── juce_Line.h │ │ │ │ │ │ ├── juce_Path.cpp │ │ │ │ │ │ ├── juce_Path.h │ │ │ │ │ │ ├── juce_PathIterator.cpp │ │ │ │ │ │ ├── juce_PathIterator.h │ │ │ │ │ │ ├── juce_PathStrokeType.cpp │ │ │ │ │ │ ├── juce_PathStrokeType.h │ │ │ │ │ │ ├── juce_Point.h │ │ │ │ │ │ ├── juce_Rectangle.h │ │ │ │ │ │ ├── juce_RectangleList.cpp │ │ │ │ │ │ └── juce_RectangleList.h │ │ │ │ │ ├── image_formats │ │ │ │ │ │ ├── jpglib │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── cderror.h │ │ │ │ │ │ │ ├── changes to libjpeg for JUCE.txt │ │ │ │ │ │ │ ├── jcapimin.c │ │ │ │ │ │ │ ├── jcapistd.c │ │ │ │ │ │ │ ├── jccoefct.c │ │ │ │ │ │ │ ├── jccolor.c │ │ │ │ │ │ │ ├── jcdctmgr.c │ │ │ │ │ │ │ ├── jchuff.c │ │ │ │ │ │ │ ├── jchuff.h │ │ │ │ │ │ │ ├── jcinit.c │ │ │ │ │ │ │ ├── jcmainct.c │ │ │ │ │ │ │ ├── jcmarker.c │ │ │ │ │ │ │ ├── jcmaster.c │ │ │ │ │ │ │ ├── jcomapi.c │ │ │ │ │ │ │ ├── jconfig.h │ │ │ │ │ │ │ ├── jcparam.c │ │ │ │ │ │ │ ├── jcphuff.c │ │ │ │ │ │ │ ├── jcprepct.c │ │ │ │ │ │ │ ├── jcsample.c │ │ │ │ │ │ │ ├── jctrans.c │ │ │ │ │ │ │ ├── jdapimin.c │ │ │ │ │ │ │ ├── jdapistd.c │ │ │ │ │ │ │ ├── jdatasrc.c │ │ │ │ │ │ │ ├── jdcoefct.c │ │ │ │ │ │ │ ├── jdcolor.c │ │ │ │ │ │ │ ├── jdct.h │ │ │ │ │ │ │ ├── jddctmgr.c │ │ │ │ │ │ │ ├── jdhuff.c │ │ │ │ │ │ │ ├── jdhuff.h │ │ │ │ │ │ │ ├── jdinput.c │ │ │ │ │ │ │ ├── jdmainct.c │ │ │ │ │ │ │ ├── jdmarker.c │ │ │ │ │ │ │ ├── jdmaster.c │ │ │ │ │ │ │ ├── jdmerge.c │ │ │ │ │ │ │ ├── jdphuff.c │ │ │ │ │ │ │ ├── jdpostct.c │ │ │ │ │ │ │ ├── jdsample.c │ │ │ │ │ │ │ ├── jdtrans.c │ │ │ │ │ │ │ ├── jerror.c │ │ │ │ │ │ │ ├── jerror.h │ │ │ │ │ │ │ ├── jfdctflt.c │ │ │ │ │ │ │ ├── jfdctfst.c │ │ │ │ │ │ │ ├── jfdctint.c │ │ │ │ │ │ │ ├── jidctflt.c │ │ │ │ │ │ │ ├── jidctfst.c │ │ │ │ │ │ │ ├── jidctint.c │ │ │ │ │ │ │ ├── jidctred.c │ │ │ │ │ │ │ ├── jinclude.h │ │ │ │ │ │ │ ├── jmemmgr.c │ │ │ │ │ │ │ ├── jmemnobs.c │ │ │ │ │ │ │ ├── jmemsys.h │ │ │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ │ │ ├── jpegint.h │ │ │ │ │ │ │ ├── jpeglib.h │ │ │ │ │ │ │ ├── jquant1.c │ │ │ │ │ │ │ ├── jquant2.c │ │ │ │ │ │ │ ├── jutils.c │ │ │ │ │ │ │ ├── jversion.h │ │ │ │ │ │ │ ├── transupp.c │ │ │ │ │ │ │ └── transupp.h │ │ │ │ │ │ ├── juce_GIFLoader.cpp │ │ │ │ │ │ ├── juce_JPEGLoader.cpp │ │ │ │ │ │ ├── juce_PNGLoader.cpp │ │ │ │ │ │ └── pnglib │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── libpng_readme.txt │ │ │ │ │ │ │ ├── png.c │ │ │ │ │ │ │ ├── png.h │ │ │ │ │ │ │ ├── pngconf.h │ │ │ │ │ │ │ ├── pngerror.c │ │ │ │ │ │ │ ├── pngget.c │ │ │ │ │ │ │ ├── pnginfo.h │ │ │ │ │ │ │ ├── pngmem.c │ │ │ │ │ │ │ ├── pngpread.c │ │ │ │ │ │ │ ├── pngpriv.h │ │ │ │ │ │ │ ├── pngread.c │ │ │ │ │ │ │ ├── pngrio.c │ │ │ │ │ │ │ ├── pngrtran.c │ │ │ │ │ │ │ ├── pngrutil.c │ │ │ │ │ │ │ ├── pngset.c │ │ │ │ │ │ │ ├── pngstruct.h │ │ │ │ │ │ │ ├── pngtrans.c │ │ │ │ │ │ │ ├── pngwio.c │ │ │ │ │ │ │ ├── pngwrite.c │ │ │ │ │ │ │ ├── pngwtran.c │ │ │ │ │ │ │ └── pngwutil.c │ │ │ │ │ ├── images │ │ │ │ │ │ ├── juce_Image.cpp │ │ │ │ │ │ ├── juce_Image.h │ │ │ │ │ │ ├── juce_ImageCache.cpp │ │ │ │ │ │ ├── juce_ImageCache.h │ │ │ │ │ │ ├── juce_ImageConvolutionKernel.cpp │ │ │ │ │ │ ├── juce_ImageConvolutionKernel.h │ │ │ │ │ │ ├── juce_ImageFileFormat.cpp │ │ │ │ │ │ └── juce_ImageFileFormat.h │ │ │ │ │ ├── juce_graphics.cpp │ │ │ │ │ ├── juce_graphics.h │ │ │ │ │ ├── juce_graphics.mm │ │ │ │ │ ├── juce_module_info │ │ │ │ │ ├── native │ │ │ │ │ │ ├── juce_RenderingHelpers.h │ │ │ │ │ │ ├── juce_android_Fonts.cpp │ │ │ │ │ │ ├── juce_android_GraphicsContext.cpp │ │ │ │ │ │ ├── juce_freetype_Fonts.cpp │ │ │ │ │ │ ├── juce_linux_Fonts.cpp │ │ │ │ │ │ ├── juce_mac_CoreGraphicsContext.h │ │ │ │ │ │ ├── juce_mac_CoreGraphicsContext.mm │ │ │ │ │ │ ├── juce_mac_CoreGraphicsHelpers.h │ │ │ │ │ │ ├── juce_mac_Fonts.mm │ │ │ │ │ │ ├── juce_win32_Direct2DGraphicsContext.cpp │ │ │ │ │ │ ├── juce_win32_DirectWriteTypeLayout.cpp │ │ │ │ │ │ ├── juce_win32_DirectWriteTypeface.cpp │ │ │ │ │ │ └── juce_win32_Fonts.cpp │ │ │ │ │ └── placement │ │ │ │ │ │ ├── juce_Justification.cpp │ │ │ │ │ │ ├── juce_Justification.h │ │ │ │ │ │ ├── juce_RectanglePlacement.cpp │ │ │ │ │ │ └── juce_RectanglePlacement.h │ │ │ │ │ ├── juce_gui_basics │ │ │ │ │ ├── application │ │ │ │ │ │ ├── juce_Application.cpp │ │ │ │ │ │ ├── juce_Application.h │ │ │ │ │ │ └── juce_Initialisation.h │ │ │ │ │ ├── buttons │ │ │ │ │ │ ├── juce_ArrowButton.cpp │ │ │ │ │ │ ├── juce_ArrowButton.h │ │ │ │ │ │ ├── juce_Button.cpp │ │ │ │ │ │ ├── juce_Button.h │ │ │ │ │ │ ├── juce_DrawableButton.cpp │ │ │ │ │ │ ├── juce_DrawableButton.h │ │ │ │ │ │ ├── juce_HyperlinkButton.cpp │ │ │ │ │ │ ├── juce_HyperlinkButton.h │ │ │ │ │ │ ├── juce_ImageButton.cpp │ │ │ │ │ │ ├── juce_ImageButton.h │ │ │ │ │ │ ├── juce_ShapeButton.cpp │ │ │ │ │ │ ├── juce_ShapeButton.h │ │ │ │ │ │ ├── juce_TextButton.cpp │ │ │ │ │ │ ├── juce_TextButton.h │ │ │ │ │ │ ├── juce_ToggleButton.cpp │ │ │ │ │ │ ├── juce_ToggleButton.h │ │ │ │ │ │ ├── juce_ToolbarButton.cpp │ │ │ │ │ │ └── juce_ToolbarButton.h │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── juce_ApplicationCommandID.h │ │ │ │ │ │ ├── juce_ApplicationCommandInfo.cpp │ │ │ │ │ │ ├── juce_ApplicationCommandInfo.h │ │ │ │ │ │ ├── juce_ApplicationCommandManager.cpp │ │ │ │ │ │ ├── juce_ApplicationCommandManager.h │ │ │ │ │ │ ├── juce_ApplicationCommandTarget.cpp │ │ │ │ │ │ ├── juce_ApplicationCommandTarget.h │ │ │ │ │ │ ├── juce_KeyPressMappingSet.cpp │ │ │ │ │ │ └── juce_KeyPressMappingSet.h │ │ │ │ │ ├── components │ │ │ │ │ │ ├── juce_CachedComponentImage.h │ │ │ │ │ │ ├── juce_Component.cpp │ │ │ │ │ │ ├── juce_Component.h │ │ │ │ │ │ ├── juce_ComponentListener.cpp │ │ │ │ │ │ ├── juce_ComponentListener.h │ │ │ │ │ │ ├── juce_Desktop.cpp │ │ │ │ │ │ ├── juce_Desktop.h │ │ │ │ │ │ ├── juce_ModalComponentManager.cpp │ │ │ │ │ │ └── juce_ModalComponentManager.h │ │ │ │ │ ├── drawables │ │ │ │ │ │ ├── juce_Drawable.cpp │ │ │ │ │ │ ├── juce_Drawable.h │ │ │ │ │ │ ├── juce_DrawableComposite.cpp │ │ │ │ │ │ ├── juce_DrawableComposite.h │ │ │ │ │ │ ├── juce_DrawableImage.cpp │ │ │ │ │ │ ├── juce_DrawableImage.h │ │ │ │ │ │ ├── juce_DrawablePath.cpp │ │ │ │ │ │ ├── juce_DrawablePath.h │ │ │ │ │ │ ├── juce_DrawableRectangle.cpp │ │ │ │ │ │ ├── juce_DrawableRectangle.h │ │ │ │ │ │ ├── juce_DrawableShape.cpp │ │ │ │ │ │ ├── juce_DrawableShape.h │ │ │ │ │ │ ├── juce_DrawableText.cpp │ │ │ │ │ │ ├── juce_DrawableText.h │ │ │ │ │ │ └── juce_SVGParser.cpp │ │ │ │ │ ├── filebrowser │ │ │ │ │ │ ├── juce_DirectoryContentsDisplayComponent.cpp │ │ │ │ │ │ ├── juce_DirectoryContentsDisplayComponent.h │ │ │ │ │ │ ├── juce_DirectoryContentsList.cpp │ │ │ │ │ │ ├── juce_DirectoryContentsList.h │ │ │ │ │ │ ├── juce_FileBrowserComponent.cpp │ │ │ │ │ │ ├── juce_FileBrowserComponent.h │ │ │ │ │ │ ├── juce_FileBrowserListener.h │ │ │ │ │ │ ├── juce_FileChooser.cpp │ │ │ │ │ │ ├── juce_FileChooser.h │ │ │ │ │ │ ├── juce_FileChooserDialogBox.cpp │ │ │ │ │ │ ├── juce_FileChooserDialogBox.h │ │ │ │ │ │ ├── juce_FileFilter.cpp │ │ │ │ │ │ ├── juce_FileFilter.h │ │ │ │ │ │ ├── juce_FileListComponent.cpp │ │ │ │ │ │ ├── juce_FileListComponent.h │ │ │ │ │ │ ├── juce_FilePreviewComponent.h │ │ │ │ │ │ ├── juce_FileSearchPathListComponent.cpp │ │ │ │ │ │ ├── juce_FileSearchPathListComponent.h │ │ │ │ │ │ ├── juce_FileTreeComponent.cpp │ │ │ │ │ │ ├── juce_FileTreeComponent.h │ │ │ │ │ │ ├── juce_FilenameComponent.cpp │ │ │ │ │ │ ├── juce_FilenameComponent.h │ │ │ │ │ │ ├── juce_ImagePreviewComponent.cpp │ │ │ │ │ │ ├── juce_ImagePreviewComponent.h │ │ │ │ │ │ ├── juce_WildcardFileFilter.cpp │ │ │ │ │ │ └── juce_WildcardFileFilter.h │ │ │ │ │ ├── juce_gui_basics.cpp │ │ │ │ │ ├── juce_gui_basics.h │ │ │ │ │ ├── juce_gui_basics.mm │ │ │ │ │ ├── juce_module_info │ │ │ │ │ ├── keyboard │ │ │ │ │ │ ├── juce_CaretComponent.cpp │ │ │ │ │ │ ├── juce_CaretComponent.h │ │ │ │ │ │ ├── juce_KeyListener.cpp │ │ │ │ │ │ ├── juce_KeyListener.h │ │ │ │ │ │ ├── juce_KeyPress.cpp │ │ │ │ │ │ ├── juce_KeyPress.h │ │ │ │ │ │ ├── juce_KeyboardFocusTraverser.cpp │ │ │ │ │ │ ├── juce_KeyboardFocusTraverser.h │ │ │ │ │ │ ├── juce_ModifierKeys.cpp │ │ │ │ │ │ ├── juce_ModifierKeys.h │ │ │ │ │ │ ├── juce_SystemClipboard.h │ │ │ │ │ │ ├── juce_TextEditorKeyMapper.h │ │ │ │ │ │ └── juce_TextInputTarget.h │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── juce_AnimatedPosition.h │ │ │ │ │ │ ├── juce_AnimatedPositionBehaviours.h │ │ │ │ │ │ ├── juce_ComponentAnimator.cpp │ │ │ │ │ │ ├── juce_ComponentAnimator.h │ │ │ │ │ │ ├── juce_ComponentBoundsConstrainer.cpp │ │ │ │ │ │ ├── juce_ComponentBoundsConstrainer.h │ │ │ │ │ │ ├── juce_ComponentBuilder.cpp │ │ │ │ │ │ ├── juce_ComponentBuilder.h │ │ │ │ │ │ ├── juce_ComponentMovementWatcher.cpp │ │ │ │ │ │ ├── juce_ComponentMovementWatcher.h │ │ │ │ │ │ ├── juce_ConcertinaPanel.cpp │ │ │ │ │ │ ├── juce_ConcertinaPanel.h │ │ │ │ │ │ ├── juce_GroupComponent.cpp │ │ │ │ │ │ ├── juce_GroupComponent.h │ │ │ │ │ │ ├── juce_MultiDocumentPanel.cpp │ │ │ │ │ │ ├── juce_MultiDocumentPanel.h │ │ │ │ │ │ ├── juce_ResizableBorderComponent.cpp │ │ │ │ │ │ ├── juce_ResizableBorderComponent.h │ │ │ │ │ │ ├── juce_ResizableCornerComponent.cpp │ │ │ │ │ │ ├── juce_ResizableCornerComponent.h │ │ │ │ │ │ ├── juce_ResizableEdgeComponent.cpp │ │ │ │ │ │ ├── juce_ResizableEdgeComponent.h │ │ │ │ │ │ ├── juce_ScrollBar.cpp │ │ │ │ │ │ ├── juce_ScrollBar.h │ │ │ │ │ │ ├── juce_StretchableLayoutManager.cpp │ │ │ │ │ │ ├── juce_StretchableLayoutManager.h │ │ │ │ │ │ ├── juce_StretchableLayoutResizerBar.cpp │ │ │ │ │ │ ├── juce_StretchableLayoutResizerBar.h │ │ │ │ │ │ ├── juce_StretchableObjectResizer.cpp │ │ │ │ │ │ ├── juce_StretchableObjectResizer.h │ │ │ │ │ │ ├── juce_TabbedButtonBar.cpp │ │ │ │ │ │ ├── juce_TabbedButtonBar.h │ │ │ │ │ │ ├── juce_TabbedComponent.cpp │ │ │ │ │ │ ├── juce_TabbedComponent.h │ │ │ │ │ │ ├── juce_Viewport.cpp │ │ │ │ │ │ └── juce_Viewport.h │ │ │ │ │ ├── lookandfeel │ │ │ │ │ │ ├── juce_LookAndFeel.cpp │ │ │ │ │ │ ├── juce_LookAndFeel.h │ │ │ │ │ │ ├── juce_LookAndFeel_V1.cpp │ │ │ │ │ │ ├── juce_LookAndFeel_V1.h │ │ │ │ │ │ ├── juce_LookAndFeel_V2.cpp │ │ │ │ │ │ ├── juce_LookAndFeel_V2.h │ │ │ │ │ │ ├── juce_LookAndFeel_V3.cpp │ │ │ │ │ │ └── juce_LookAndFeel_V3.h │ │ │ │ │ ├── menus │ │ │ │ │ │ ├── juce_MenuBarComponent.cpp │ │ │ │ │ │ ├── juce_MenuBarComponent.h │ │ │ │ │ │ ├── juce_MenuBarModel.cpp │ │ │ │ │ │ ├── juce_MenuBarModel.h │ │ │ │ │ │ ├── juce_PopupMenu.cpp │ │ │ │ │ │ └── juce_PopupMenu.h │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── juce_BubbleComponent.cpp │ │ │ │ │ │ ├── juce_BubbleComponent.h │ │ │ │ │ │ ├── juce_DropShadower.cpp │ │ │ │ │ │ └── juce_DropShadower.h │ │ │ │ │ ├── mouse │ │ │ │ │ │ ├── juce_ComponentDragger.cpp │ │ │ │ │ │ ├── juce_ComponentDragger.h │ │ │ │ │ │ ├── juce_DragAndDropContainer.cpp │ │ │ │ │ │ ├── juce_DragAndDropContainer.h │ │ │ │ │ │ ├── juce_DragAndDropTarget.h │ │ │ │ │ │ ├── juce_FileDragAndDropTarget.h │ │ │ │ │ │ ├── juce_LassoComponent.h │ │ │ │ │ │ ├── juce_MouseCursor.cpp │ │ │ │ │ │ ├── juce_MouseCursor.h │ │ │ │ │ │ ├── juce_MouseEvent.cpp │ │ │ │ │ │ ├── juce_MouseEvent.h │ │ │ │ │ │ ├── juce_MouseInactivityDetector.cpp │ │ │ │ │ │ ├── juce_MouseInactivityDetector.h │ │ │ │ │ │ ├── juce_MouseInputSource.cpp │ │ │ │ │ │ ├── juce_MouseInputSource.h │ │ │ │ │ │ ├── juce_MouseListener.cpp │ │ │ │ │ │ ├── juce_MouseListener.h │ │ │ │ │ │ ├── juce_SelectedItemSet.h │ │ │ │ │ │ ├── juce_TextDragAndDropTarget.h │ │ │ │ │ │ └── juce_TooltipClient.h │ │ │ │ │ ├── native │ │ │ │ │ │ ├── juce_MultiTouchMapper.h │ │ │ │ │ │ ├── juce_android_FileChooser.cpp │ │ │ │ │ │ ├── juce_android_Windowing.cpp │ │ │ │ │ │ ├── juce_ios_UIViewComponentPeer.mm │ │ │ │ │ │ ├── juce_ios_Windowing.mm │ │ │ │ │ │ ├── juce_linux_Clipboard.cpp │ │ │ │ │ │ ├── juce_linux_FileChooser.cpp │ │ │ │ │ │ ├── juce_linux_Windowing.cpp │ │ │ │ │ │ ├── juce_mac_FileChooser.mm │ │ │ │ │ │ ├── juce_mac_MainMenu.mm │ │ │ │ │ │ ├── juce_mac_MouseCursor.mm │ │ │ │ │ │ ├── juce_mac_NSViewComponentPeer.mm │ │ │ │ │ │ ├── juce_mac_Windowing.mm │ │ │ │ │ │ ├── juce_win32_DragAndDrop.cpp │ │ │ │ │ │ ├── juce_win32_FileChooser.cpp │ │ │ │ │ │ └── juce_win32_Windowing.cpp │ │ │ │ │ ├── positioning │ │ │ │ │ │ ├── juce_MarkerList.cpp │ │ │ │ │ │ ├── juce_MarkerList.h │ │ │ │ │ │ ├── juce_RelativeCoordinate.cpp │ │ │ │ │ │ ├── juce_RelativeCoordinate.h │ │ │ │ │ │ ├── juce_RelativeCoordinatePositioner.cpp │ │ │ │ │ │ ├── juce_RelativeCoordinatePositioner.h │ │ │ │ │ │ ├── juce_RelativeParallelogram.cpp │ │ │ │ │ │ ├── juce_RelativeParallelogram.h │ │ │ │ │ │ ├── juce_RelativePoint.cpp │ │ │ │ │ │ ├── juce_RelativePoint.h │ │ │ │ │ │ ├── juce_RelativePointPath.cpp │ │ │ │ │ │ ├── juce_RelativePointPath.h │ │ │ │ │ │ ├── juce_RelativeRectangle.cpp │ │ │ │ │ │ └── juce_RelativeRectangle.h │ │ │ │ │ ├── properties │ │ │ │ │ │ ├── juce_BooleanPropertyComponent.cpp │ │ │ │ │ │ ├── juce_BooleanPropertyComponent.h │ │ │ │ │ │ ├── juce_ButtonPropertyComponent.cpp │ │ │ │ │ │ ├── juce_ButtonPropertyComponent.h │ │ │ │ │ │ ├── juce_ChoicePropertyComponent.cpp │ │ │ │ │ │ ├── juce_ChoicePropertyComponent.h │ │ │ │ │ │ ├── juce_PropertyComponent.cpp │ │ │ │ │ │ ├── juce_PropertyComponent.h │ │ │ │ │ │ ├── juce_PropertyPanel.cpp │ │ │ │ │ │ ├── juce_PropertyPanel.h │ │ │ │ │ │ ├── juce_SliderPropertyComponent.cpp │ │ │ │ │ │ ├── juce_SliderPropertyComponent.h │ │ │ │ │ │ ├── juce_TextPropertyComponent.cpp │ │ │ │ │ │ └── juce_TextPropertyComponent.h │ │ │ │ │ ├── widgets │ │ │ │ │ │ ├── juce_ComboBox.cpp │ │ │ │ │ │ ├── juce_ComboBox.h │ │ │ │ │ │ ├── juce_ImageComponent.cpp │ │ │ │ │ │ ├── juce_ImageComponent.h │ │ │ │ │ │ ├── juce_Label.cpp │ │ │ │ │ │ ├── juce_Label.h │ │ │ │ │ │ ├── juce_ListBox.cpp │ │ │ │ │ │ ├── juce_ListBox.h │ │ │ │ │ │ ├── juce_ProgressBar.cpp │ │ │ │ │ │ ├── juce_ProgressBar.h │ │ │ │ │ │ ├── juce_Slider.cpp │ │ │ │ │ │ ├── juce_Slider.h │ │ │ │ │ │ ├── juce_TableHeaderComponent.cpp │ │ │ │ │ │ ├── juce_TableHeaderComponent.h │ │ │ │ │ │ ├── juce_TableListBox.cpp │ │ │ │ │ │ ├── juce_TableListBox.h │ │ │ │ │ │ ├── juce_TextEditor.cpp │ │ │ │ │ │ ├── juce_TextEditor.h │ │ │ │ │ │ ├── juce_Toolbar.cpp │ │ │ │ │ │ ├── juce_Toolbar.h │ │ │ │ │ │ ├── juce_ToolbarItemComponent.cpp │ │ │ │ │ │ ├── juce_ToolbarItemComponent.h │ │ │ │ │ │ ├── juce_ToolbarItemFactory.h │ │ │ │ │ │ ├── juce_ToolbarItemPalette.cpp │ │ │ │ │ │ ├── juce_ToolbarItemPalette.h │ │ │ │ │ │ ├── juce_TreeView.cpp │ │ │ │ │ │ └── juce_TreeView.h │ │ │ │ │ └── windows │ │ │ │ │ │ ├── juce_AlertWindow.cpp │ │ │ │ │ │ ├── juce_AlertWindow.h │ │ │ │ │ │ ├── juce_CallOutBox.cpp │ │ │ │ │ │ ├── juce_CallOutBox.h │ │ │ │ │ │ ├── juce_ComponentPeer.cpp │ │ │ │ │ │ ├── juce_ComponentPeer.h │ │ │ │ │ │ ├── juce_DialogWindow.cpp │ │ │ │ │ │ ├── juce_DialogWindow.h │ │ │ │ │ │ ├── juce_DocumentWindow.cpp │ │ │ │ │ │ ├── juce_DocumentWindow.h │ │ │ │ │ │ ├── juce_NativeMessageBox.h │ │ │ │ │ │ ├── juce_ResizableWindow.cpp │ │ │ │ │ │ ├── juce_ResizableWindow.h │ │ │ │ │ │ ├── juce_ThreadWithProgressWindow.cpp │ │ │ │ │ │ ├── juce_ThreadWithProgressWindow.h │ │ │ │ │ │ ├── juce_TooltipWindow.cpp │ │ │ │ │ │ ├── juce_TooltipWindow.h │ │ │ │ │ │ ├── juce_TopLevelWindow.cpp │ │ │ │ │ │ └── juce_TopLevelWindow.h │ │ │ │ │ ├── juce_gui_extra │ │ │ │ │ ├── code_editor │ │ │ │ │ │ ├── juce_CPlusPlusCodeTokeniser.cpp │ │ │ │ │ │ ├── juce_CPlusPlusCodeTokeniser.h │ │ │ │ │ │ ├── juce_CPlusPlusCodeTokeniserFunctions.h │ │ │ │ │ │ ├── juce_CodeDocument.cpp │ │ │ │ │ │ ├── juce_CodeDocument.h │ │ │ │ │ │ ├── juce_CodeEditorComponent.cpp │ │ │ │ │ │ ├── juce_CodeEditorComponent.h │ │ │ │ │ │ ├── juce_CodeTokeniser.h │ │ │ │ │ │ ├── juce_LuaCodeTokeniser.cpp │ │ │ │ │ │ ├── juce_LuaCodeTokeniser.h │ │ │ │ │ │ ├── juce_XMLCodeTokeniser.cpp │ │ │ │ │ │ └── juce_XMLCodeTokeniser.h │ │ │ │ │ ├── documents │ │ │ │ │ │ ├── juce_FileBasedDocument.cpp │ │ │ │ │ │ └── juce_FileBasedDocument.h │ │ │ │ │ ├── embedding │ │ │ │ │ │ ├── juce_ActiveXControlComponent.h │ │ │ │ │ │ ├── juce_NSViewComponent.h │ │ │ │ │ │ └── juce_UIViewComponent.h │ │ │ │ │ ├── juce_gui_extra.cpp │ │ │ │ │ ├── juce_gui_extra.h │ │ │ │ │ ├── juce_gui_extra.mm │ │ │ │ │ ├── juce_module_info │ │ │ │ │ ├── lookandfeel │ │ │ │ │ │ ├── juce_OldSchoolLookAndFeel.cpp │ │ │ │ │ │ └── juce_OldSchoolLookAndFeel.h │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── juce_AppleRemote.h │ │ │ │ │ │ ├── juce_BubbleMessageComponent.cpp │ │ │ │ │ │ ├── juce_BubbleMessageComponent.h │ │ │ │ │ │ ├── juce_ColourSelector.cpp │ │ │ │ │ │ ├── juce_ColourSelector.h │ │ │ │ │ │ ├── juce_KeyMappingEditorComponent.cpp │ │ │ │ │ │ ├── juce_KeyMappingEditorComponent.h │ │ │ │ │ │ ├── juce_LiveConstantEditor.cpp │ │ │ │ │ │ ├── juce_LiveConstantEditor.h │ │ │ │ │ │ ├── juce_PreferencesPanel.cpp │ │ │ │ │ │ ├── juce_PreferencesPanel.h │ │ │ │ │ │ ├── juce_RecentlyOpenedFilesList.cpp │ │ │ │ │ │ ├── juce_RecentlyOpenedFilesList.h │ │ │ │ │ │ ├── juce_SplashScreen.cpp │ │ │ │ │ │ ├── juce_SplashScreen.h │ │ │ │ │ │ ├── juce_SystemTrayIconComponent.cpp │ │ │ │ │ │ ├── juce_SystemTrayIconComponent.h │ │ │ │ │ │ └── juce_WebBrowserComponent.h │ │ │ │ │ └── native │ │ │ │ │ │ ├── juce_android_WebBrowserComponent.cpp │ │ │ │ │ │ ├── juce_ios_UIViewComponent.mm │ │ │ │ │ │ ├── juce_linux_SystemTrayIcon.cpp │ │ │ │ │ │ ├── juce_linux_WebBrowserComponent.cpp │ │ │ │ │ │ ├── juce_mac_AppleRemote.mm │ │ │ │ │ │ ├── juce_mac_CarbonViewWrapperComponent.h │ │ │ │ │ │ ├── juce_mac_NSViewComponent.mm │ │ │ │ │ │ ├── juce_mac_SystemTrayIcon.cpp │ │ │ │ │ │ ├── juce_mac_WebBrowserComponent.mm │ │ │ │ │ │ ├── juce_win32_ActiveXComponent.cpp │ │ │ │ │ │ ├── juce_win32_SystemTrayIcon.cpp │ │ │ │ │ │ └── juce_win32_WebBrowserComponent.cpp │ │ │ │ │ ├── juce_opengl │ │ │ │ │ ├── juce_module_info │ │ │ │ │ ├── juce_opengl.cpp │ │ │ │ │ ├── juce_opengl.h │ │ │ │ │ ├── juce_opengl.mm │ │ │ │ │ ├── native │ │ │ │ │ │ ├── juce_MissingGLDefinitions.h │ │ │ │ │ │ ├── juce_OpenGLExtensions.h │ │ │ │ │ │ ├── juce_OpenGL_android.h │ │ │ │ │ │ ├── juce_OpenGL_ios.h │ │ │ │ │ │ ├── juce_OpenGL_linux.h │ │ │ │ │ │ ├── juce_OpenGL_osx.h │ │ │ │ │ │ └── juce_OpenGL_win32.h │ │ │ │ │ └── opengl │ │ │ │ │ │ ├── juce_Draggable3DOrientation.h │ │ │ │ │ │ ├── juce_Matrix3D.h │ │ │ │ │ │ ├── juce_OpenGLContext.cpp │ │ │ │ │ │ ├── juce_OpenGLContext.h │ │ │ │ │ │ ├── juce_OpenGLFrameBuffer.cpp │ │ │ │ │ │ ├── juce_OpenGLFrameBuffer.h │ │ │ │ │ │ ├── juce_OpenGLGraphicsContext.cpp │ │ │ │ │ │ ├── juce_OpenGLGraphicsContext.h │ │ │ │ │ │ ├── juce_OpenGLHelpers.cpp │ │ │ │ │ │ ├── juce_OpenGLHelpers.h │ │ │ │ │ │ ├── juce_OpenGLImage.cpp │ │ │ │ │ │ ├── juce_OpenGLImage.h │ │ │ │ │ │ ├── juce_OpenGLPixelFormat.cpp │ │ │ │ │ │ ├── juce_OpenGLPixelFormat.h │ │ │ │ │ │ ├── juce_OpenGLRenderer.h │ │ │ │ │ │ ├── juce_OpenGLShaderProgram.cpp │ │ │ │ │ │ ├── juce_OpenGLShaderProgram.h │ │ │ │ │ │ ├── juce_OpenGLTexture.cpp │ │ │ │ │ │ ├── juce_OpenGLTexture.h │ │ │ │ │ │ ├── juce_Quaternion.h │ │ │ │ │ │ └── juce_Vector3D.h │ │ │ │ │ └── juce_video │ │ │ │ │ ├── capture │ │ │ │ │ ├── juce_CameraDevice.cpp │ │ │ │ │ └── juce_CameraDevice.h │ │ │ │ │ ├── juce_module_info │ │ │ │ │ ├── juce_video.cpp │ │ │ │ │ ├── juce_video.h │ │ │ │ │ ├── juce_video.mm │ │ │ │ │ ├── native │ │ │ │ │ ├── juce_android_CameraDevice.cpp │ │ │ │ │ ├── juce_mac_CameraDevice.mm │ │ │ │ │ ├── juce_mac_QuickTimeMovieComponent.mm │ │ │ │ │ ├── juce_win32_CameraDevice.cpp │ │ │ │ │ ├── juce_win32_DirectShowComponent.cpp │ │ │ │ │ └── juce_win32_QuickTimeMovieComponent.cpp │ │ │ │ │ └── playback │ │ │ │ │ ├── juce_DirectShowComponent.h │ │ │ │ │ └── juce_QuickTimeMovieComponent.h │ │ │ ├── MIDIboxSID.jucer │ │ │ ├── Source │ │ │ │ ├── MidiProcessing.cpp │ │ │ │ ├── MidiProcessing.h │ │ │ │ ├── PluginEditor.cpp │ │ │ │ ├── PluginEditor.h │ │ │ │ ├── PluginProcessor.cpp │ │ │ │ ├── PluginProcessor.h │ │ │ │ ├── gui │ │ │ │ │ ├── ControlGroupKnobs.cpp │ │ │ │ │ ├── ControlGroupKnobs.h │ │ │ │ │ ├── bitmaps │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── knob_blue.png │ │ │ │ │ │ ├── knob_negpos.png │ │ │ │ │ │ ├── knob_orange.png │ │ │ │ │ │ └── knob_small.png │ │ │ │ │ └── components │ │ │ │ │ │ ├── ControlGroup.cpp │ │ │ │ │ │ ├── ControlGroup.h │ │ │ │ │ │ ├── Knob.cpp │ │ │ │ │ │ ├── Knob.h │ │ │ │ │ │ ├── KnobBlue.cpp │ │ │ │ │ │ ├── KnobBlue.h │ │ │ │ │ │ ├── KnobNegPos.cpp │ │ │ │ │ │ ├── KnobNegPos.h │ │ │ │ │ │ ├── KnobOrange.cpp │ │ │ │ │ │ ├── KnobOrange.h │ │ │ │ │ │ ├── KnobSmall.cpp │ │ │ │ │ │ └── KnobSmall.h │ │ │ │ ├── mios32_config.h │ │ │ │ ├── mios32_wrapper_code.c │ │ │ │ └── tasks.c │ │ │ └── resid │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── THANKS │ │ │ │ ├── TODO │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.cache │ │ │ │ ├── config.guess │ │ │ │ ├── config.log │ │ │ │ ├── config.status │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── depcomp │ │ │ │ ├── envelope.cc │ │ │ │ ├── envelope.h │ │ │ │ ├── extfilt.cc │ │ │ │ ├── extfilt.h │ │ │ │ ├── filter.cc │ │ │ │ ├── filter.h │ │ │ │ ├── install-sh │ │ │ │ ├── libtool │ │ │ │ ├── ltconfig │ │ │ │ ├── ltmain.sh │ │ │ │ ├── missing │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── pot.cc │ │ │ │ ├── pot.h │ │ │ │ ├── resid.cc │ │ │ │ ├── resid.h │ │ │ │ ├── samp2src.pl │ │ │ │ ├── siddefs.h │ │ │ │ ├── siddefs.h.in │ │ │ │ ├── spline.h │ │ │ │ ├── version.cc │ │ │ │ ├── voice.cc │ │ │ │ ├── voice.h │ │ │ │ ├── wave.cc │ │ │ │ ├── wave.h │ │ │ │ ├── wave6581_PST.cc │ │ │ │ ├── wave6581_PST.dat │ │ │ │ ├── wave6581_PS_.cc │ │ │ │ ├── wave6581_PS_.dat │ │ │ │ ├── wave6581_P_T.cc │ │ │ │ ├── wave6581_P_T.dat │ │ │ │ ├── wave6581__ST.cc │ │ │ │ ├── wave6581__ST.dat │ │ │ │ ├── wave8580_PST.cc │ │ │ │ ├── wave8580_PST.dat │ │ │ │ ├── wave8580_PS_.cc │ │ │ │ ├── wave8580_PS_.dat │ │ │ │ ├── wave8580_P_T.cc │ │ │ │ ├── wave8580_P_T.dat │ │ │ │ ├── wave8580__ST.cc │ │ │ │ └── wave8580__ST.dat │ │ ├── mios32 │ │ │ ├── mios32_config.h │ │ │ └── tasks.c │ │ └── tools │ │ │ └── v2_to_c.pl │ ├── midibox_sj_v2 │ │ ├── Makefile │ │ ├── README.txt │ │ ├── schematics │ │ │ └── midibox_sj_v2_step1.ps │ │ └── src │ │ │ ├── ACFreqOfNote.h │ │ │ ├── ACHandTracker.c │ │ │ ├── ACHandTracker.h │ │ │ ├── ACHarmonizer.c │ │ │ ├── ACHarmonizer.h │ │ │ ├── ACMidi.c │ │ │ ├── ACMidi.h │ │ │ ├── ACMidiDefines.h │ │ │ ├── ACMidiProtocol.h │ │ │ ├── ACSyncronizer.c │ │ │ ├── ACSyncronizer.h │ │ │ ├── ACToolbox.c │ │ │ ├── ACToolbox.h │ │ │ ├── IIC_SpeakJet.c │ │ │ ├── IIC_SpeakJet.h │ │ │ ├── IIC_SpeakJetDefines.h │ │ │ ├── IIC_SpeakJetMidiDefines.h │ │ │ ├── IIC_SpeakJetPhonemeMaps.h │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ ├── mios32_config.h │ │ │ ├── terminal.c │ │ │ └── terminal.h │ ├── midibox_vgmplayer │ │ ├── Makefile │ │ ├── README.txt │ │ ├── project.hex │ │ └── src │ │ │ ├── app.c │ │ │ ├── app.h │ │ │ └── mios32_config.h │ └── nI2S_synth │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── controller │ │ ├── nI2S Control.exe │ │ ├── nI2S Controller - Modulation.exe │ │ ├── nI2S Controller - Routing Matrix.exe │ │ └── nI2S Controller.exe │ │ ├── defs.h │ │ ├── drum.c │ │ ├── drum.h │ │ ├── engine.c │ │ ├── engine.h │ │ ├── envelope.c │ │ ├── envelope.h │ │ ├── filter.c │ │ ├── filter.h │ │ ├── lfo.c │ │ ├── lfo.h │ │ ├── mios32_config.h │ │ ├── sysex.c │ │ ├── sysex.h │ │ ├── tables.h │ │ └── types.h ├── templates │ ├── app_skeleton │ │ ├── .cproject │ │ ├── .project │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ └── app_skeleton_cpp │ │ ├── .cproject │ │ ├── .project │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.cpp │ │ ├── app.h │ │ └── mios32_config.h ├── troubleshooting │ ├── ain_jitter_mon │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── mios32_config.h │ │ └── release.sh │ ├── ainser_jitter_mon │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── mios32_config.h │ │ └── release.sh │ ├── iic_midi │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── mios32_config.h │ │ └── release.sh │ ├── mbhp_core_stm32_module │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── check.c │ │ ├── check.h │ │ ├── mios32_config.h │ │ └── release.sh │ ├── mbhp_core_stm32_module_scan │ │ ├── Makefile │ │ ├── Makefile.DUT │ │ ├── Makefile.Tester │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ ├── check.c │ │ ├── check.h │ │ └── mios32_config.h │ ├── mbsid_testtone │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h │ └── sdcard_tools │ │ ├── Makefile │ │ ├── README.txt │ │ ├── app.c │ │ ├── app.h │ │ └── mios32_config.h └── tutorials │ ├── 001_forwarding_midi │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 002_parsing_midi │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 003_debug_messages │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 004_sending_midi │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 005_polling_j5_pins │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 006_rtos_tasks │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 007_mios32_timer │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 008_j5_outputs │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 009_dout │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 010_din │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 011_ain │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 012_ain_muxed │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 012b_ainser_muxed │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 013_mf │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 014_enc_relative │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 014b_enc_j5_relative │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 015_enc_absolute │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 015b_enc_j5_absolute │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 016_aout │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 017_sequencer │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ ├── mios32_config.h │ ├── seq.c │ └── seq.h │ ├── 018_arpeggiator │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ ├── mios32_config.h │ ├── seq.c │ └── seq.h │ ├── 019_midi_player │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ ├── mid_file.c │ ├── mid_file.h │ ├── mios32_config.h │ ├── seq.c │ ├── seq.h │ └── tasks.h │ ├── 020_lcd │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 021_glcd │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 022_glcd_touchpanel │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 023_mutex │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 024_i2s_synth │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ ├── frqtab.h │ ├── mios32_config.h │ ├── synth.c │ ├── synth.h │ └── utils │ │ └── frqtab.pl │ ├── 025_sysex_and_eeprom │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ ├── mios32_config.h │ ├── patch.c │ ├── patch.h │ ├── sysex.c │ └── sysex.h │ ├── 026_dpot │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ └── mios32_config.h │ ├── 027_scs │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ ├── cc_labels.c │ ├── cc_labels.h │ ├── ilmenator_variant │ │ ├── Makefile │ │ ├── app.c │ │ ├── app.h │ │ ├── cc_labels.c │ │ ├── cc_labels.h │ │ ├── mios32_config.h │ │ ├── scs_config.c │ │ └── scs_config.h │ ├── mios32_config.h │ ├── scs_config.c │ └── scs_config.h │ ├── 028_osc │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ ├── mios32_config.h │ ├── presets.c │ ├── presets.h │ ├── shell.c │ ├── terminal.c │ └── terminal.h │ └── 029_keyboard_velocity │ ├── .cproject │ ├── .project │ ├── .settings │ ├── org.eclipse.cdt.core.prefs │ └── org.eclipse.cdt.ui.prefs │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ ├── microKONTROL_mod.jpg │ └── mios32_config.h ├── bin └── avstack.pl ├── bootloader ├── src │ ├── LPC17xx_bsl.ld │ ├── Makefile │ ├── Makefile.bsl_LPCXPRESSO_1768 │ ├── Makefile.bsl_LPCXPRESSO_1769 │ ├── Makefile.bsl_MBHP_CORE_STM32 │ ├── Makefile.bsl_MBHP_CORE_STM32_CL │ ├── Makefile.bsl_STM32F4DISCOVERY │ ├── Makefile.bsl_STM32_PRIMER │ ├── Makefile.bsl_dummy │ ├── STM32F103_bsl.ld │ ├── STM32F407_bsl.ld │ ├── bsl_sysex.c │ ├── bsl_sysex.h │ ├── gen_inc_file.pl │ ├── main.c │ ├── main_dummy.c │ ├── mios32_config.h │ ├── startup_LPC17xx.c │ ├── startup_stm32f10x_hd.c │ ├── startup_stm32f4xx.c │ ├── stm32f10x_conf.h │ └── stm32f4xx_conf.h └── updater │ ├── Makefile │ ├── README.txt │ ├── app.c │ ├── app.h │ ├── bsl_image_LPCXPRESSO_1768.inc │ ├── bsl_image_LPCXPRESSO_1769.inc │ ├── bsl_image_MBHP_CORE_STM32.inc │ ├── bsl_image_MBHP_CORE_STM32_CL.inc │ ├── bsl_image_STM32F4DISCOVERY.inc │ ├── mios32_config.h │ └── release.sh ├── doc ├── MEMO └── mios32 │ └── MIOS32_CONFIG.txt ├── drivers ├── LPC17xx │ ├── CMSIS │ │ ├── Docs │ │ │ ├── CMSIS changes.htm │ │ │ ├── CMSIS debug support.htm │ │ │ ├── CMSIS_Core.htm │ │ │ └── License.doc │ │ ├── cmsis_readme.txt │ │ ├── history.txt │ │ ├── inc │ │ │ ├── LPC17xx.h │ │ │ ├── core_cm3.h │ │ │ └── system_LPC17xx.h │ │ └── src │ │ │ ├── core_cm3.c │ │ │ └── system_LPC17xx.c │ ├── iap │ │ └── inc │ │ │ ├── sbl_config.h │ │ │ └── sbl_iap.h │ └── usbstack │ │ ├── inc │ │ ├── lpcusb_type.h │ │ ├── usbapi.h │ │ ├── usbdebug.h │ │ ├── usbhw_lpc.h │ │ └── usbstruct.h │ │ ├── readme.txt │ │ └── src │ │ ├── usbcontrol.c │ │ ├── usbhw_lpc.c │ │ ├── usbinit.c │ │ └── usbstdreq.c ├── MIOSJUCE │ └── modules │ │ └── app_lcd │ │ └── MIOSJUCE │ │ ├── app_lcd.c │ │ ├── app_lcd.h │ │ └── app_lcd.mk ├── MacOS │ └── PYMIDI │ │ ├── PYMIDI.h │ │ ├── PYMIDIEndpoint.h │ │ ├── PYMIDIEndpoint.m │ │ ├── PYMIDIEndpointDescriptor.h │ │ ├── PYMIDIEndpointDescriptor.m │ │ ├── PYMIDIEndpointSet.h │ │ ├── PYMIDIEndpointSet.m │ │ ├── PYMIDIManager.h │ │ ├── PYMIDIManager.m │ │ ├── PYMIDIRealDestination.h │ │ ├── PYMIDIRealDestination.m │ │ ├── PYMIDIRealEndpoint.h │ │ ├── PYMIDIRealEndpoint.m │ │ ├── PYMIDIRealSource.h │ │ ├── PYMIDIRealSource.m │ │ ├── PYMIDIUtils.h │ │ ├── PYMIDIUtils.m │ │ ├── PYMIDIVirtualDestination.h │ │ ├── PYMIDIVirtualDestination.m │ │ ├── PYMIDIVirtualEndpoint.h │ │ ├── PYMIDIVirtualEndpoint.m │ │ ├── PYMIDIVirtualSource.h │ │ ├── PYMIDIVirtualSource.m │ │ └── misc │ │ ├── Bugs.html │ │ ├── Documentation │ │ ├── Classes │ │ │ ├── PYMIDIEndpoint.html │ │ │ ├── PYMIDIEndpointDescriptor.html │ │ │ ├── PYMIDIEndpointSet.html │ │ │ ├── PYMIDIManager.html │ │ │ ├── PYMIDIRealDestination.html │ │ │ ├── PYMIDIRealEndpoint.html │ │ │ ├── PYMIDIRealSource.html │ │ │ ├── PYMIDIVirtualDestination.html │ │ │ ├── PYMIDIVirtualEndpoint.html │ │ │ └── PYMIDIVirtualSource.html │ │ ├── archiving.html │ │ ├── descriptors.html │ │ ├── endpoints.html │ │ ├── index.html │ │ ├── manager.html │ │ ├── notification.html │ │ ├── overview.html │ │ ├── receiving.html │ │ ├── selection.html │ │ ├── sending.html │ │ └── toc.html │ │ ├── MIT-LICENSE │ │ ├── Read Me.html │ │ ├── Release Notes.html │ │ └── To Do.html ├── STM32F10x │ └── v3.3.0 │ │ ├── CMSIS │ │ ├── CM3 │ │ │ ├── CoreSupport │ │ │ │ ├── core_cm3.c │ │ │ │ └── core_cm3.h │ │ │ └── DeviceSupport │ │ │ │ └── ST │ │ │ │ ├── Release_Notes_for_STM32F10x_CMSIS.html │ │ │ │ └── STM32F10x │ │ │ │ ├── stm32f10x.h │ │ │ │ ├── system_stm32f10x.c │ │ │ │ └── system_stm32f10x.h │ │ ├── CMSIS debug support.htm │ │ ├── CMSIS_changes.htm │ │ ├── Documentation │ │ │ └── CMSIS_Core.htm │ │ └── License.doc │ │ ├── README_1st.txt │ │ ├── STM32F10x_StdPeriph_Driver │ │ ├── inc │ │ │ ├── misc.h │ │ │ ├── stm32f10x_adc.h │ │ │ ├── stm32f10x_bkp.h │ │ │ ├── stm32f10x_can.h │ │ │ ├── stm32f10x_cec.h │ │ │ ├── stm32f10x_crc.h │ │ │ ├── stm32f10x_dac.h │ │ │ ├── stm32f10x_dbgmcu.h │ │ │ ├── stm32f10x_dma.h │ │ │ ├── stm32f10x_exti.h │ │ │ ├── stm32f10x_flash.h │ │ │ ├── stm32f10x_fsmc.h │ │ │ ├── stm32f10x_gpio.h │ │ │ ├── stm32f10x_i2c.h │ │ │ ├── stm32f10x_iwdg.h │ │ │ ├── stm32f10x_pwr.h │ │ │ ├── stm32f10x_rcc.h │ │ │ ├── stm32f10x_rtc.h │ │ │ ├── stm32f10x_sdio.h │ │ │ ├── stm32f10x_spi.h │ │ │ ├── stm32f10x_tim.h │ │ │ ├── stm32f10x_usart.h │ │ │ └── stm32f10x_wwdg.h │ │ └── src │ │ │ ├── misc.c │ │ │ ├── stm32f10x_adc.c │ │ │ ├── stm32f10x_bkp.c │ │ │ ├── stm32f10x_can.c │ │ │ ├── stm32f10x_cec.c │ │ │ ├── stm32f10x_crc.c │ │ │ ├── stm32f10x_dac.c │ │ │ ├── stm32f10x_dbgmcu.c │ │ │ ├── stm32f10x_dma.c │ │ │ ├── stm32f10x_exti.c │ │ │ ├── stm32f10x_flash.c │ │ │ ├── stm32f10x_fsmc.c │ │ │ ├── stm32f10x_gpio.c │ │ │ ├── stm32f10x_i2c.c │ │ │ ├── stm32f10x_iwdg.c │ │ │ ├── stm32f10x_pwr.c │ │ │ ├── stm32f10x_rcc.c │ │ │ ├── stm32f10x_rtc.c │ │ │ ├── stm32f10x_sdio.c │ │ │ ├── stm32f10x_spi.c │ │ │ ├── stm32f10x_tim.c │ │ │ ├── stm32f10x_usart.c │ │ │ └── stm32f10x_wwdg.c │ │ └── STM32_USB-FS-Device_Driver │ │ ├── inc │ │ ├── otgd_fs_cal.h │ │ ├── otgd_fs_dev.h │ │ ├── otgd_fs_int.h │ │ ├── otgd_fs_pcd.h │ │ ├── otgd_fs_regs.h │ │ ├── usb_core.h │ │ ├── usb_def.h │ │ ├── usb_init.h │ │ ├── usb_int.h │ │ ├── usb_lib.h │ │ ├── usb_mem.h │ │ ├── usb_regs.h │ │ ├── usb_sil.h │ │ └── usb_type.h │ │ └── src │ │ ├── otgd_fs_cal.c │ │ ├── otgd_fs_dev.c │ │ ├── otgd_fs_int.c │ │ ├── otgd_fs_pcd.c │ │ ├── usb_core.c │ │ ├── usb_init.c │ │ ├── usb_int.c │ │ ├── usb_mem.c │ │ ├── usb_regs.c │ │ └── usb_sil.c ├── STM32F4xx │ └── v1.1.0 │ │ ├── CMSIS │ │ ├── CMSIS END USER LICENCE AGREEMENT.pdf │ │ ├── DSP_Lib │ │ │ ├── Examples │ │ │ │ ├── Common │ │ │ │ │ ├── Include │ │ │ │ │ │ └── math_helper.h │ │ │ │ │ └── Source │ │ │ │ │ │ └── math_helper.c │ │ │ │ ├── arm_class_marks_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── arm_class_marks_example.ini │ │ │ │ │ │ ├── arm_cortexM0l_class_marks_example.uvopt │ │ │ │ │ │ ├── arm_cortexM0l_class_marks_example.uvproj │ │ │ │ │ │ ├── arm_cortexM3l_class_marks_example.uvopt │ │ │ │ │ │ ├── arm_cortexM3l_class_marks_example.uvproj │ │ │ │ │ │ ├── arm_cortexM4lf_class_marks_example.uvopt │ │ │ │ │ │ ├── arm_cortexM4lf_class_marks_example.uvproj │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── GCC │ │ │ │ │ │ ├── ARMCMx.ld │ │ │ │ │ │ ├── arm_class_marks_example.ini │ │ │ │ │ │ ├── arm_cortexM0l_class_marks_example.uvopt │ │ │ │ │ │ ├── arm_cortexM0l_class_marks_example.uvproj │ │ │ │ │ │ ├── arm_cortexM3l_class_marks_example.uvopt │ │ │ │ │ │ ├── arm_cortexM3l_class_marks_example.uvproj │ │ │ │ │ │ ├── arm_cortexM4lf_class_marks_example.uvopt │ │ │ │ │ │ ├── arm_cortexM4lf_class_marks_example.uvproj │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── arm_class_marks_example_f32.c │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ ├── arm_convolution_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── arm_convolution_example.ini │ │ │ │ │ │ ├── arm_cortexM0l_convolution_example.uvopt │ │ │ │ │ │ ├── arm_cortexM0l_convolution_example.uvproj │ │ │ │ │ │ ├── arm_cortexM3l_convolution_example.uvopt │ │ │ │ │ │ ├── arm_cortexM3l_convolution_example.uvproj │ │ │ │ │ │ ├── arm_cortexM4lf_convolution_example.uvopt │ │ │ │ │ │ ├── arm_cortexM4lf_convolution_example.uvproj │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── GCC │ │ │ │ │ │ ├── ARMCMx.ld │ │ │ │ │ │ ├── arm_convolution_example.ini │ │ │ │ │ │ ├── arm_cortexM0l_convolution_example.uvopt │ │ │ │ │ │ ├── arm_cortexM0l_convolution_example.uvproj │ │ │ │ │ │ ├── arm_cortexM3l_convolution_example.uvopt │ │ │ │ │ │ ├── arm_cortexM3l_convolution_example.uvproj │ │ │ │ │ │ ├── arm_cortexM4lf_convolution_example.uvopt │ │ │ │ │ │ ├── arm_cortexM4lf_convolution_example.uvproj │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── arm_convolution_example_f32.c │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ ├── arm_dotproduct_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── arm_cortexM0l_dotproduct_example.uvopt │ │ │ │ │ │ ├── arm_cortexM0l_dotproduct_example.uvproj │ │ │ │ │ │ ├── arm_cortexM3l_dotproduct_example.uvopt │ │ │ │ │ │ ├── arm_cortexM3l_dotproduct_example.uvproj │ │ │ │ │ │ ├── arm_cortexM4lf_dotproduct_example.uvopt │ │ │ │ │ │ ├── arm_cortexM4lf_dotproduct_example.uvproj │ │ │ │ │ │ ├── arm_dotproduct_example.ini │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── arm_dotproduct_example_f32.c │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ ├── arm_fft_bin_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── arm_cortexM0l_fft_bin_example.uvopt │ │ │ │ │ │ ├── arm_cortexM0l_fft_bin_example.uvproj │ │ │ │ │ │ ├── arm_cortexM3l_fft_bin_example.uvopt │ │ │ │ │ │ ├── arm_cortexM3l_fft_bin_example.uvproj │ │ │ │ │ │ ├── arm_cortexM4lf_fft_bin_example.uvopt │ │ │ │ │ │ ├── arm_cortexM4lf_fft_bin_example.uvproj │ │ │ │ │ │ ├── arm_fft_bin_example.ini │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── arm_fft_bin_data.c │ │ │ │ │ ├── arm_fft_bin_example_f32.c │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ ├── arm_fir_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── arm_cortexM0l_fir_example.uvopt │ │ │ │ │ │ ├── arm_cortexM0l_fir_example.uvproj │ │ │ │ │ │ ├── arm_cortexM3l_fir_example.uvopt │ │ │ │ │ │ ├── arm_cortexM3l_fir_example.uvproj │ │ │ │ │ │ ├── arm_cortexM4lf_fir_example.uvopt │ │ │ │ │ │ ├── arm_cortexM4lf_fir_example.uvproj │ │ │ │ │ │ ├── arm_fir_example.ini │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── arm_fir_data.c │ │ │ │ │ ├── arm_fir_example_f32.c │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ ├── arm_graphic_equalizer_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── arm_cortexM0l_graphic_equalizer_example.uvopt │ │ │ │ │ │ ├── arm_cortexM0l_graphic_equalizer_example.uvproj │ │ │ │ │ │ ├── arm_cortexM3l_graphic_equalizer_example.uvopt │ │ │ │ │ │ ├── arm_cortexM3l_graphic_equalizer_example.uvproj │ │ │ │ │ │ ├── arm_cortexM4lf_graphic_equalizer_example.uvopt │ │ │ │ │ │ ├── arm_cortexM4lf_graphic_equalizer_example.uvproj │ │ │ │ │ │ ├── arm_graphic_equalizer_example.ini │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── arm_graphic_equalizer_data.c │ │ │ │ │ ├── arm_graphic_equalizer_example_q31.c │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ ├── arm_linear_interp_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── arm_cortexM0l_linear_interp_example.uvopt │ │ │ │ │ │ ├── arm_cortexM0l_linear_interp_example.uvproj │ │ │ │ │ │ ├── arm_cortexM3l_linear_interp_example.uvopt │ │ │ │ │ │ ├── arm_cortexM3l_linear_interp_example.uvproj │ │ │ │ │ │ ├── arm_cortexM4lf_linear_interp_example.uvopt │ │ │ │ │ │ ├── arm_cortexM4lf_linear_interp_example.uvproj │ │ │ │ │ │ ├── arm_linear_interp_example.ini │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── arm_linear_interp_data.c │ │ │ │ │ ├── arm_linear_interp_example_f32.c │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ ├── arm_matrix_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── arm_cortexM0l_matrix_example.uvopt │ │ │ │ │ │ ├── arm_cortexM0l_matrix_example.uvproj │ │ │ │ │ │ ├── arm_cortexM3l_matrix_example.uvopt │ │ │ │ │ │ ├── arm_cortexM3l_matrix_example.uvproj │ │ │ │ │ │ ├── arm_cortexM4lf_matrix_example.uvopt │ │ │ │ │ │ ├── arm_cortexM4lf_matrix_example.uvproj │ │ │ │ │ │ ├── arm_matrix_example.ini │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── arm_matrix_example_f32.c │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ ├── arm_signal_converge_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── arm_cortexM0l_signal_converge_example.uvopt │ │ │ │ │ │ ├── arm_cortexM0l_signal_converge_example.uvproj │ │ │ │ │ │ ├── arm_cortexM3l_signal_converge_example.uvopt │ │ │ │ │ │ ├── arm_cortexM3l_signal_converge_example.uvproj │ │ │ │ │ │ ├── arm_cortexM4lf_signal_converge_example.uvopt │ │ │ │ │ │ ├── arm_cortexM4lf_signal_converge_example.uvproj │ │ │ │ │ │ ├── arm_signal_converge_example.ini │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── arm_signal_converge_data.c │ │ │ │ │ ├── arm_signal_converge_example_f32.c │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ ├── arm_sin_cos_example │ │ │ │ │ ├── ARM │ │ │ │ │ │ ├── arm_cortexM0l_sin_cos_example.uvopt │ │ │ │ │ │ ├── arm_cortexM0l_sin_cos_example.uvproj │ │ │ │ │ │ ├── arm_cortexM3l_sin_cos_example.uvopt │ │ │ │ │ │ ├── arm_cortexM3l_sin_cos_example.uvproj │ │ │ │ │ │ ├── arm_cortexM4lf_sin_cos_example.uvopt │ │ │ │ │ │ ├── arm_cortexM4lf_sin_cos_example.uvproj │ │ │ │ │ │ ├── arm_sin_cos_example.ini │ │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── arm_sin_cos_example_f32.c │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ └── system_ARMCM4.c │ │ │ │ └── arm_variance_example │ │ │ │ │ ├── ARM │ │ │ │ │ ├── arm_cortexM0l_variance_example.uvopt │ │ │ │ │ ├── arm_cortexM0l_variance_example.uvproj │ │ │ │ │ ├── arm_cortexM3l_variance_example.uvopt │ │ │ │ │ ├── arm_cortexM3l_variance_example.uvproj │ │ │ │ │ ├── arm_cortexM4lf_variance_example.uvopt │ │ │ │ │ ├── arm_cortexM4lf_variance_example.uvproj │ │ │ │ │ ├── arm_variance_example.ini │ │ │ │ │ ├── startup_ARMCM0.s │ │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ │ └── startup_ARMCM4.s │ │ │ │ │ ├── arm_variance_example_f32.c │ │ │ │ │ ├── system_ARMCM0.c │ │ │ │ │ ├── system_ARMCM3.c │ │ │ │ │ └── system_ARMCM4.c │ │ │ └── Source │ │ │ │ ├── ARM │ │ │ │ ├── arm_cortexM0x_math.uvopt │ │ │ │ ├── arm_cortexM0x_math.uvproj │ │ │ │ ├── arm_cortexM3x_math.uvopt │ │ │ │ ├── arm_cortexM3x_math.uvproj │ │ │ │ ├── arm_cortexM4x_math.uvopt │ │ │ │ ├── arm_cortexM4x_math.uvproj │ │ │ │ └── arm_cortexMx_math_Build.bat │ │ │ │ ├── BasicMathFunctions │ │ │ │ ├── arm_abs_f32.c │ │ │ │ ├── arm_abs_q15.c │ │ │ │ ├── arm_abs_q31.c │ │ │ │ ├── arm_abs_q7.c │ │ │ │ ├── arm_add_f32.c │ │ │ │ ├── arm_add_q15.c │ │ │ │ ├── arm_add_q31.c │ │ │ │ ├── arm_add_q7.c │ │ │ │ ├── arm_dot_prod_f32.c │ │ │ │ ├── arm_dot_prod_q15.c │ │ │ │ ├── arm_dot_prod_q31.c │ │ │ │ ├── arm_dot_prod_q7.c │ │ │ │ ├── arm_mult_f32.c │ │ │ │ ├── arm_mult_q15.c │ │ │ │ ├── arm_mult_q31.c │ │ │ │ ├── arm_mult_q7.c │ │ │ │ ├── arm_negate_f32.c │ │ │ │ ├── arm_negate_q15.c │ │ │ │ ├── arm_negate_q31.c │ │ │ │ ├── arm_negate_q7.c │ │ │ │ ├── arm_offset_f32.c │ │ │ │ ├── arm_offset_q15.c │ │ │ │ ├── arm_offset_q31.c │ │ │ │ ├── arm_offset_q7.c │ │ │ │ ├── arm_scale_f32.c │ │ │ │ ├── arm_scale_q15.c │ │ │ │ ├── arm_scale_q31.c │ │ │ │ ├── arm_scale_q7.c │ │ │ │ ├── arm_shift_q15.c │ │ │ │ ├── arm_shift_q31.c │ │ │ │ ├── arm_shift_q7.c │ │ │ │ ├── arm_sub_f32.c │ │ │ │ ├── arm_sub_q15.c │ │ │ │ ├── arm_sub_q31.c │ │ │ │ └── arm_sub_q7.c │ │ │ │ ├── CommonTables │ │ │ │ └── arm_common_tables.c │ │ │ │ ├── ComplexMathFunctions │ │ │ │ ├── arm_cmplx_conj_f32.c │ │ │ │ ├── arm_cmplx_conj_q15.c │ │ │ │ ├── arm_cmplx_conj_q31.c │ │ │ │ ├── arm_cmplx_dot_prod_f32.c │ │ │ │ ├── arm_cmplx_dot_prod_q15.c │ │ │ │ ├── arm_cmplx_dot_prod_q31.c │ │ │ │ ├── arm_cmplx_mag_f32.c │ │ │ │ ├── arm_cmplx_mag_q15.c │ │ │ │ ├── arm_cmplx_mag_q31.c │ │ │ │ ├── arm_cmplx_mag_squared_f32.c │ │ │ │ ├── arm_cmplx_mag_squared_q15.c │ │ │ │ ├── arm_cmplx_mag_squared_q31.c │ │ │ │ ├── arm_cmplx_mult_cmplx_f32.c │ │ │ │ ├── arm_cmplx_mult_cmplx_q15.c │ │ │ │ ├── arm_cmplx_mult_cmplx_q31.c │ │ │ │ ├── arm_cmplx_mult_real_f32.c │ │ │ │ ├── arm_cmplx_mult_real_q15.c │ │ │ │ └── arm_cmplx_mult_real_q31.c │ │ │ │ ├── ControllerFunctions │ │ │ │ ├── arm_pid_init_f32.c │ │ │ │ ├── arm_pid_init_q15.c │ │ │ │ ├── arm_pid_init_q31.c │ │ │ │ ├── arm_pid_reset_f32.c │ │ │ │ ├── arm_pid_reset_q15.c │ │ │ │ ├── arm_pid_reset_q31.c │ │ │ │ ├── arm_sin_cos_f32.c │ │ │ │ └── arm_sin_cos_q31.c │ │ │ │ ├── FastMathFunctions │ │ │ │ ├── arm_cos_f32.c │ │ │ │ ├── arm_cos_q15.c │ │ │ │ ├── arm_cos_q31.c │ │ │ │ ├── arm_sin_f32.c │ │ │ │ ├── arm_sin_q15.c │ │ │ │ ├── arm_sin_q31.c │ │ │ │ ├── arm_sqrt_q15.c │ │ │ │ └── arm_sqrt_q31.c │ │ │ │ ├── FilteringFunctions │ │ │ │ ├── arm_biquad_cascade_df1_32x64_init_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_32x64_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_f32.c │ │ │ │ ├── arm_biquad_cascade_df1_fast_q15.c │ │ │ │ ├── arm_biquad_cascade_df1_fast_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_init_f32.c │ │ │ │ ├── arm_biquad_cascade_df1_init_q15.c │ │ │ │ ├── arm_biquad_cascade_df1_init_q31.c │ │ │ │ ├── arm_biquad_cascade_df1_q15.c │ │ │ │ ├── arm_biquad_cascade_df1_q31.c │ │ │ │ ├── arm_biquad_cascade_df2T_f32.c │ │ │ │ ├── arm_biquad_cascade_df2T_init_f32.c │ │ │ │ ├── arm_conv_f32.c │ │ │ │ ├── arm_conv_fast_q15.c │ │ │ │ ├── arm_conv_fast_q31.c │ │ │ │ ├── arm_conv_partial_f32.c │ │ │ │ ├── arm_conv_partial_fast_q15.c │ │ │ │ ├── arm_conv_partial_fast_q31.c │ │ │ │ ├── arm_conv_partial_q15.c │ │ │ │ ├── arm_conv_partial_q31.c │ │ │ │ ├── arm_conv_partial_q7.c │ │ │ │ ├── arm_conv_q15.c │ │ │ │ ├── arm_conv_q31.c │ │ │ │ ├── arm_conv_q7.c │ │ │ │ ├── arm_correlate_f32.c │ │ │ │ ├── arm_correlate_fast_q15.c │ │ │ │ ├── arm_correlate_fast_q31.c │ │ │ │ ├── arm_correlate_q15.c │ │ │ │ ├── arm_correlate_q31.c │ │ │ │ ├── arm_correlate_q7.c │ │ │ │ ├── arm_fir_decimate_f32.c │ │ │ │ ├── arm_fir_decimate_fast_q15.c │ │ │ │ ├── arm_fir_decimate_fast_q31.c │ │ │ │ ├── arm_fir_decimate_init_f32.c │ │ │ │ ├── arm_fir_decimate_init_q15.c │ │ │ │ ├── arm_fir_decimate_init_q31.c │ │ │ │ ├── arm_fir_decimate_q15.c │ │ │ │ ├── arm_fir_decimate_q31.c │ │ │ │ ├── arm_fir_f32.c │ │ │ │ ├── arm_fir_fast_q15.c │ │ │ │ ├── arm_fir_fast_q31.c │ │ │ │ ├── arm_fir_init_f32.c │ │ │ │ ├── arm_fir_init_q15.c │ │ │ │ ├── arm_fir_init_q31.c │ │ │ │ ├── arm_fir_init_q7.c │ │ │ │ ├── arm_fir_interpolate_f32.c │ │ │ │ ├── arm_fir_interpolate_init_f32.c │ │ │ │ ├── arm_fir_interpolate_init_q15.c │ │ │ │ ├── arm_fir_interpolate_init_q31.c │ │ │ │ ├── arm_fir_interpolate_q15.c │ │ │ │ ├── arm_fir_interpolate_q31.c │ │ │ │ ├── arm_fir_lattice_f32.c │ │ │ │ ├── arm_fir_lattice_init_f32.c │ │ │ │ ├── arm_fir_lattice_init_q15.c │ │ │ │ ├── arm_fir_lattice_init_q31.c │ │ │ │ ├── arm_fir_lattice_q15.c │ │ │ │ ├── arm_fir_lattice_q31.c │ │ │ │ ├── arm_fir_q15.c │ │ │ │ ├── arm_fir_q31.c │ │ │ │ ├── arm_fir_q7.c │ │ │ │ ├── arm_fir_sparse_f32.c │ │ │ │ ├── arm_fir_sparse_init_f32.c │ │ │ │ ├── arm_fir_sparse_init_q15.c │ │ │ │ ├── arm_fir_sparse_init_q31.c │ │ │ │ ├── arm_fir_sparse_init_q7.c │ │ │ │ ├── arm_fir_sparse_q15.c │ │ │ │ ├── arm_fir_sparse_q31.c │ │ │ │ ├── arm_fir_sparse_q7.c │ │ │ │ ├── arm_iir_lattice_f32.c │ │ │ │ ├── arm_iir_lattice_init_f32.c │ │ │ │ ├── arm_iir_lattice_init_q15.c │ │ │ │ ├── arm_iir_lattice_init_q31.c │ │ │ │ ├── arm_iir_lattice_q15.c │ │ │ │ ├── arm_iir_lattice_q31.c │ │ │ │ ├── arm_lms_f32.c │ │ │ │ ├── arm_lms_init_f32.c │ │ │ │ ├── arm_lms_init_q15.c │ │ │ │ ├── arm_lms_init_q31.c │ │ │ │ ├── arm_lms_norm_f32.c │ │ │ │ ├── arm_lms_norm_init_f32.c │ │ │ │ ├── arm_lms_norm_init_q15.c │ │ │ │ ├── arm_lms_norm_init_q31.c │ │ │ │ ├── arm_lms_norm_q15.c │ │ │ │ ├── arm_lms_norm_q31.c │ │ │ │ ├── arm_lms_q15.c │ │ │ │ └── arm_lms_q31.c │ │ │ │ ├── GCC │ │ │ │ ├── arm_cortexM0x_math.uvopt │ │ │ │ ├── arm_cortexM0x_math.uvproj │ │ │ │ ├── arm_cortexM3x_math.uvopt │ │ │ │ ├── arm_cortexM3x_math.uvproj │ │ │ │ ├── arm_cortexM4x_math.uvopt │ │ │ │ ├── arm_cortexM4x_math.uvproj │ │ │ │ └── arm_cortexMx_math_Build.bat │ │ │ │ ├── MatrixFunctions │ │ │ │ ├── arm_mat_add_f32.c │ │ │ │ ├── arm_mat_add_q15.c │ │ │ │ ├── arm_mat_add_q31.c │ │ │ │ ├── arm_mat_init_f32.c │ │ │ │ ├── arm_mat_init_q15.c │ │ │ │ ├── arm_mat_init_q31.c │ │ │ │ ├── arm_mat_inverse_f32.c │ │ │ │ ├── arm_mat_mult_f32.c │ │ │ │ ├── arm_mat_mult_fast_q15.c │ │ │ │ ├── arm_mat_mult_fast_q31.c │ │ │ │ ├── arm_mat_mult_q15.c │ │ │ │ ├── arm_mat_mult_q31.c │ │ │ │ ├── arm_mat_scale_f32.c │ │ │ │ ├── arm_mat_scale_q15.c │ │ │ │ ├── arm_mat_scale_q31.c │ │ │ │ ├── arm_mat_sub_f32.c │ │ │ │ ├── arm_mat_sub_q15.c │ │ │ │ ├── arm_mat_sub_q31.c │ │ │ │ ├── arm_mat_trans_f32.c │ │ │ │ ├── arm_mat_trans_q15.c │ │ │ │ └── arm_mat_trans_q31.c │ │ │ │ ├── StatisticsFunctions │ │ │ │ ├── arm_max_f32.c │ │ │ │ ├── arm_max_q15.c │ │ │ │ ├── arm_max_q31.c │ │ │ │ ├── arm_max_q7.c │ │ │ │ ├── arm_mean_f32.c │ │ │ │ ├── arm_mean_q15.c │ │ │ │ ├── arm_mean_q31.c │ │ │ │ ├── arm_mean_q7.c │ │ │ │ ├── arm_min_f32.c │ │ │ │ ├── arm_min_q15.c │ │ │ │ ├── arm_min_q31.c │ │ │ │ ├── arm_min_q7.c │ │ │ │ ├── arm_power_f32.c │ │ │ │ ├── arm_power_q15.c │ │ │ │ ├── arm_power_q31.c │ │ │ │ ├── arm_power_q7.c │ │ │ │ ├── arm_rms_f32.c │ │ │ │ ├── arm_rms_q15.c │ │ │ │ ├── arm_rms_q31.c │ │ │ │ ├── arm_std_f32.c │ │ │ │ ├── arm_std_q15.c │ │ │ │ ├── arm_std_q31.c │ │ │ │ ├── arm_var_f32.c │ │ │ │ ├── arm_var_q15.c │ │ │ │ └── arm_var_q31.c │ │ │ │ ├── SupportFunctions │ │ │ │ ├── arm_copy_f32.c │ │ │ │ ├── arm_copy_q15.c │ │ │ │ ├── arm_copy_q31.c │ │ │ │ ├── arm_copy_q7.c │ │ │ │ ├── arm_fill_f32.c │ │ │ │ ├── arm_fill_q15.c │ │ │ │ ├── arm_fill_q31.c │ │ │ │ ├── arm_fill_q7.c │ │ │ │ ├── arm_float_to_q15.c │ │ │ │ ├── arm_float_to_q31.c │ │ │ │ ├── arm_float_to_q7.c │ │ │ │ ├── arm_q15_to_float.c │ │ │ │ ├── arm_q15_to_q31.c │ │ │ │ ├── arm_q15_to_q7.c │ │ │ │ ├── arm_q31_to_float.c │ │ │ │ ├── arm_q31_to_q15.c │ │ │ │ ├── arm_q31_to_q7.c │ │ │ │ ├── arm_q7_to_float.c │ │ │ │ ├── arm_q7_to_q15.c │ │ │ │ └── arm_q7_to_q31.c │ │ │ │ └── TransformFunctions │ │ │ │ ├── arm_cfft_radix4_f32.c │ │ │ │ ├── arm_cfft_radix4_init_f32.c │ │ │ │ ├── arm_cfft_radix4_init_q15.c │ │ │ │ ├── arm_cfft_radix4_init_q31.c │ │ │ │ ├── arm_cfft_radix4_q15.c │ │ │ │ ├── arm_cfft_radix4_q31.c │ │ │ │ ├── arm_dct4_f32.c │ │ │ │ ├── arm_dct4_init_f32.c │ │ │ │ ├── arm_dct4_init_q15.c │ │ │ │ ├── arm_dct4_init_q31.c │ │ │ │ ├── arm_dct4_q15.c │ │ │ │ ├── arm_dct4_q31.c │ │ │ │ ├── arm_rfft_f32.c │ │ │ │ ├── arm_rfft_init_f32.c │ │ │ │ ├── arm_rfft_init_q15.c │ │ │ │ ├── arm_rfft_init_q31.c │ │ │ │ ├── arm_rfft_q15.c │ │ │ │ └── arm_rfft_q31.c │ │ ├── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_math.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm4_simd.h │ │ │ ├── core_cmFunc.h │ │ │ └── core_cmInstr.h │ │ ├── README.txt │ │ └── ST │ │ │ └── STM32F4xx │ │ │ ├── Include │ │ │ ├── stm32f4xx.h │ │ │ └── system_stm32f4xx.h │ │ │ ├── Release_Notes.html │ │ │ └── Source │ │ │ └── Templates │ │ │ ├── TASKING │ │ │ └── cstart_thumb2.asm │ │ │ ├── TrueSTUDIO │ │ │ └── startup_stm32f4xx.s │ │ │ ├── arm │ │ │ └── startup_stm32f4xx.s │ │ │ ├── gcc_ride7 │ │ │ └── startup_stm32f4xx.s │ │ │ ├── iar │ │ │ └── startup_stm32f4xx.s │ │ │ └── system_stm32f4xx.c │ │ ├── STM32F4xx_StdPeriph_Driver │ │ ├── Release_Notes.html │ │ ├── inc │ │ │ ├── misc.h │ │ │ ├── stm32f4xx_adc.h │ │ │ ├── stm32f4xx_can.h │ │ │ ├── stm32f4xx_crc.h │ │ │ ├── stm32f4xx_cryp.h │ │ │ ├── stm32f4xx_dac.h │ │ │ ├── stm32f4xx_dbgmcu.h │ │ │ ├── stm32f4xx_dcmi.h │ │ │ ├── stm32f4xx_dma.h │ │ │ ├── stm32f4xx_exti.h │ │ │ ├── stm32f4xx_flash.h │ │ │ ├── stm32f4xx_fsmc.h │ │ │ ├── stm32f4xx_gpio.h │ │ │ ├── stm32f4xx_hash.h │ │ │ ├── stm32f4xx_i2c.h │ │ │ ├── stm32f4xx_iwdg.h │ │ │ ├── stm32f4xx_pwr.h │ │ │ ├── stm32f4xx_rcc.h │ │ │ ├── stm32f4xx_rng.h │ │ │ ├── stm32f4xx_rtc.h │ │ │ ├── stm32f4xx_sdio.h │ │ │ ├── stm32f4xx_spi.h │ │ │ ├── stm32f4xx_syscfg.h │ │ │ ├── stm32f4xx_tim.h │ │ │ ├── stm32f4xx_usart.h │ │ │ └── stm32f4xx_wwdg.h │ │ └── src │ │ │ ├── misc.c │ │ │ ├── stm32f4xx_adc.c │ │ │ ├── stm32f4xx_can.c │ │ │ ├── stm32f4xx_crc.c │ │ │ ├── stm32f4xx_cryp.c │ │ │ ├── stm32f4xx_cryp_aes.c │ │ │ ├── stm32f4xx_cryp_des.c │ │ │ ├── stm32f4xx_cryp_tdes.c │ │ │ ├── stm32f4xx_dac.c │ │ │ ├── stm32f4xx_dbgmcu.c │ │ │ ├── stm32f4xx_dcmi.c │ │ │ ├── stm32f4xx_dma.c │ │ │ ├── stm32f4xx_exti.c │ │ │ ├── stm32f4xx_flash.c │ │ │ ├── stm32f4xx_fsmc.c │ │ │ ├── stm32f4xx_gpio.c │ │ │ ├── stm32f4xx_hash.c │ │ │ ├── stm32f4xx_hash_md5.c │ │ │ ├── stm32f4xx_hash_sha1.c │ │ │ ├── stm32f4xx_i2c.c │ │ │ ├── stm32f4xx_iwdg.c │ │ │ ├── stm32f4xx_pwr.c │ │ │ ├── stm32f4xx_rcc.c │ │ │ ├── stm32f4xx_rng.c │ │ │ ├── stm32f4xx_rtc.c │ │ │ ├── stm32f4xx_sdio.c │ │ │ ├── stm32f4xx_spi.c │ │ │ ├── stm32f4xx_syscfg.c │ │ │ ├── stm32f4xx_tim.c │ │ │ ├── stm32f4xx_usart.c │ │ │ └── stm32f4xx_wwdg.c │ │ ├── STM32_USB_Device_Library │ │ ├── Class │ │ │ ├── audio │ │ │ │ ├── inc │ │ │ │ │ ├── usbd_audio_core.h │ │ │ │ │ └── usbd_audio_out_if.h │ │ │ │ └── src │ │ │ │ │ ├── usbd_audio_core.c │ │ │ │ │ └── usbd_audio_out_if.c │ │ │ ├── cdc │ │ │ │ ├── inc │ │ │ │ │ ├── usbd_cdc_core.h │ │ │ │ │ └── usbd_cdc_if_template.h │ │ │ │ └── src │ │ │ │ │ ├── usbd_cdc_core.c │ │ │ │ │ └── usbd_cdc_if_template.c │ │ │ ├── dfu │ │ │ │ ├── inc │ │ │ │ │ ├── usbd_dfu_core.h │ │ │ │ │ ├── usbd_dfu_mal.h │ │ │ │ │ ├── usbd_flash_if.h │ │ │ │ │ ├── usbd_mem_if_template.h │ │ │ │ │ └── usbd_otp_if.h │ │ │ │ └── src │ │ │ │ │ ├── usbd_dfu_core.c │ │ │ │ │ ├── usbd_dfu_mal.c │ │ │ │ │ ├── usbd_flash_if.c │ │ │ │ │ ├── usbd_mem_if_template.c │ │ │ │ │ └── usbd_otp_if.c │ │ │ ├── hid │ │ │ │ ├── inc │ │ │ │ │ └── usbd_hid_core.h │ │ │ │ └── src │ │ │ │ │ └── usbd_hid_core.c │ │ │ └── msc │ │ │ │ ├── inc │ │ │ │ ├── usbd_msc_bot.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_data.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ │ └── src │ │ │ │ ├── usbd_msc_bot.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ ├── usbd_msc_data.c │ │ │ │ ├── usbd_msc_scsi.c │ │ │ │ └── usbd_storage_template.c │ │ ├── Core │ │ │ ├── inc │ │ │ │ ├── usbd_conf_template.h │ │ │ │ ├── usbd_core.h │ │ │ │ ├── usbd_def.h │ │ │ │ ├── usbd_ioreq.h │ │ │ │ ├── usbd_req.h │ │ │ │ └── usbd_usr.h │ │ │ └── src │ │ │ │ ├── usbd_core.c │ │ │ │ ├── usbd_ioreq.c │ │ │ │ └── usbd_req.c │ │ └── Release_Notes.html │ │ ├── STM32_USB_HOST_Library │ │ ├── Class │ │ │ ├── HID │ │ │ │ ├── inc │ │ │ │ │ ├── usbh_hid_core.h │ │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ │ └── usbh_hid_mouse.h │ │ │ │ └── src │ │ │ │ │ ├── usbh_hid_core.c │ │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ │ └── usbh_hid_mouse.c │ │ │ └── MSC │ │ │ │ ├── inc │ │ │ │ ├── usbh_msc_bot.h │ │ │ │ ├── usbh_msc_core.h │ │ │ │ └── usbh_msc_scsi.h │ │ │ │ └── src │ │ │ │ ├── usbh_msc_bot.c │ │ │ │ ├── usbh_msc_core.c │ │ │ │ ├── usbh_msc_fatfs.c │ │ │ │ └── usbh_msc_scsi.c │ │ ├── Core │ │ │ ├── inc │ │ │ │ ├── usbh_conf_template.h │ │ │ │ ├── usbh_core.h │ │ │ │ ├── usbh_def.h │ │ │ │ ├── usbh_hcs.h │ │ │ │ ├── usbh_ioreq.h │ │ │ │ └── usbh_stdreq.h │ │ │ └── src │ │ │ │ ├── usbh_core.c │ │ │ │ ├── usbh_hcs.c │ │ │ │ ├── usbh_ioreq.c │ │ │ │ └── usbh_stdreq.c │ │ └── Release_Notes.html │ │ └── STM32_USB_OTG_Driver │ │ ├── Release_Notes.html │ │ ├── inc │ │ ├── usb_bsp.h │ │ ├── usb_conf_template.h │ │ ├── usb_core.h │ │ ├── usb_dcd.h │ │ ├── usb_dcd_int.h │ │ ├── usb_defines.h │ │ ├── usb_hcd.h │ │ ├── usb_hcd_int.h │ │ ├── usb_otg.h │ │ └── usb_regs.h │ │ └── src │ │ ├── usb_bsp_template.c │ │ ├── usb_core.c │ │ ├── usb_dcd.c │ │ ├── usb_dcd_int.c │ │ ├── usb_hcd.c │ │ ├── usb_hcd_int.c │ │ └── usb_otg.c └── gnustep │ └── portmidi │ ├── CHANGELOG.txt │ ├── Doxyfile │ ├── README.txt │ ├── license.txt │ ├── pm_cl │ ├── README_CL.txt │ ├── cffi-portmidi.lisp │ └── test-no-cm.lisp │ ├── pm_common │ ├── pminternal.h │ ├── pmutil.c │ ├── pmutil.h │ ├── portmidi.c │ └── portmidi.h │ ├── pm_csharp │ ├── README.txt │ └── pm_managed │ │ ├── AssemblyInfo.cpp │ │ ├── ReadMe.txt │ │ ├── Stdafx.cpp │ │ ├── Stdafx.h │ │ ├── app.ico │ │ ├── app.rc │ │ ├── pm_managed.cpp │ │ ├── pm_managed.h │ │ ├── pm_managed.vcproj │ │ └── resource.h │ ├── pm_java │ ├── JavaExe.exe │ ├── README.txt │ ├── UpdateRsrcJavaExe.exe │ ├── jportmidi │ │ ├── JPortMidi.java │ │ ├── JPortMidiApi.java │ │ └── JPortMidiException.java │ ├── make.bat │ ├── pmdefaults │ │ ├── PmDefaults.java │ │ ├── PmDefaultsFrame.java │ │ ├── README.txt │ │ ├── manifest.txt │ │ ├── pmdefaults-icon.bmp │ │ ├── pmdefaults-icon.gif │ │ ├── pmdefaults-icon.png │ │ ├── pmdefaults-icon.xcf │ │ ├── pmdefaults-license.txt │ │ ├── pmdefaults.icns │ │ ├── pmdefaults.ico │ │ └── portmusic_logo.png │ ├── pmjni │ │ ├── jportmidi_JportMidiApi.h │ │ ├── pmjni.c │ │ ├── pmjni.rc │ │ └── pmjni.vcproj │ └── setup │ │ └── pmdefaults-setup.exe │ ├── pm_linux │ ├── Makefile │ ├── README_LINUX.txt │ ├── pmlinux.c │ ├── pmlinux.h │ ├── pmlinuxalsa.c │ └── pmlinuxalsa.h │ ├── pm_mac │ ├── Makefile.osx │ ├── README_MAC.txt │ ├── finddefault.c │ ├── pm_mac.xcodeproj │ │ └── project.pbxproj │ ├── pmmac.c │ ├── pmmac.h │ ├── pmmacosxcm.c │ ├── pmmacosxcm.h │ ├── readbinaryplist.c │ └── readbinaryplist.h │ ├── pm_mingw │ ├── eclipse │ │ ├── README.txt │ │ ├── dot-cproject │ │ └── dot-project │ └── msys │ │ ├── README.txt │ │ └── SConstruct │ ├── pm_python │ ├── README.txt │ ├── hints.txt │ └── miniTest.py │ ├── pm_test │ ├── latency-VC9.vcproj │ ├── latency.c │ ├── latency.vcproj │ ├── midithread-VC9.vcproj │ ├── midithread.c │ ├── midithread.vcproj │ ├── midithru-VC9.vcproj │ ├── midithru.c │ ├── midithru.vcproj │ ├── mm-VC9.vcproj │ ├── mm.c │ ├── mm.vcproj │ ├── qtest-VC9.vcproj │ ├── qtest.c │ ├── qtest.vcproj │ ├── sysex-VC9.vcproj │ ├── sysex.c │ ├── sysex.vcproj │ ├── test-VC9.vcproj │ ├── test.c │ ├── test.vcproj │ └── txdata.syx │ ├── pm_win │ ├── README_WIN.txt │ ├── debugging_dlls.txt │ ├── pmwin.c │ ├── pmwinmm.c │ └── pmwinmm.h │ ├── portmidi-VC9.sln │ ├── portmidi-VC9.vcproj │ ├── portmidi.sln │ ├── portmidi.vcproj │ ├── portmusic_logo.png │ └── porttime │ ├── porttime-VC9.vcproj │ ├── porttime.c │ ├── porttime.dsp │ ├── porttime.h │ ├── porttime.vcproj │ ├── ptlinux.c │ ├── ptmacosx_cf.c │ ├── ptmacosx_mach.c │ └── ptwinmm.c ├── etc ├── doxygen │ └── Doxyfile ├── egypt │ ├── dot_output.sh │ └── egypt ├── inf │ └── mios32_com.inf ├── ld │ ├── LPC17xx │ │ ├── LPC1768.ld │ │ └── LPC1769.ld │ ├── STM32F10x │ │ ├── STM32F103CB.ld │ │ ├── STM32F103RB.ld │ │ ├── STM32F103RE.ld │ │ └── STM32F105RC.ld │ ├── STM32F4xx │ │ └── STM32F407VG.ld │ └── STR9x │ │ └── STR91x.ld └── openocd │ ├── interface │ ├── amontec.cfg │ ├── arm-usb-ocd.cfg │ ├── comstick.cfg │ ├── in-circuit-openocd-dos.cfg │ ├── in-circuit-openocd-olimex.cfg │ ├── in-circuit-openocd.cfg │ ├── olimex-tiny.cfg │ ├── openocd.cfg │ ├── parport_lpt1.cfg │ └── rlink.cfg │ └── scripts │ ├── LPC176x_upload.script │ ├── STM32F10x_reset.script │ ├── STM32F10x_upload.script │ ├── STM32F4xx_upload.script │ ├── STR91x_reset.script │ └── STR91x_upload.script ├── include ├── makefile │ ├── MIOSJUCEcommon.mk │ └── common.mk └── mios32 │ ├── mios32.h │ ├── mios32_ain.h │ ├── mios32_board.h │ ├── mios32_com.h │ ├── mios32_datatypes.h │ ├── mios32_delay.h │ ├── mios32_din.h │ ├── mios32_dout.h │ ├── mios32_enc.h │ ├── mios32_enc28j60.h │ ├── mios32_enc28j60_regs.h │ ├── mios32_i2s.h │ ├── mios32_iic.h │ ├── mios32_iic_bs.h │ ├── mios32_iic_midi.h │ ├── mios32_irq.h │ ├── mios32_lcd.h │ ├── mios32_mf.h │ ├── mios32_midi.h │ ├── mios32_osc.h │ ├── mios32_sdcard.h │ ├── mios32_spi.h │ ├── mios32_spi_midi.h │ ├── mios32_srio.h │ ├── mios32_stopwatch.h │ ├── mios32_sys.h │ ├── mios32_timer.h │ ├── mios32_timestamp.h │ ├── mios32_uart.h │ ├── mios32_uart_midi.h │ ├── mios32_usb.h │ ├── mios32_usb_com.h │ └── mios32_usb_midi.h ├── mios32 ├── LPC17xx │ ├── mios32_ain.c │ ├── mios32_board.c │ ├── mios32_bsl.c │ ├── mios32_bsl_LPCXPRESSO_1768.inc │ ├── mios32_bsl_LPCXPRESSO_1769.inc │ ├── mios32_delay.c │ ├── mios32_family.mk │ ├── mios32_i2s.c │ ├── mios32_iic.c │ ├── mios32_irq.c │ ├── mios32_spi.c │ ├── mios32_stopwatch.c │ ├── mios32_sys.c │ ├── mios32_timer.c │ ├── mios32_uart.c │ ├── mios32_usb.c │ ├── mios32_usb_com.c │ └── mios32_usb_midi.c ├── MIOSJUCE │ ├── FreeRTOS │ │ └── Source │ │ │ ├── JUCEqueue.cpp │ │ │ ├── JUCEtask.cpp │ │ │ ├── include │ │ │ ├── FreeRTOS.h │ │ │ ├── JUCEqueue.h │ │ │ ├── JUCEqueue.hpp │ │ │ ├── JUCEtask.h │ │ │ ├── JUCEtask.hpp │ │ │ ├── StackMacros.h │ │ │ ├── list.h │ │ │ ├── portable.h │ │ │ ├── projdefs.h │ │ │ ├── queue.h │ │ │ ├── semphr.h │ │ │ └── task.h │ │ │ ├── list.c │ │ │ ├── portable │ │ │ ├── GCC │ │ │ │ └── MIOSJUCE │ │ │ │ │ ├── port.c │ │ │ │ │ └── portmacro.h │ │ │ ├── MemMang │ │ │ │ └── heap_3.c │ │ │ └── readme.txt │ │ │ ├── queue.c │ │ │ └── task.c │ ├── c++ │ │ ├── JUCEmidi.cpp │ │ ├── JUCEmios32.cpp │ │ ├── JUCEtimer.cpp │ │ ├── mios32_midi.c │ │ └── mios32_timer.c │ ├── include │ │ ├── JUCEmidi.h │ │ ├── JUCEmidi.hpp │ │ ├── JUCEtimer.h │ │ └── JUCEtimer.hpp │ ├── mios32_ain.c │ ├── mios32_board.c │ ├── mios32_bsl.c │ ├── mios32_bsl_MBHP_CORE_STM32.inc │ ├── mios32_bsl_STM32_PRIMER.inc │ ├── mios32_bsl_dummy.inc │ ├── mios32_delay.c │ ├── mios32_family.mk │ ├── mios32_i2s.c │ ├── mios32_iic.c │ ├── mios32_irq.c │ ├── mios32_spi.c │ ├── mios32_stopwatch.c │ ├── mios32_sys.c │ ├── mios32_timer.c │ ├── mios32_uart.c │ ├── mios32_usb.c │ ├── mios32_usb_com.c │ └── mios32_usb_midi.c ├── STM32F10x │ ├── mios32_ain.c │ ├── mios32_board.c │ ├── mios32_bsl.c │ ├── mios32_bsl_MBHP_CORE_STM32.inc │ ├── mios32_bsl_MBHP_CORE_STM32_CL.inc │ ├── mios32_bsl_STM32_PRIMER.inc │ ├── mios32_bsl_dummy.inc │ ├── mios32_delay.c │ ├── mios32_family.mk │ ├── mios32_i2s.c │ ├── mios32_iic.c │ ├── mios32_irq.c │ ├── mios32_spi.c │ ├── mios32_stopwatch.c │ ├── mios32_sys.c │ ├── mios32_timer.c │ ├── mios32_uart.c │ ├── mios32_usb.c │ ├── mios32_usb_com.c │ ├── mios32_usb_midi.c │ ├── usb_conf.h │ └── usb_istr.h ├── STM32F4xx │ ├── mios32_ain.c │ ├── mios32_board.c │ ├── mios32_bsl.c │ ├── mios32_bsl_STM32F4DISCOVERY.inc │ ├── mios32_delay.c │ ├── mios32_family.mk │ ├── mios32_i2s.c │ ├── mios32_iic.c │ ├── mios32_irq.c │ ├── mios32_spi.c │ ├── mios32_stopwatch.c │ ├── mios32_sys.c │ ├── mios32_timer.c │ ├── mios32_uart.c │ ├── mios32_usb.c │ ├── mios32_usb_com.c │ ├── mios32_usb_midi.c │ ├── usb_conf.h │ ├── usbd_conf.h │ ├── usbd_desc.h │ └── usbh_conf.h ├── common │ ├── mios32_com.c │ ├── mios32_din.c │ ├── mios32_dout.c │ ├── mios32_enc.c │ ├── mios32_enc28j60.c │ ├── mios32_iic_bs.c │ ├── mios32_iic_midi.c │ ├── mios32_lcd.c │ ├── mios32_mf.c │ ├── mios32_midi.c │ ├── mios32_osc.c │ ├── mios32_sdcard.c │ ├── mios32_spi_midi.c │ ├── mios32_srio.c │ ├── mios32_timestamp.c │ ├── mios32_uart_midi.c │ └── printf-stdarg.c └── mios32.mk ├── modules ├── ainser │ ├── ainser.c │ ├── ainser.h │ └── ainser.mk ├── aout │ ├── aout.c │ ├── aout.h │ ├── aout.mk │ ├── aout_hz_v_table.inc │ └── utils │ │ └── hz_v_table.pl ├── app_lcd │ ├── clcd_parallel │ │ ├── app_lcd.c │ │ ├── app_lcd.h │ │ └── app_lcd.mk │ ├── holtek16514 │ │ ├── app_lcd.c │ │ ├── app_lcd.h │ │ └── app_lcd.mk │ ├── ipad │ │ ├── CLcd.cpp │ │ ├── CLcd.h │ │ ├── CLcdView.h │ │ ├── CLcdView.mm │ │ ├── CLcdView_charset.inc │ │ ├── app_lcd.cpp │ │ └── app_lcd.h │ ├── juce │ │ ├── CLCDView.cpp │ │ ├── CLCDView.h │ │ ├── CLCDView_charset.inc │ │ ├── app_lcd.cpp │ │ └── app_lcd.h │ ├── macos │ │ ├── CLcd.cpp │ │ ├── CLcd.h │ │ ├── CLcdView.h │ │ ├── CLcdView.mm │ │ ├── CLcdView_charset.inc │ │ ├── app_lcd.cpp │ │ └── app_lcd.h │ ├── pcd8544 │ │ ├── app_lcd.c │ │ ├── app_lcd.h │ │ └── app_lcd.mk │ ├── ssd1322 │ │ ├── app_lcd.c │ │ ├── app_lcd.h │ │ └── app_lcd.mk │ ├── st7637 │ │ ├── app_lcd.c │ │ ├── app_lcd.h │ │ ├── app_lcd.mk │ │ └── app_lcd_st7637.h │ ├── t6963_h │ │ ├── app_lcd.c │ │ ├── app_lcd.h │ │ └── app_lcd.mk │ ├── t6963_v │ │ ├── app_lcd.c │ │ ├── app_lcd.h │ │ └── app_lcd.mk │ ├── uc1610 │ │ ├── README.txt │ │ ├── app_lcd.c │ │ ├── app_lcd.h │ │ └── app_lcd.mk │ └── universal │ │ ├── app_lcd.c │ │ ├── app_lcd.h │ │ └── app_lcd.mk ├── blm │ ├── blm.c │ ├── blm.h │ └── blm.mk ├── blm_cheapo │ ├── blm_cheapo.c │ ├── blm_cheapo.h │ └── blm_cheapo.mk ├── blm_scalar │ ├── README.txt │ ├── blm_scalar.c │ ├── blm_scalar.h │ └── blm_scalar.mk ├── blm_scalar_master │ ├── README.txt │ ├── blm_scalar_master.c │ ├── blm_scalar_master.h │ └── blm_scalar_master.mk ├── blm_x │ ├── README.txt │ ├── blm_x.c │ ├── blm_x.h │ └── blm_x.mk ├── buflcd │ ├── buflcd.c │ ├── buflcd.h │ └── buflcd.mk ├── dmx │ ├── dmx.c │ ├── dmx.h │ └── dmx.mk ├── dosfs │ ├── README.txt │ ├── README_1st.txt │ ├── dfs_sdcard.c │ ├── dosfs.c │ ├── dosfs.h │ ├── dosfs.mk │ └── not_used │ │ ├── hostemu.c │ │ ├── hostemu.h │ │ └── main.c ├── dpot │ ├── dpot.c │ ├── dpot.h │ ├── dpot.mk │ └── dpot_mcp41xxx.inc ├── eeprom │ ├── LPC17xx │ │ └── eeprom.c │ ├── STM32F10x │ │ └── eeprom.c │ ├── STM32F4xx │ │ └── eeprom.c │ ├── eeprom.h │ └── eeprom.mk ├── esp8266 │ ├── ESP8266_AT_V0.51 │ │ ├── 0x00000.inc │ │ ├── 0x40000.inc │ │ ├── Makefile │ │ ├── README │ │ ├── eagle.flash.bin │ │ └── eagle.irom0text.bin │ ├── esp8266.c │ ├── esp8266.h │ ├── esp8266.mk │ ├── esp8266_fw.c │ ├── esp8266_fw.h │ └── tools │ │ └── bin2c.pl ├── fatfs │ ├── README_1st.txt │ ├── doc │ │ ├── 00index_e.html │ │ ├── 00index_j.html │ │ ├── css_e.css │ │ ├── css_j.css │ │ ├── en │ │ │ ├── appnote.html │ │ │ ├── chdir.html │ │ │ ├── chdrive.html │ │ │ ├── chmod.html │ │ │ ├── close.html │ │ │ ├── dinit.html │ │ │ ├── dioctl.html │ │ │ ├── dread.html │ │ │ ├── dstat.html │ │ │ ├── dwrite.html │ │ │ ├── fattime.html │ │ │ ├── filename.html │ │ │ ├── forward.html │ │ │ ├── getfree.html │ │ │ ├── gets.html │ │ │ ├── lseek.html │ │ │ ├── mkdir.html │ │ │ ├── mkfs.html │ │ │ ├── mount.html │ │ │ ├── open.html │ │ │ ├── opendir.html │ │ │ ├── printf.html │ │ │ ├── putc.html │ │ │ ├── puts.html │ │ │ ├── read.html │ │ │ ├── readdir.html │ │ │ ├── rename.html │ │ │ ├── sdir.html │ │ │ ├── sfatfs.html │ │ │ ├── sfile.html │ │ │ ├── sfileinfo.html │ │ │ ├── stat.html │ │ │ ├── sync.html │ │ │ ├── truncate.html │ │ │ ├── unlink.html │ │ │ ├── utime.html │ │ │ └── write.html │ │ ├── img │ │ │ ├── f1.png │ │ │ ├── f2.png │ │ │ ├── f3.png │ │ │ ├── f4.png │ │ │ ├── f5.png │ │ │ ├── layers.png │ │ │ ├── rwtest.png │ │ │ └── rwtest2.png │ │ ├── ja │ │ │ ├── appnote.html │ │ │ ├── chdir.html │ │ │ ├── chdrive.html │ │ │ ├── chmod.html │ │ │ ├── close.html │ │ │ ├── dinit.html │ │ │ ├── dioctl.html │ │ │ ├── dread.html │ │ │ ├── dstat.html │ │ │ ├── dwrite.html │ │ │ ├── fattime.html │ │ │ ├── filename.html │ │ │ ├── forward.html │ │ │ ├── getfree.html │ │ │ ├── gets.html │ │ │ ├── lseek.html │ │ │ ├── mkdir.html │ │ │ ├── mkfs.html │ │ │ ├── mount.html │ │ │ ├── open.html │ │ │ ├── opendir.html │ │ │ ├── printf.html │ │ │ ├── putc.html │ │ │ ├── puts.html │ │ │ ├── read.html │ │ │ ├── readdir.html │ │ │ ├── rename.html │ │ │ ├── sdir.html │ │ │ ├── sfatfs.html │ │ │ ├── sfile.html │ │ │ ├── sfileinfo.html │ │ │ ├── stat.html │ │ │ ├── sync.html │ │ │ ├── truncate.html │ │ │ ├── unlink.html │ │ │ ├── utime.html │ │ │ └── write.html │ │ └── updates.txt │ ├── fatfs.mk │ └── src │ │ ├── 00readme.txt │ │ ├── diskio.c │ │ ├── diskio.h │ │ ├── ff.c │ │ ├── ff.h │ │ ├── ffconf.h │ │ ├── integer.h │ │ └── option │ │ ├── cc932.c │ │ ├── cc936.c │ │ ├── cc949.c │ │ ├── cc950.c │ │ ├── ccsbcs.c │ │ └── syncobj.c ├── file │ ├── file.c │ ├── file.h │ └── file.mk ├── fram │ ├── README.txt │ ├── fram.c │ ├── fram.h │ └── fram.mk ├── freertos_utils │ ├── freertos_utils.c │ ├── freertos_utils.h │ └── freertos_utils.mk ├── genesis │ ├── Readme.txt │ ├── genesis.c │ ├── genesis.h │ └── genesis.mk ├── glcd_font │ ├── README.txt │ ├── convpix_c.pl │ ├── glcd_font.h │ ├── glcd_font.mk │ ├── glcd_font_big.c │ ├── glcd_font_big.xpm │ ├── glcd_font_knob_icons.c │ ├── glcd_font_knob_icons.xpm │ ├── glcd_font_meter_icons_h.c │ ├── glcd_font_meter_icons_h.xpm │ ├── glcd_font_meter_icons_v.c │ ├── glcd_font_meter_icons_v.xpm │ ├── glcd_font_normal.c │ ├── glcd_font_normal.xpm │ ├── glcd_font_normal_inv.c │ ├── glcd_font_small.c │ ├── glcd_font_small.xpm │ └── glcd_font_tiny.c ├── keyboard │ ├── keyboard.c │ ├── keyboard.h │ └── keyboard.mk ├── max72xx │ ├── max72xx.c │ ├── max72xx.h │ └── max72xx.mk ├── mbnet │ ├── LPC17xx │ │ └── mbnet_hal.c │ ├── STM32F10x │ │ └── mbnet_hal.c │ ├── STM32F4xx │ │ └── mbnet_hal.c │ ├── mbnet.c │ ├── mbnet.h │ ├── mbnet.mk │ └── mbnet_hal.h ├── md5 │ ├── README.txt │ ├── md5.c │ ├── md5.h │ └── md5.mk ├── microvga │ ├── conio.c │ ├── conio.h │ ├── kbd.h │ ├── microvga.c │ ├── microvga.mk │ ├── readme.txt │ ├── ui.c │ └── ui.h ├── midi_router │ ├── midi_port.c │ ├── midi_port.h │ ├── midi_router.c │ ├── midi_router.h │ └── midi_router.mk ├── midifile │ ├── mid_parser.c │ ├── mid_parser.h │ └── midifile.mk ├── midimon │ ├── midimon.c │ ├── midimon.h │ └── midimon.mk ├── minfs │ ├── README.txt │ ├── gnu_test │ │ ├── makefile │ │ └── minfs_test.c │ ├── minfs.c │ ├── minfs.h │ ├── minfs_fram.c │ ├── minfs_fram.mk │ ├── minfs_ram.c │ └── minfs_ram.mk ├── msd │ ├── LPC17xx │ │ ├── blockdev.h │ │ ├── blockdev_sd.c │ │ ├── msc_bot.c │ │ ├── msc_bot.h │ │ ├── msc_scsi.c │ │ ├── msc_scsi.h │ │ ├── msd.c │ │ └── msd.h │ ├── STM32F10x │ │ ├── msd.c │ │ ├── msd.h │ │ ├── msd_bot.c │ │ ├── msd_bot.h │ │ ├── msd_desc.c │ │ ├── msd_desc.h │ │ ├── msd_memory.c │ │ ├── msd_memory.h │ │ ├── msd_scsi.c │ │ ├── msd_scsi.h │ │ └── msd_scsi_data.c │ ├── STM32F4xx │ │ ├── msd.c │ │ └── msd.h │ └── msd.mk ├── notestack │ ├── notestack.c │ ├── notestack.h │ └── notestack.mk ├── opl3 │ ├── Readme.txt │ ├── opl3.c │ ├── opl3.h │ └── opl3.mk ├── random │ ├── jsw_rand.c │ ├── jsw_rand.h │ └── random.mk ├── scs │ ├── scs.c │ ├── scs.h │ ├── scs.mk │ ├── scs_lcd.c │ └── scs_lcd.h ├── sequencer │ ├── seq_bpm.c │ ├── seq_bpm.h │ ├── seq_midi_out.c │ ├── seq_midi_out.h │ └── sequencer.mk ├── sid │ ├── sid.c │ ├── sid.h │ └── sid.mk ├── template │ ├── README.txt │ ├── module_x.c │ ├── module_x.h │ └── module_x.mk ├── uip │ ├── README │ ├── README_1st.txt │ ├── apps │ │ ├── README │ │ ├── dhcpc │ │ │ ├── Makefile.dhcpc │ │ │ ├── dhcpc.c │ │ │ └── dhcpc.h │ │ ├── hello-world │ │ │ ├── Makefile.hello-world │ │ │ ├── hello-world.c │ │ │ └── hello-world.h │ │ ├── resolv │ │ │ ├── Makefile.resolv │ │ │ ├── resolv.c │ │ │ └── resolv.h │ │ ├── smtp │ │ │ ├── Makefile.smtp │ │ │ ├── makestrings │ │ │ ├── smtp-strings │ │ │ ├── smtp-strings.c │ │ │ ├── smtp-strings.h │ │ │ ├── smtp.c │ │ │ └── smtp.h │ │ ├── telnetd │ │ │ ├── Makefile.telnetd │ │ │ ├── shell.c │ │ │ ├── shell.h │ │ │ ├── telnetd.c │ │ │ └── telnetd.h │ │ ├── webclient │ │ │ ├── Makefile.webclient │ │ │ ├── makestrings │ │ │ ├── webclient-strings │ │ │ ├── webclient-strings.c │ │ │ ├── webclient-strings.h │ │ │ ├── webclient.c │ │ │ └── webclient.h │ │ └── webserver │ │ │ ├── Makefile.webserver │ │ │ ├── http-strings │ │ │ ├── http-strings.c │ │ │ ├── http-strings.h │ │ │ ├── httpd-cgi.c │ │ │ ├── httpd-cgi.h │ │ │ ├── httpd-fs.c │ │ │ ├── httpd-fs.h │ │ │ ├── httpd-fs │ │ │ ├── 404.html │ │ │ ├── fade.png │ │ │ ├── files.shtml │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── index.html │ │ │ ├── processes.shtml │ │ │ ├── stats.shtml │ │ │ ├── style.css │ │ │ └── tcp.shtml │ │ │ ├── httpd-fsdata.c │ │ │ ├── httpd-fsdata.h │ │ │ ├── httpd.c │ │ │ ├── httpd.h │ │ │ ├── makefsdata │ │ │ ├── makestrings │ │ │ └── webserver.h │ ├── doc │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── README │ │ ├── doxygen.sty │ │ ├── example-mainloop-with-arp.c │ │ ├── example-mainloop-without-arp.c │ │ ├── examples.txt │ │ ├── header.tex │ │ ├── mobisys2003.pdf │ │ ├── pt-doc.txt │ │ ├── sicslogo.pdf │ │ ├── uip-code-style.c.example │ │ ├── uip-code-style.txt │ │ ├── uip-doc.txt │ │ └── uip-refman.pdf │ ├── lib │ │ ├── memb.c │ │ └── memb.h │ ├── mios32 │ │ ├── LPC17xx │ │ │ ├── lpc17xx_emac.c │ │ │ ├── lpc17xx_emac.h │ │ │ ├── lpc_types.h │ │ │ ├── network-device.c │ │ │ ├── network-device.h │ │ │ └── target.h │ │ ├── STM32F10x │ │ │ ├── network-device.c │ │ │ └── network-device.h │ │ ├── STM32F4xx │ │ │ ├── network-device.c │ │ │ └── network-device.h │ │ ├── clock-arch.c │ │ └── clock-arch.h │ ├── uip-1.0-changelog.txt │ ├── uip.mk │ ├── uip │ │ ├── Makefile.include │ │ ├── clock.h │ │ ├── lc-addrlabels.h │ │ ├── lc-switch.h │ │ ├── lc.h │ │ ├── psock.c │ │ ├── psock.h │ │ ├── pt.h │ │ ├── timer.c │ │ ├── timer.h │ │ ├── uip-fw.c │ │ ├── uip-fw.h │ │ ├── uip-neighbor.c │ │ ├── uip-neighbor.h │ │ ├── uip-split.c │ │ ├── uip-split.h │ │ ├── uip.c │ │ ├── uip.h │ │ ├── uip_arch.h │ │ ├── uip_arp.c │ │ ├── uip_arp.h │ │ ├── uiplib.c │ │ ├── uiplib.h │ │ └── uipopt.h │ └── unix │ │ ├── Makefile │ │ ├── clock-arch.c │ │ ├── clock-arch.h │ │ ├── main.c │ │ ├── tapdev.c │ │ ├── tapdev.h │ │ └── uip-conf.h ├── uip_task_standard │ ├── dhcpc.c │ ├── dhcpc.h │ ├── osc_client.c │ ├── osc_client.h │ ├── osc_server.c │ ├── osc_server.h │ ├── shell.h │ ├── uip-conf.h │ ├── uip_task.c │ ├── uip_task.h │ ├── uip_task_standard.mk │ ├── uip_terminal.c │ └── uip_terminal.h ├── uwindows │ ├── README.txt │ ├── UW_CharSet.h │ ├── UW_Charset.c │ ├── UW_Config.h │ ├── UW_TouchScreen.c │ ├── UWindows.c │ ├── UWindows.h │ ├── UWindows.pdf │ ├── calibrate.c │ ├── calibrate.h │ ├── list.h │ ├── malloc.c │ └── uwindows.mk ├── vgm │ ├── Readme.txt │ ├── vgm.c │ ├── vgm.h │ ├── vgm.mk │ ├── vgm_heap2.c │ ├── vgm_heap2.h │ ├── vgmfile.c │ ├── vgmfile.h │ ├── vgmhead.c │ ├── vgmhead.h │ ├── vgmperfmon.c │ ├── vgmperfmon.h │ ├── vgmplayer.c │ ├── vgmplayer.h │ ├── vgmqueue.c │ ├── vgmqueue.h │ ├── vgmram.c │ ├── vgmram.h │ ├── vgmsdtask.c │ ├── vgmsdtask.h │ ├── vgmsource.c │ ├── vgmsource.h │ ├── vgmstream.c │ ├── vgmstream.h │ ├── vgmtracker.c │ ├── vgmtracker.h │ ├── vgmtuning.c │ └── vgmtuning.h └── ws2812 │ ├── ws2812.c │ ├── ws2812.h │ └── ws2812.mk ├── programming_models ├── MIOSJUCE │ ├── FreeRTOSConfig.h │ ├── MIOSJUCEDialogs.h │ ├── Main.cpp │ ├── MainComponent.cpp │ ├── MainComponent.h │ ├── juce_AppConfig.h │ ├── mios32_main.c │ ├── mios32_main.h │ └── programming_model.mk └── traditional │ ├── FreeRTOSConfig.h │ ├── freertos_heap.cpp │ ├── main.c │ ├── mini_cpp.cpp │ ├── programming_model.mk │ ├── startup_LPC17xx.c │ ├── startup_stm32f10x_hd.c │ ├── startup_stm32f10x_md.c │ ├── startup_stm32f4xx.c │ ├── stm32f10x_conf.h │ ├── stm32f4xx_conf.h │ └── strtol.c ├── source_me_BLUE_PILL ├── source_me_MBHP_CORE_LPC17 ├── source_me_MBHP_CORE_STM32 ├── source_me_MBHP_CORE_STM32F4 └── tools ├── blm_scalar_emulation ├── juce │ ├── BLM.jucer │ ├── Builds │ │ ├── Linux │ │ │ └── Makefile │ │ ├── MacOSX │ │ │ ├── BLM.xcodeproj │ │ │ │ ├── TK.mode1v3 │ │ │ │ ├── TK.pbxuser │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Icon.icns │ │ │ ├── Info-App.plist │ │ │ └── RecentFilesMenuTemplate.nib │ │ └── VisualStudio2017 │ │ │ ├── BLM.sln │ │ │ ├── BLM_App.vcxproj │ │ │ ├── BLM_App.vcxproj.filters │ │ │ ├── icon.ico │ │ │ └── resources.rc │ ├── JuceLibraryCode │ │ ├── AppConfig.h │ │ ├── BinaryData.cpp │ │ ├── BinaryData.h │ │ ├── JuceHeader.h │ │ ├── ReadMe.txt │ │ ├── include_juce_audio_basics.cpp │ │ ├── include_juce_audio_basics.mm │ │ ├── include_juce_audio_devices.cpp │ │ ├── include_juce_audio_devices.mm │ │ ├── include_juce_audio_formats.cpp │ │ ├── include_juce_audio_formats.mm │ │ ├── include_juce_audio_processors.cpp │ │ ├── include_juce_audio_processors.mm │ │ ├── include_juce_core.cpp │ │ ├── include_juce_core.mm │ │ ├── include_juce_cryptography.cpp │ │ ├── include_juce_cryptography.mm │ │ ├── include_juce_data_structures.cpp │ │ ├── include_juce_data_structures.mm │ │ ├── include_juce_events.cpp │ │ ├── include_juce_events.mm │ │ ├── include_juce_graphics.cpp │ │ ├── include_juce_graphics.mm │ │ ├── include_juce_gui_basics.cpp │ │ ├── include_juce_gui_basics.mm │ │ ├── include_juce_gui_extra.cpp │ │ ├── include_juce_gui_extra.mm │ │ ├── include_juce_opengl.cpp │ │ ├── include_juce_opengl.mm │ │ ├── include_juce_video.cpp │ │ └── include_juce_video.mm │ ├── README.txt │ ├── Source │ │ ├── BlmButton.cpp │ │ ├── BlmButton.h │ │ ├── BlmClass.cpp │ │ ├── BlmClass.h │ │ ├── ExtCtrl.cpp │ │ ├── ExtCtrl.h │ │ ├── Main.cpp │ │ ├── MainComponent.cpp │ │ ├── MainComponent.h │ │ ├── MidiClass.cpp │ │ ├── MidiClass.h │ │ ├── OscHelper.cpp │ │ ├── OscHelper.h │ │ ├── UdpSocket.cpp │ │ ├── UdpSocket.h │ │ └── bitmaps │ │ │ └── Leds.png │ ├── icon │ │ ├── blm-128.png │ │ ├── blm-72.png │ │ ├── blm.icns │ │ ├── blm.ico │ │ └── blm.png │ └── releases │ │ └── release.sh ├── lemur │ └── MIDIbox_BLM16x16+X.jzml └── macos_expired │ ├── BLM.h │ ├── BLM.m │ ├── BLM_ButtonCell.h │ ├── BLM_ButtonCell.m │ ├── ControlButton.h │ ├── ControlButton.m │ ├── English.lproj │ ├── InfoPlist.strings │ └── MainMenu.xib │ ├── blm_scalar_emulation-Info.plist │ ├── blm_scalar_emulation.xcodeproj │ └── project.pbxproj │ ├── blm_scalar_emulationAppDelegate.h │ ├── blm_scalar_emulationAppDelegate.m │ ├── blm_scalar_emulation_Prefix.pch │ └── main.m ├── midi_value_scan ├── Makefile.osx ├── README.txt └── main.c ├── mios32_scan ├── Makefile.osx ├── README.txt ├── main.c ├── make.bat ├── makefile.win └── mios32_config.h ├── mios32_terminal ├── Makefile.osx ├── README.txt ├── main.c ├── make.bat ├── makefile.win └── mios32_config.h ├── mios_studio ├── Builds │ ├── Linux │ │ └── Makefile │ ├── MacOSX │ │ ├── Icon.icns │ │ ├── Info-App.plist │ │ ├── MIOS_Studio.xcodeproj │ │ │ └── project.pbxproj │ │ └── RecentFilesMenuTemplate.nib │ └── VisualStudio2017 │ │ ├── MIOS_Studio.sln │ │ ├── MIOS_Studio_App.vcxproj │ │ ├── MIOS_Studio_App.vcxproj.filters │ │ ├── icon.ico │ │ └── resources.rc ├── JuceLibraryCode │ ├── AppConfig.h │ ├── BinaryData.cpp │ ├── BinaryData.h │ ├── JuceHeader.h │ ├── ReadMe.txt │ ├── include_juce_audio_basics.cpp │ ├── include_juce_audio_basics.mm │ ├── include_juce_audio_devices.cpp │ ├── include_juce_audio_devices.mm │ ├── include_juce_audio_formats.cpp │ ├── include_juce_audio_formats.mm │ ├── include_juce_audio_processors.cpp │ ├── include_juce_audio_processors.mm │ ├── include_juce_audio_utils.cpp │ ├── include_juce_audio_utils.mm │ ├── include_juce_core.cpp │ ├── include_juce_core.mm │ ├── include_juce_data_structures.cpp │ ├── include_juce_data_structures.mm │ ├── include_juce_events.cpp │ ├── include_juce_events.mm │ ├── include_juce_graphics.cpp │ ├── include_juce_graphics.mm │ ├── include_juce_gui_basics.cpp │ ├── include_juce_gui_basics.mm │ ├── include_juce_gui_extra.cpp │ └── include_juce_gui_extra.mm ├── README.txt ├── icon │ ├── MIOS_Studio.icns │ ├── MIOS_Studio.ico │ └── MIOS_Studio.iconset │ │ ├── icon_128x128.png │ │ ├── icon_16x16.png │ │ ├── icon_32x32.png │ │ └── icon_48x48.png ├── mios_studio.jucer ├── releases │ └── release.sh └── src │ ├── HexFileLoader.cpp │ ├── HexFileLoader.h │ ├── Main.cpp │ ├── OscHelper.cpp │ ├── OscHelper.h │ ├── SysexHelper.cpp │ ├── SysexHelper.h │ ├── SysexPatchDb.cpp │ ├── SysexPatchDb.h │ ├── UdpSocket.cpp │ ├── UdpSocket.h │ ├── UploadHandler.cpp │ ├── UploadHandler.h │ ├── gui │ ├── CommandLineEditor.cpp │ ├── CommandLineEditor.h │ ├── ConfigTableComponents.cpp │ ├── ConfigTableComponents.h │ ├── HexTextEditor.cpp │ ├── HexTextEditor.h │ ├── LogBox.cpp │ ├── LogBox.h │ ├── MbCvTool.cpp │ ├── MbCvTool.h │ ├── MbhpMfTool.cpp │ ├── MbhpMfTool.h │ ├── MidiKeyboard.cpp │ ├── MidiKeyboard.h │ ├── MidiMonitor.cpp │ ├── MidiMonitor.h │ ├── MidiSlider.cpp │ ├── MidiSlider.h │ ├── Midio128Tool.cpp │ ├── Midio128Tool.h │ ├── MiosFileBrowser.cpp │ ├── MiosFileBrowser.h │ ├── MiosStudio.cpp │ ├── MiosStudio.h │ ├── MiosTerminal.cpp │ ├── MiosTerminal.h │ ├── OscMonitor.cpp │ ├── OscMonitor.h │ ├── OscTextEditor.cpp │ ├── OscTextEditor.h │ ├── OscTool.cpp │ ├── OscTool.h │ ├── SysexLibrarian.cpp │ ├── SysexLibrarian.h │ ├── SysexTool.cpp │ ├── SysexTool.h │ ├── UploadWindow.cpp │ └── UploadWindow.h │ ├── includes.h │ └── version.h └── osc_midi_proxy ├── Makefile.osx ├── README.txt ├── main.c └── mios32_config.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/.gitignore -------------------------------------------------------------------------------- /FreeRTOS/License/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/License/license.txt -------------------------------------------------------------------------------- /FreeRTOS/README_1st.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/README_1st.txt -------------------------------------------------------------------------------- /FreeRTOS/Source/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/croutine.c -------------------------------------------------------------------------------- /FreeRTOS/Source/event_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/event_groups.c -------------------------------------------------------------------------------- /FreeRTOS/Source/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/include/FreeRTOS.h -------------------------------------------------------------------------------- /FreeRTOS/Source/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/include/croutine.h -------------------------------------------------------------------------------- /FreeRTOS/Source/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/include/list.h -------------------------------------------------------------------------------- /FreeRTOS/Source/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/include/portable.h -------------------------------------------------------------------------------- /FreeRTOS/Source/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/include/projdefs.h -------------------------------------------------------------------------------- /FreeRTOS/Source/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/include/queue.h -------------------------------------------------------------------------------- /FreeRTOS/Source/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/include/semphr.h -------------------------------------------------------------------------------- /FreeRTOS/Source/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/include/task.h -------------------------------------------------------------------------------- /FreeRTOS/Source/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/include/timers.h -------------------------------------------------------------------------------- /FreeRTOS/Source/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/list.c -------------------------------------------------------------------------------- /FreeRTOS/Source/portable/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/portable/readme.txt -------------------------------------------------------------------------------- /FreeRTOS/Source/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/queue.c -------------------------------------------------------------------------------- /FreeRTOS/Source/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/readme.txt -------------------------------------------------------------------------------- /FreeRTOS/Source/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/tasks.c -------------------------------------------------------------------------------- /FreeRTOS/Source/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/Source/timers.c -------------------------------------------------------------------------------- /FreeRTOS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/FreeRTOS/readme.txt -------------------------------------------------------------------------------- /apps/benchmarks/iic_access/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/iic_access/Makefile -------------------------------------------------------------------------------- /apps/benchmarks/iic_access/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/iic_access/app.c -------------------------------------------------------------------------------- /apps/benchmarks/iic_access/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/iic_access/app.h -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/Makefile -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/README.txt -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/app.c -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/app.h -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/benchmark.c -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/benchmark.h -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/dhcpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/dhcpc.c -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/dhcpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/dhcpc.h -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/shell.c -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/shell.h -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/telnetd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/telnetd.c -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/telnetd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/telnetd.h -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/uip-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/uip-conf.h -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/uip_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/uip_task.c -------------------------------------------------------------------------------- /apps/benchmarks/midi_out/uip_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_out/uip_task.h -------------------------------------------------------------------------------- /apps/benchmarks/midi_parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_parser/Makefile -------------------------------------------------------------------------------- /apps/benchmarks/midi_parser/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_parser/app.c -------------------------------------------------------------------------------- /apps/benchmarks/midi_parser/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/midi_parser/app.h -------------------------------------------------------------------------------- /apps/benchmarks/seq_scheduler/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/seq_scheduler/app.c -------------------------------------------------------------------------------- /apps/benchmarks/seq_scheduler/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/benchmarks/seq_scheduler/app.h -------------------------------------------------------------------------------- /apps/controllers/blm_scalar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/controllers/blm_scalar/Makefile -------------------------------------------------------------------------------- /apps/controllers/blm_scalar/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/controllers/blm_scalar/app.c -------------------------------------------------------------------------------- /apps/controllers/blm_scalar/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/controllers/blm_scalar/app.h -------------------------------------------------------------------------------- /apps/controllers/blm_scalar/sysex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/controllers/blm_scalar/sysex.c -------------------------------------------------------------------------------- /apps/controllers/blm_scalar/sysex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/controllers/blm_scalar/sysex.h -------------------------------------------------------------------------------- /apps/examples/blm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/blm/Makefile -------------------------------------------------------------------------------- /apps/examples/blm/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/blm/README.txt -------------------------------------------------------------------------------- /apps/examples/blm/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/blm/app.c -------------------------------------------------------------------------------- /apps/examples/blm/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/blm/app.h -------------------------------------------------------------------------------- /apps/examples/blm/mios32_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/blm/mios32_config.h -------------------------------------------------------------------------------- /apps/examples/blm_cheapo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/blm_cheapo/Makefile -------------------------------------------------------------------------------- /apps/examples/blm_cheapo/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/blm_cheapo/app.c -------------------------------------------------------------------------------- /apps/examples/blm_cheapo/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/blm_cheapo/app.h -------------------------------------------------------------------------------- /apps/examples/blm_x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/blm_x/Makefile -------------------------------------------------------------------------------- /apps/examples/blm_x/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/blm_x/README.txt -------------------------------------------------------------------------------- /apps/examples/blm_x/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/blm_x/app.c -------------------------------------------------------------------------------- /apps/examples/blm_x/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/blm_x/app.h -------------------------------------------------------------------------------- /apps/examples/blm_x/mios32_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/blm_x/mios32_config.h -------------------------------------------------------------------------------- /apps/examples/com_console/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/com_console/Makefile -------------------------------------------------------------------------------- /apps/examples/com_console/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/com_console/README.txt -------------------------------------------------------------------------------- /apps/examples/com_console/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/com_console/app.c -------------------------------------------------------------------------------- /apps/examples/com_console/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/com_console/app.h -------------------------------------------------------------------------------- /apps/examples/com_console/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/com_console/console.c -------------------------------------------------------------------------------- /apps/examples/com_console/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/com_console/console.h -------------------------------------------------------------------------------- /apps/examples/cv_autotune/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/cv_autotune/Makefile -------------------------------------------------------------------------------- /apps/examples/cv_autotune/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/cv_autotune/README.txt -------------------------------------------------------------------------------- /apps/examples/cv_autotune/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/cv_autotune/app.c -------------------------------------------------------------------------------- /apps/examples/cv_autotune/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/cv_autotune/app.h -------------------------------------------------------------------------------- /apps/examples/dmx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/Makefile -------------------------------------------------------------------------------- /apps/examples/dmx/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/app.c -------------------------------------------------------------------------------- /apps/examples/dmx/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/app.h -------------------------------------------------------------------------------- /apps/examples/dmx/mios32_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/mios32_config.h -------------------------------------------------------------------------------- /apps/examples/dmx/test/Art-Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/Art-Net.h -------------------------------------------------------------------------------- /apps/examples/dmx/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/Makefile -------------------------------------------------------------------------------- /apps/examples/dmx/test/RDM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/RDM.h -------------------------------------------------------------------------------- /apps/examples/dmx/test/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/app.c -------------------------------------------------------------------------------- /apps/examples/dmx/test/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/app.h -------------------------------------------------------------------------------- /apps/examples/dmx/test/chase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/chase.h -------------------------------------------------------------------------------- /apps/examples/dmx/test/dhcpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/dhcpc.c -------------------------------------------------------------------------------- /apps/examples/dmx/test/dhcpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/dhcpc.h -------------------------------------------------------------------------------- /apps/examples/dmx/test/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/fs.c -------------------------------------------------------------------------------- /apps/examples/dmx/test/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/fs.h -------------------------------------------------------------------------------- /apps/examples/dmx/test/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/shell.c -------------------------------------------------------------------------------- /apps/examples/dmx/test/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/shell.h -------------------------------------------------------------------------------- /apps/examples/dmx/test/telnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/telnet.c -------------------------------------------------------------------------------- /apps/examples/dmx/test/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/telnet.h -------------------------------------------------------------------------------- /apps/examples/dmx/test/telnetd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/telnetd.c -------------------------------------------------------------------------------- /apps/examples/dmx/test/telnetd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/telnetd.h -------------------------------------------------------------------------------- /apps/examples/dmx/test/uip-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/uip-conf.h -------------------------------------------------------------------------------- /apps/examples/dmx/test/uip_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/uip_task.c -------------------------------------------------------------------------------- /apps/examples/dmx/test/uip_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/uip_task.h -------------------------------------------------------------------------------- /apps/examples/dmx/test/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/xml.c -------------------------------------------------------------------------------- /apps/examples/dmx/test/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/dmx/test/xml.h -------------------------------------------------------------------------------- /apps/examples/ethernet/osc/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/ethernet/osc/app.c -------------------------------------------------------------------------------- /apps/examples/ethernet/osc/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/ethernet/osc/app.h -------------------------------------------------------------------------------- /apps/examples/ethernet/osc/dhcpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/ethernet/osc/dhcpc.c -------------------------------------------------------------------------------- /apps/examples/ethernet/osc/dhcpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/ethernet/osc/dhcpc.h -------------------------------------------------------------------------------- /apps/examples/ethernet/osc/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/ethernet/osc/shell.c -------------------------------------------------------------------------------- /apps/examples/ethernet/osc/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/ethernet/osc/shell.h -------------------------------------------------------------------------------- /apps/examples/ethernet/webserver/htdocs/footer.HTM: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/examples/max72xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/max72xx/Makefile -------------------------------------------------------------------------------- /apps/examples/max72xx/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/max72xx/README.txt -------------------------------------------------------------------------------- /apps/examples/max72xx/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/max72xx/app.c -------------------------------------------------------------------------------- /apps/examples/max72xx/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/max72xx/app.h -------------------------------------------------------------------------------- /apps/examples/mbnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/mbnet/Makefile -------------------------------------------------------------------------------- /apps/examples/mbnet/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/mbnet/README.txt -------------------------------------------------------------------------------- /apps/examples/mbnet/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/mbnet/app.c -------------------------------------------------------------------------------- /apps/examples/mbnet/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/mbnet/app.h -------------------------------------------------------------------------------- /apps/examples/mbnet/mbnet_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/mbnet/mbnet_task.c -------------------------------------------------------------------------------- /apps/examples/mbnet/mbnet_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/mbnet/mbnet_task.h -------------------------------------------------------------------------------- /apps/examples/mbnet/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/mbnet/terminal.c -------------------------------------------------------------------------------- /apps/examples/mbnet/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/mbnet/terminal.h -------------------------------------------------------------------------------- /apps/examples/microvga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/microvga/Makefile -------------------------------------------------------------------------------- /apps/examples/microvga/aa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/microvga/aa.c -------------------------------------------------------------------------------- /apps/examples/microvga/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/microvga/app.c -------------------------------------------------------------------------------- /apps/examples/microvga/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/microvga/app.h -------------------------------------------------------------------------------- /apps/examples/microvga/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/microvga/main.c -------------------------------------------------------------------------------- /apps/examples/midi_console/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/midi_console/app.c -------------------------------------------------------------------------------- /apps/examples/midi_console/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/midi_console/app.h -------------------------------------------------------------------------------- /apps/examples/speech_synth/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/speech_synth/app.c -------------------------------------------------------------------------------- /apps/examples/speech_synth/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/speech_synth/app.h -------------------------------------------------------------------------------- /apps/examples/speech_synth/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/speech_synth/synth.c -------------------------------------------------------------------------------- /apps/examples/speech_synth/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/speech_synth/synth.h -------------------------------------------------------------------------------- /apps/examples/speech_synth/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/speech_synth/tasks.h -------------------------------------------------------------------------------- /apps/examples/srio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/srio/Makefile -------------------------------------------------------------------------------- /apps/examples/srio/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/srio/README.txt -------------------------------------------------------------------------------- /apps/examples/srio/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/srio/app.c -------------------------------------------------------------------------------- /apps/examples/srio/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/srio/app.h -------------------------------------------------------------------------------- /apps/examples/srio/mios32_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/srio/mios32_config.h -------------------------------------------------------------------------------- /apps/examples/uwindows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/uwindows/Makefile -------------------------------------------------------------------------------- /apps/examples/uwindows/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/uwindows/README.txt -------------------------------------------------------------------------------- /apps/examples/uwindows/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/uwindows/app.c -------------------------------------------------------------------------------- /apps/examples/uwindows/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/examples/uwindows/app.h -------------------------------------------------------------------------------- /apps/mios32_test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/mios32_test/README.txt -------------------------------------------------------------------------------- /apps/mios32_test/bs_rw_check/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/mios32_test/bs_rw_check/app.c -------------------------------------------------------------------------------- /apps/mios32_test/bs_rw_check/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/mios32_test/bs_rw_check/app.h -------------------------------------------------------------------------------- /apps/mios32_test/com_terminal_esp8266/fw/README: -------------------------------------------------------------------------------- 1 | My custom firmware: MBHP_WIFI_BRIDGE 2 | 3 | Documentation: TODO 4 | -------------------------------------------------------------------------------- /apps/mios32_test/rtc_check/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/mios32_test/rtc_check/app.c -------------------------------------------------------------------------------- /apps/mios32_test/rtc_check/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/mios32_test/rtc_check/app.h -------------------------------------------------------------------------------- /apps/misc/rgb_led_controller/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/rgb_led_controller/app.c -------------------------------------------------------------------------------- /apps/misc/rgb_led_controller/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/rgb_led_controller/app.h -------------------------------------------------------------------------------- /apps/misc/usb_midi_2x2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_2x2/Makefile -------------------------------------------------------------------------------- /apps/misc/usb_midi_2x2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_2x2/README.txt -------------------------------------------------------------------------------- /apps/misc/usb_midi_2x2/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_2x2/app.c -------------------------------------------------------------------------------- /apps/misc/usb_midi_2x2/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_2x2/app.h -------------------------------------------------------------------------------- /apps/misc/usb_midi_2x2/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_2x2/release.sh -------------------------------------------------------------------------------- /apps/misc/usb_midi_2x2/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_2x2/terminal.c -------------------------------------------------------------------------------- /apps/misc/usb_midi_2x2/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_2x2/terminal.h -------------------------------------------------------------------------------- /apps/misc/usb_midi_4x4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_4x4/Makefile -------------------------------------------------------------------------------- /apps/misc/usb_midi_4x4/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_4x4/README.txt -------------------------------------------------------------------------------- /apps/misc/usb_midi_4x4/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_4x4/app.c -------------------------------------------------------------------------------- /apps/misc/usb_midi_4x4/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_4x4/app.h -------------------------------------------------------------------------------- /apps/misc/usb_midi_4x4/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_4x4/release.sh -------------------------------------------------------------------------------- /apps/misc/usb_midi_4x4/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_4x4/terminal.c -------------------------------------------------------------------------------- /apps/misc/usb_midi_4x4/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_midi_4x4/terminal.h -------------------------------------------------------------------------------- /apps/misc/usb_osc_midi_proxy/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_osc_midi_proxy/app.c -------------------------------------------------------------------------------- /apps/misc/usb_osc_midi_proxy/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/misc/usb_osc_midi_proxy/app.h -------------------------------------------------------------------------------- /apps/quickies/csc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/quickies/csc/Makefile -------------------------------------------------------------------------------- /apps/quickies/csc/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/quickies/csc/app.c -------------------------------------------------------------------------------- /apps/quickies/csc/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/quickies/csc/app.h -------------------------------------------------------------------------------- /apps/quickies/csc/mios32_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/quickies/csc/mios32_config.h -------------------------------------------------------------------------------- /apps/quickies/fast_srio_scan/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/quickies/fast_srio_scan/app.c -------------------------------------------------------------------------------- /apps/quickies/fast_srio_scan/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/quickies/fast_srio_scan/app.h -------------------------------------------------------------------------------- /apps/sequencers/LoopA/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/.gitignore -------------------------------------------------------------------------------- /apps/sequencers/LoopA/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/Makefile -------------------------------------------------------------------------------- /apps/sequencers/LoopA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/README.txt -------------------------------------------------------------------------------- /apps/sequencers/LoopA/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/app.c -------------------------------------------------------------------------------- /apps/sequencers/LoopA/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/app.h -------------------------------------------------------------------------------- /apps/sequencers/LoopA/app_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/app_lcd.c -------------------------------------------------------------------------------- /apps/sequencers/LoopA/app_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/app_lcd.h -------------------------------------------------------------------------------- /apps/sequencers/LoopA/app_lcd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/app_lcd.mk -------------------------------------------------------------------------------- /apps/sequencers/LoopA/attic/seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/attic/seq.c -------------------------------------------------------------------------------- /apps/sequencers/LoopA/attic/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/attic/seq.h -------------------------------------------------------------------------------- /apps/sequencers/LoopA/convPNM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/convPNM.C -------------------------------------------------------------------------------- /apps/sequencers/LoopA/hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/hardware.c -------------------------------------------------------------------------------- /apps/sequencers/LoopA/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/hardware.h -------------------------------------------------------------------------------- /apps/sequencers/LoopA/loopa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/loopa.c -------------------------------------------------------------------------------- /apps/sequencers/LoopA/loopa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/loopa.h -------------------------------------------------------------------------------- /apps/sequencers/LoopA/midi_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/midi_out.c -------------------------------------------------------------------------------- /apps/sequencers/LoopA/midi_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/midi_out.h -------------------------------------------------------------------------------- /apps/sequencers/LoopA/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/screen.c -------------------------------------------------------------------------------- /apps/sequencers/LoopA/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/screen.h -------------------------------------------------------------------------------- /apps/sequencers/LoopA/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/setup.c -------------------------------------------------------------------------------- /apps/sequencers/LoopA/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/setup.h -------------------------------------------------------------------------------- /apps/sequencers/LoopA/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/tasks.h -------------------------------------------------------------------------------- /apps/sequencers/LoopA/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/terminal.c -------------------------------------------------------------------------------- /apps/sequencers/LoopA/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/terminal.h -------------------------------------------------------------------------------- /apps/sequencers/LoopA/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/ui.c -------------------------------------------------------------------------------- /apps/sequencers/LoopA/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/ui.h -------------------------------------------------------------------------------- /apps/sequencers/LoopA/voxelspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/voxelspace.c -------------------------------------------------------------------------------- /apps/sequencers/LoopA/voxelspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/LoopA/voxelspace.h -------------------------------------------------------------------------------- /apps/sequencers/MB909/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/MB909/Makefile -------------------------------------------------------------------------------- /apps/sequencers/MB909/core/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/MB909/core/app.c -------------------------------------------------------------------------------- /apps/sequencers/MB909/core/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/MB909/core/app.h -------------------------------------------------------------------------------- /apps/sequencers/MB909/core/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/MB909/core/tasks.h -------------------------------------------------------------------------------- /apps/sequencers/vX32/core/inc/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/vX32/core/inc/ui.h -------------------------------------------------------------------------------- /apps/sequencers/vX32/core/src/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/sequencers/vX32/core/src/ui.c -------------------------------------------------------------------------------- /apps/synthesizers/SD card sample player/SD card contents/player.cfg: -------------------------------------------------------------------------------- 1 | midichannel 1 2 | lee_hw 1 -------------------------------------------------------------------------------- /apps/synthesizers/goom/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/synthesizers/goom/LICENCE -------------------------------------------------------------------------------- /apps/synthesizers/goom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/synthesizers/goom/Makefile -------------------------------------------------------------------------------- /apps/synthesizers/goom/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/synthesizers/goom/README.txt -------------------------------------------------------------------------------- /apps/synthesizers/goom/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/synthesizers/goom/src/app.c -------------------------------------------------------------------------------- /apps/synthesizers/goom/src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/synthesizers/goom/src/app.h -------------------------------------------------------------------------------- /apps/synthesizers/goom/src/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/synthesizers/goom/src/synth.c -------------------------------------------------------------------------------- /apps/synthesizers/goom/src/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/synthesizers/goom/src/synth.h -------------------------------------------------------------------------------- /apps/synthesizers/goom/src/wave.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/synthesizers/goom/src/wave.s -------------------------------------------------------------------------------- /apps/synthesizers/nI2S_synth/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/synthesizers/nI2S_synth/app.c -------------------------------------------------------------------------------- /apps/synthesizers/nI2S_synth/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/synthesizers/nI2S_synth/app.h -------------------------------------------------------------------------------- /apps/synthesizers/nI2S_synth/lfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/synthesizers/nI2S_synth/lfo.c -------------------------------------------------------------------------------- /apps/synthesizers/nI2S_synth/lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/synthesizers/nI2S_synth/lfo.h -------------------------------------------------------------------------------- /apps/templates/app_skeleton/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/templates/app_skeleton/app.c -------------------------------------------------------------------------------- /apps/templates/app_skeleton/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/templates/app_skeleton/app.h -------------------------------------------------------------------------------- /apps/tutorials/009_dout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/009_dout/Makefile -------------------------------------------------------------------------------- /apps/tutorials/009_dout/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/009_dout/README.txt -------------------------------------------------------------------------------- /apps/tutorials/009_dout/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/009_dout/app.c -------------------------------------------------------------------------------- /apps/tutorials/009_dout/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/009_dout/app.h -------------------------------------------------------------------------------- /apps/tutorials/010_din/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/010_din/Makefile -------------------------------------------------------------------------------- /apps/tutorials/010_din/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/010_din/README.txt -------------------------------------------------------------------------------- /apps/tutorials/010_din/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/010_din/app.c -------------------------------------------------------------------------------- /apps/tutorials/010_din/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/010_din/app.h -------------------------------------------------------------------------------- /apps/tutorials/011_ain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/011_ain/Makefile -------------------------------------------------------------------------------- /apps/tutorials/011_ain/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/011_ain/README.txt -------------------------------------------------------------------------------- /apps/tutorials/011_ain/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/011_ain/app.c -------------------------------------------------------------------------------- /apps/tutorials/011_ain/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/011_ain/app.h -------------------------------------------------------------------------------- /apps/tutorials/012_ain_muxed/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/012_ain_muxed/app.c -------------------------------------------------------------------------------- /apps/tutorials/012_ain_muxed/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/012_ain_muxed/app.h -------------------------------------------------------------------------------- /apps/tutorials/013_mf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/013_mf/Makefile -------------------------------------------------------------------------------- /apps/tutorials/013_mf/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/013_mf/README.txt -------------------------------------------------------------------------------- /apps/tutorials/013_mf/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/013_mf/app.c -------------------------------------------------------------------------------- /apps/tutorials/013_mf/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/013_mf/app.h -------------------------------------------------------------------------------- /apps/tutorials/016_aout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/016_aout/Makefile -------------------------------------------------------------------------------- /apps/tutorials/016_aout/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/016_aout/README.txt -------------------------------------------------------------------------------- /apps/tutorials/016_aout/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/016_aout/app.c -------------------------------------------------------------------------------- /apps/tutorials/016_aout/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/016_aout/app.h -------------------------------------------------------------------------------- /apps/tutorials/017_sequencer/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/017_sequencer/app.c -------------------------------------------------------------------------------- /apps/tutorials/017_sequencer/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/017_sequencer/app.h -------------------------------------------------------------------------------- /apps/tutorials/017_sequencer/seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/017_sequencer/seq.c -------------------------------------------------------------------------------- /apps/tutorials/017_sequencer/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/017_sequencer/seq.h -------------------------------------------------------------------------------- /apps/tutorials/020_lcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/020_lcd/Makefile -------------------------------------------------------------------------------- /apps/tutorials/020_lcd/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/020_lcd/README.txt -------------------------------------------------------------------------------- /apps/tutorials/020_lcd/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/020_lcd/app.c -------------------------------------------------------------------------------- /apps/tutorials/020_lcd/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/020_lcd/app.h -------------------------------------------------------------------------------- /apps/tutorials/021_glcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/021_glcd/Makefile -------------------------------------------------------------------------------- /apps/tutorials/021_glcd/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/021_glcd/README.txt -------------------------------------------------------------------------------- /apps/tutorials/021_glcd/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/021_glcd/app.c -------------------------------------------------------------------------------- /apps/tutorials/021_glcd/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/021_glcd/app.h -------------------------------------------------------------------------------- /apps/tutorials/023_mutex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/023_mutex/Makefile -------------------------------------------------------------------------------- /apps/tutorials/023_mutex/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/023_mutex/app.c -------------------------------------------------------------------------------- /apps/tutorials/023_mutex/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/023_mutex/app.h -------------------------------------------------------------------------------- /apps/tutorials/024_i2s_synth/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/024_i2s_synth/app.c -------------------------------------------------------------------------------- /apps/tutorials/024_i2s_synth/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/024_i2s_synth/app.h -------------------------------------------------------------------------------- /apps/tutorials/026_dpot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/026_dpot/Makefile -------------------------------------------------------------------------------- /apps/tutorials/026_dpot/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/026_dpot/README.txt -------------------------------------------------------------------------------- /apps/tutorials/026_dpot/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/026_dpot/app.c -------------------------------------------------------------------------------- /apps/tutorials/026_dpot/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/026_dpot/app.h -------------------------------------------------------------------------------- /apps/tutorials/027_scs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/027_scs/Makefile -------------------------------------------------------------------------------- /apps/tutorials/027_scs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/027_scs/README.txt -------------------------------------------------------------------------------- /apps/tutorials/027_scs/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/027_scs/app.c -------------------------------------------------------------------------------- /apps/tutorials/027_scs/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/027_scs/app.h -------------------------------------------------------------------------------- /apps/tutorials/027_scs/cc_labels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/027_scs/cc_labels.c -------------------------------------------------------------------------------- /apps/tutorials/027_scs/cc_labels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/027_scs/cc_labels.h -------------------------------------------------------------------------------- /apps/tutorials/028_osc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/028_osc/Makefile -------------------------------------------------------------------------------- /apps/tutorials/028_osc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/028_osc/README.txt -------------------------------------------------------------------------------- /apps/tutorials/028_osc/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/028_osc/app.c -------------------------------------------------------------------------------- /apps/tutorials/028_osc/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/028_osc/app.h -------------------------------------------------------------------------------- /apps/tutorials/028_osc/presets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/028_osc/presets.c -------------------------------------------------------------------------------- /apps/tutorials/028_osc/presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/028_osc/presets.h -------------------------------------------------------------------------------- /apps/tutorials/028_osc/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/028_osc/shell.c -------------------------------------------------------------------------------- /apps/tutorials/028_osc/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/028_osc/terminal.c -------------------------------------------------------------------------------- /apps/tutorials/028_osc/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/apps/tutorials/028_osc/terminal.h -------------------------------------------------------------------------------- /bin/avstack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bin/avstack.pl -------------------------------------------------------------------------------- /bootloader/src/LPC17xx_bsl.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/LPC17xx_bsl.ld -------------------------------------------------------------------------------- /bootloader/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/Makefile -------------------------------------------------------------------------------- /bootloader/src/Makefile.bsl_dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/Makefile.bsl_dummy -------------------------------------------------------------------------------- /bootloader/src/STM32F103_bsl.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/STM32F103_bsl.ld -------------------------------------------------------------------------------- /bootloader/src/STM32F407_bsl.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/STM32F407_bsl.ld -------------------------------------------------------------------------------- /bootloader/src/bsl_sysex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/bsl_sysex.c -------------------------------------------------------------------------------- /bootloader/src/bsl_sysex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/bsl_sysex.h -------------------------------------------------------------------------------- /bootloader/src/gen_inc_file.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/gen_inc_file.pl -------------------------------------------------------------------------------- /bootloader/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/main.c -------------------------------------------------------------------------------- /bootloader/src/main_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/main_dummy.c -------------------------------------------------------------------------------- /bootloader/src/mios32_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/mios32_config.h -------------------------------------------------------------------------------- /bootloader/src/startup_LPC17xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/startup_LPC17xx.c -------------------------------------------------------------------------------- /bootloader/src/startup_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/startup_stm32f4xx.c -------------------------------------------------------------------------------- /bootloader/src/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/stm32f10x_conf.h -------------------------------------------------------------------------------- /bootloader/src/stm32f4xx_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/src/stm32f4xx_conf.h -------------------------------------------------------------------------------- /bootloader/updater/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/updater/Makefile -------------------------------------------------------------------------------- /bootloader/updater/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/updater/README.txt -------------------------------------------------------------------------------- /bootloader/updater/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/updater/app.c -------------------------------------------------------------------------------- /bootloader/updater/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/updater/app.h -------------------------------------------------------------------------------- /bootloader/updater/mios32_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/updater/mios32_config.h -------------------------------------------------------------------------------- /bootloader/updater/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/bootloader/updater/release.sh -------------------------------------------------------------------------------- /doc/MEMO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/doc/MEMO -------------------------------------------------------------------------------- /doc/mios32/MIOS32_CONFIG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/doc/mios32/MIOS32_CONFIG.txt -------------------------------------------------------------------------------- /drivers/LPC17xx/CMSIS/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/drivers/LPC17xx/CMSIS/history.txt -------------------------------------------------------------------------------- /drivers/LPC17xx/iap/inc/sbl_iap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/drivers/LPC17xx/iap/inc/sbl_iap.h -------------------------------------------------------------------------------- /drivers/MacOS/PYMIDI/PYMIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/drivers/MacOS/PYMIDI/PYMIDI.h -------------------------------------------------------------------------------- /drivers/MacOS/PYMIDI/PYMIDIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/drivers/MacOS/PYMIDI/PYMIDIUtils.h -------------------------------------------------------------------------------- /drivers/MacOS/PYMIDI/PYMIDIUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/drivers/MacOS/PYMIDI/PYMIDIUtils.m -------------------------------------------------------------------------------- /drivers/gnustep/portmidi/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/drivers/gnustep/portmidi/Doxyfile -------------------------------------------------------------------------------- /etc/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/doxygen/Doxyfile -------------------------------------------------------------------------------- /etc/egypt/dot_output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/egypt/dot_output.sh -------------------------------------------------------------------------------- /etc/egypt/egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/egypt/egypt -------------------------------------------------------------------------------- /etc/inf/mios32_com.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/inf/mios32_com.inf -------------------------------------------------------------------------------- /etc/ld/LPC17xx/LPC1768.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/ld/LPC17xx/LPC1768.ld -------------------------------------------------------------------------------- /etc/ld/LPC17xx/LPC1769.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/ld/LPC17xx/LPC1769.ld -------------------------------------------------------------------------------- /etc/ld/STM32F10x/STM32F103CB.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/ld/STM32F10x/STM32F103CB.ld -------------------------------------------------------------------------------- /etc/ld/STM32F10x/STM32F103RB.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/ld/STM32F10x/STM32F103RB.ld -------------------------------------------------------------------------------- /etc/ld/STM32F10x/STM32F103RE.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/ld/STM32F10x/STM32F103RE.ld -------------------------------------------------------------------------------- /etc/ld/STM32F10x/STM32F105RC.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/ld/STM32F10x/STM32F105RC.ld -------------------------------------------------------------------------------- /etc/ld/STM32F4xx/STM32F407VG.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/ld/STM32F4xx/STM32F407VG.ld -------------------------------------------------------------------------------- /etc/ld/STR9x/STR91x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/ld/STR9x/STR91x.ld -------------------------------------------------------------------------------- /etc/openocd/interface/amontec.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/openocd/interface/amontec.cfg -------------------------------------------------------------------------------- /etc/openocd/interface/comstick.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/openocd/interface/comstick.cfg -------------------------------------------------------------------------------- /etc/openocd/interface/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/openocd/interface/openocd.cfg -------------------------------------------------------------------------------- /etc/openocd/interface/rlink.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/etc/openocd/interface/rlink.cfg -------------------------------------------------------------------------------- /include/makefile/MIOSJUCEcommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/makefile/MIOSJUCEcommon.mk -------------------------------------------------------------------------------- /include/makefile/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/makefile/common.mk -------------------------------------------------------------------------------- /include/mios32/mios32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32.h -------------------------------------------------------------------------------- /include/mios32/mios32_ain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_ain.h -------------------------------------------------------------------------------- /include/mios32/mios32_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_board.h -------------------------------------------------------------------------------- /include/mios32/mios32_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_com.h -------------------------------------------------------------------------------- /include/mios32/mios32_datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_datatypes.h -------------------------------------------------------------------------------- /include/mios32/mios32_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_delay.h -------------------------------------------------------------------------------- /include/mios32/mios32_din.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_din.h -------------------------------------------------------------------------------- /include/mios32/mios32_dout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_dout.h -------------------------------------------------------------------------------- /include/mios32/mios32_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_enc.h -------------------------------------------------------------------------------- /include/mios32/mios32_enc28j60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_enc28j60.h -------------------------------------------------------------------------------- /include/mios32/mios32_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_i2s.h -------------------------------------------------------------------------------- /include/mios32/mios32_iic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_iic.h -------------------------------------------------------------------------------- /include/mios32/mios32_iic_bs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_iic_bs.h -------------------------------------------------------------------------------- /include/mios32/mios32_iic_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_iic_midi.h -------------------------------------------------------------------------------- /include/mios32/mios32_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_irq.h -------------------------------------------------------------------------------- /include/mios32/mios32_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_lcd.h -------------------------------------------------------------------------------- /include/mios32/mios32_mf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_mf.h -------------------------------------------------------------------------------- /include/mios32/mios32_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_midi.h -------------------------------------------------------------------------------- /include/mios32/mios32_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_osc.h -------------------------------------------------------------------------------- /include/mios32/mios32_sdcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_sdcard.h -------------------------------------------------------------------------------- /include/mios32/mios32_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_spi.h -------------------------------------------------------------------------------- /include/mios32/mios32_spi_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_spi_midi.h -------------------------------------------------------------------------------- /include/mios32/mios32_srio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_srio.h -------------------------------------------------------------------------------- /include/mios32/mios32_stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_stopwatch.h -------------------------------------------------------------------------------- /include/mios32/mios32_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_sys.h -------------------------------------------------------------------------------- /include/mios32/mios32_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_timer.h -------------------------------------------------------------------------------- /include/mios32/mios32_timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_timestamp.h -------------------------------------------------------------------------------- /include/mios32/mios32_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_uart.h -------------------------------------------------------------------------------- /include/mios32/mios32_uart_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_uart_midi.h -------------------------------------------------------------------------------- /include/mios32/mios32_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_usb.h -------------------------------------------------------------------------------- /include/mios32/mios32_usb_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_usb_com.h -------------------------------------------------------------------------------- /include/mios32/mios32_usb_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/include/mios32/mios32_usb_midi.h -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_ain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_ain.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_board.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_bsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_bsl.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_delay.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_family.mk -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_i2s.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_iic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_iic.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_irq.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_spi.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_stopwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_stopwatch.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_sys.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_timer.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_uart.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_usb.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_usb_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_usb_com.c -------------------------------------------------------------------------------- /mios32/LPC17xx/mios32_usb_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/LPC17xx/mios32_usb_midi.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/FreeRTOS/Source/portable/GCC/MIOSJUCE/port.c: -------------------------------------------------------------------------------- 1 | /* 2 | FreeRTOS Emu 3 | */ 4 | 5 | -------------------------------------------------------------------------------- /mios32/MIOSJUCE/c++/JUCEmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/c++/JUCEmidi.cpp -------------------------------------------------------------------------------- /mios32/MIOSJUCE/c++/JUCEmios32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/c++/JUCEmios32.cpp -------------------------------------------------------------------------------- /mios32/MIOSJUCE/c++/JUCEtimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/c++/JUCEtimer.cpp -------------------------------------------------------------------------------- /mios32/MIOSJUCE/c++/mios32_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/c++/mios32_midi.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/c++/mios32_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/c++/mios32_timer.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/include/JUCEmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/include/JUCEmidi.h -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_ain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_ain.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_board.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_bsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_bsl.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_delay.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_family.mk -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_i2s.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_iic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_iic.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_irq.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_spi.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_stopwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_stopwatch.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_sys.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_timer.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_uart.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_usb.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_usb_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_usb_com.c -------------------------------------------------------------------------------- /mios32/MIOSJUCE/mios32_usb_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/MIOSJUCE/mios32_usb_midi.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_ain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_ain.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_board.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_bsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_bsl.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_delay.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_family.mk -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_i2s.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_iic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_iic.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_irq.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_spi.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_sys.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_timer.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_uart.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_usb.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_usb_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_usb_com.c -------------------------------------------------------------------------------- /mios32/STM32F10x/mios32_usb_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/mios32_usb_midi.c -------------------------------------------------------------------------------- /mios32/STM32F10x/usb_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/usb_conf.h -------------------------------------------------------------------------------- /mios32/STM32F10x/usb_istr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F10x/usb_istr.h -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_ain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_ain.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_board.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_bsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_bsl.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_delay.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_family.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_family.mk -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_i2s.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_iic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_iic.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_irq.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_spi.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_sys.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_timer.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_uart.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_usb.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_usb_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_usb_com.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/mios32_usb_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/mios32_usb_midi.c -------------------------------------------------------------------------------- /mios32/STM32F4xx/usb_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/usb_conf.h -------------------------------------------------------------------------------- /mios32/STM32F4xx/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/usbd_conf.h -------------------------------------------------------------------------------- /mios32/STM32F4xx/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/usbd_desc.h -------------------------------------------------------------------------------- /mios32/STM32F4xx/usbh_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/STM32F4xx/usbh_conf.h -------------------------------------------------------------------------------- /mios32/common/mios32_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_com.c -------------------------------------------------------------------------------- /mios32/common/mios32_din.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_din.c -------------------------------------------------------------------------------- /mios32/common/mios32_dout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_dout.c -------------------------------------------------------------------------------- /mios32/common/mios32_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_enc.c -------------------------------------------------------------------------------- /mios32/common/mios32_enc28j60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_enc28j60.c -------------------------------------------------------------------------------- /mios32/common/mios32_iic_bs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_iic_bs.c -------------------------------------------------------------------------------- /mios32/common/mios32_iic_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_iic_midi.c -------------------------------------------------------------------------------- /mios32/common/mios32_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_lcd.c -------------------------------------------------------------------------------- /mios32/common/mios32_mf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_mf.c -------------------------------------------------------------------------------- /mios32/common/mios32_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_midi.c -------------------------------------------------------------------------------- /mios32/common/mios32_osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_osc.c -------------------------------------------------------------------------------- /mios32/common/mios32_sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_sdcard.c -------------------------------------------------------------------------------- /mios32/common/mios32_spi_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_spi_midi.c -------------------------------------------------------------------------------- /mios32/common/mios32_srio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_srio.c -------------------------------------------------------------------------------- /mios32/common/mios32_timestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_timestamp.c -------------------------------------------------------------------------------- /mios32/common/mios32_uart_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/mios32_uart_midi.c -------------------------------------------------------------------------------- /mios32/common/printf-stdarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/common/printf-stdarg.c -------------------------------------------------------------------------------- /mios32/mios32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/mios32/mios32.mk -------------------------------------------------------------------------------- /modules/ainser/ainser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/ainser/ainser.c -------------------------------------------------------------------------------- /modules/ainser/ainser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/ainser/ainser.h -------------------------------------------------------------------------------- /modules/ainser/ainser.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/ainser/ainser.mk -------------------------------------------------------------------------------- /modules/aout/aout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/aout/aout.c -------------------------------------------------------------------------------- /modules/aout/aout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/aout/aout.h -------------------------------------------------------------------------------- /modules/aout/aout.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/aout/aout.mk -------------------------------------------------------------------------------- /modules/aout/aout_hz_v_table.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/aout/aout_hz_v_table.inc -------------------------------------------------------------------------------- /modules/aout/utils/hz_v_table.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/aout/utils/hz_v_table.pl -------------------------------------------------------------------------------- /modules/app_lcd/ipad/CLcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/ipad/CLcd.cpp -------------------------------------------------------------------------------- /modules/app_lcd/ipad/CLcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/ipad/CLcd.h -------------------------------------------------------------------------------- /modules/app_lcd/ipad/CLcdView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/ipad/CLcdView.h -------------------------------------------------------------------------------- /modules/app_lcd/ipad/CLcdView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/ipad/CLcdView.mm -------------------------------------------------------------------------------- /modules/app_lcd/ipad/app_lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/ipad/app_lcd.cpp -------------------------------------------------------------------------------- /modules/app_lcd/ipad/app_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/ipad/app_lcd.h -------------------------------------------------------------------------------- /modules/app_lcd/juce/CLCDView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/juce/CLCDView.cpp -------------------------------------------------------------------------------- /modules/app_lcd/juce/CLCDView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/juce/CLCDView.h -------------------------------------------------------------------------------- /modules/app_lcd/juce/app_lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/juce/app_lcd.cpp -------------------------------------------------------------------------------- /modules/app_lcd/juce/app_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/juce/app_lcd.h -------------------------------------------------------------------------------- /modules/app_lcd/macos/CLcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/macos/CLcd.cpp -------------------------------------------------------------------------------- /modules/app_lcd/macos/CLcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/macos/CLcd.h -------------------------------------------------------------------------------- /modules/app_lcd/macos/CLcdView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/macos/CLcdView.h -------------------------------------------------------------------------------- /modules/app_lcd/macos/CLcdView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/macos/CLcdView.mm -------------------------------------------------------------------------------- /modules/app_lcd/macos/app_lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/macos/app_lcd.cpp -------------------------------------------------------------------------------- /modules/app_lcd/macos/app_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/macos/app_lcd.h -------------------------------------------------------------------------------- /modules/app_lcd/pcd8544/app_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/pcd8544/app_lcd.c -------------------------------------------------------------------------------- /modules/app_lcd/pcd8544/app_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/pcd8544/app_lcd.h -------------------------------------------------------------------------------- /modules/app_lcd/pcd8544/app_lcd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/pcd8544/app_lcd.mk -------------------------------------------------------------------------------- /modules/app_lcd/ssd1322/app_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/ssd1322/app_lcd.c -------------------------------------------------------------------------------- /modules/app_lcd/ssd1322/app_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/ssd1322/app_lcd.h -------------------------------------------------------------------------------- /modules/app_lcd/ssd1322/app_lcd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/ssd1322/app_lcd.mk -------------------------------------------------------------------------------- /modules/app_lcd/st7637/app_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/st7637/app_lcd.c -------------------------------------------------------------------------------- /modules/app_lcd/st7637/app_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/st7637/app_lcd.h -------------------------------------------------------------------------------- /modules/app_lcd/st7637/app_lcd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/st7637/app_lcd.mk -------------------------------------------------------------------------------- /modules/app_lcd/t6963_h/app_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/t6963_h/app_lcd.c -------------------------------------------------------------------------------- /modules/app_lcd/t6963_h/app_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/t6963_h/app_lcd.h -------------------------------------------------------------------------------- /modules/app_lcd/t6963_h/app_lcd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/t6963_h/app_lcd.mk -------------------------------------------------------------------------------- /modules/app_lcd/t6963_v/app_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/t6963_v/app_lcd.c -------------------------------------------------------------------------------- /modules/app_lcd/t6963_v/app_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/t6963_v/app_lcd.h -------------------------------------------------------------------------------- /modules/app_lcd/t6963_v/app_lcd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/t6963_v/app_lcd.mk -------------------------------------------------------------------------------- /modules/app_lcd/uc1610/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/uc1610/README.txt -------------------------------------------------------------------------------- /modules/app_lcd/uc1610/app_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/uc1610/app_lcd.c -------------------------------------------------------------------------------- /modules/app_lcd/uc1610/app_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/uc1610/app_lcd.h -------------------------------------------------------------------------------- /modules/app_lcd/uc1610/app_lcd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/app_lcd/uc1610/app_lcd.mk -------------------------------------------------------------------------------- /modules/blm/blm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm/blm.c -------------------------------------------------------------------------------- /modules/blm/blm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm/blm.h -------------------------------------------------------------------------------- /modules/blm/blm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm/blm.mk -------------------------------------------------------------------------------- /modules/blm_cheapo/blm_cheapo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm_cheapo/blm_cheapo.c -------------------------------------------------------------------------------- /modules/blm_cheapo/blm_cheapo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm_cheapo/blm_cheapo.h -------------------------------------------------------------------------------- /modules/blm_cheapo/blm_cheapo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm_cheapo/blm_cheapo.mk -------------------------------------------------------------------------------- /modules/blm_scalar/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm_scalar/README.txt -------------------------------------------------------------------------------- /modules/blm_scalar/blm_scalar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm_scalar/blm_scalar.c -------------------------------------------------------------------------------- /modules/blm_scalar/blm_scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm_scalar/blm_scalar.h -------------------------------------------------------------------------------- /modules/blm_scalar/blm_scalar.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm_scalar/blm_scalar.mk -------------------------------------------------------------------------------- /modules/blm_x/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm_x/README.txt -------------------------------------------------------------------------------- /modules/blm_x/blm_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm_x/blm_x.c -------------------------------------------------------------------------------- /modules/blm_x/blm_x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm_x/blm_x.h -------------------------------------------------------------------------------- /modules/blm_x/blm_x.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/blm_x/blm_x.mk -------------------------------------------------------------------------------- /modules/buflcd/buflcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/buflcd/buflcd.c -------------------------------------------------------------------------------- /modules/buflcd/buflcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/buflcd/buflcd.h -------------------------------------------------------------------------------- /modules/buflcd/buflcd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/buflcd/buflcd.mk -------------------------------------------------------------------------------- /modules/dmx/dmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dmx/dmx.c -------------------------------------------------------------------------------- /modules/dmx/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dmx/dmx.h -------------------------------------------------------------------------------- /modules/dmx/dmx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dmx/dmx.mk -------------------------------------------------------------------------------- /modules/dosfs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dosfs/README.txt -------------------------------------------------------------------------------- /modules/dosfs/README_1st.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dosfs/README_1st.txt -------------------------------------------------------------------------------- /modules/dosfs/dfs_sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dosfs/dfs_sdcard.c -------------------------------------------------------------------------------- /modules/dosfs/dosfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dosfs/dosfs.c -------------------------------------------------------------------------------- /modules/dosfs/dosfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dosfs/dosfs.h -------------------------------------------------------------------------------- /modules/dosfs/dosfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dosfs/dosfs.mk -------------------------------------------------------------------------------- /modules/dosfs/not_used/hostemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dosfs/not_used/hostemu.c -------------------------------------------------------------------------------- /modules/dosfs/not_used/hostemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dosfs/not_used/hostemu.h -------------------------------------------------------------------------------- /modules/dosfs/not_used/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dosfs/not_used/main.c -------------------------------------------------------------------------------- /modules/dpot/dpot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dpot/dpot.c -------------------------------------------------------------------------------- /modules/dpot/dpot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dpot/dpot.h -------------------------------------------------------------------------------- /modules/dpot/dpot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dpot/dpot.mk -------------------------------------------------------------------------------- /modules/dpot/dpot_mcp41xxx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/dpot/dpot_mcp41xxx.inc -------------------------------------------------------------------------------- /modules/eeprom/LPC17xx/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/eeprom/LPC17xx/eeprom.c -------------------------------------------------------------------------------- /modules/eeprom/STM32F10x/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/eeprom/STM32F10x/eeprom.c -------------------------------------------------------------------------------- /modules/eeprom/STM32F4xx/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/eeprom/STM32F4xx/eeprom.c -------------------------------------------------------------------------------- /modules/eeprom/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/eeprom/eeprom.h -------------------------------------------------------------------------------- /modules/eeprom/eeprom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/eeprom/eeprom.mk -------------------------------------------------------------------------------- /modules/esp8266/ESP8266_AT_V0.51/README: -------------------------------------------------------------------------------- 1 | Downloaded from http://bbs.espressif.com/viewtopic.php?f=46&t=1451 2 | -------------------------------------------------------------------------------- /modules/esp8266/esp8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/esp8266/esp8266.c -------------------------------------------------------------------------------- /modules/esp8266/esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/esp8266/esp8266.h -------------------------------------------------------------------------------- /modules/esp8266/esp8266.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/esp8266/esp8266.mk -------------------------------------------------------------------------------- /modules/esp8266/esp8266_fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/esp8266/esp8266_fw.c -------------------------------------------------------------------------------- /modules/esp8266/esp8266_fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/esp8266/esp8266_fw.h -------------------------------------------------------------------------------- /modules/esp8266/tools/bin2c.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/esp8266/tools/bin2c.pl -------------------------------------------------------------------------------- /modules/fatfs/README_1st.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/README_1st.txt -------------------------------------------------------------------------------- /modules/fatfs/doc/00index_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/00index_e.html -------------------------------------------------------------------------------- /modules/fatfs/doc/00index_j.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/00index_j.html -------------------------------------------------------------------------------- /modules/fatfs/doc/css_e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/css_e.css -------------------------------------------------------------------------------- /modules/fatfs/doc/css_j.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/css_j.css -------------------------------------------------------------------------------- /modules/fatfs/doc/en/appnote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/appnote.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/chdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/chdir.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/chdrive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/chdrive.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/chmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/chmod.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/close.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/dinit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/dinit.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/dioctl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/dioctl.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/dread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/dread.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/dstat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/dstat.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/dwrite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/dwrite.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/fattime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/fattime.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/filename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/filename.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/forward.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/forward.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/getfree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/getfree.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/gets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/gets.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/lseek.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/lseek.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/mkdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/mkdir.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/mkfs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/mkfs.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/mount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/mount.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/open.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/opendir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/opendir.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/printf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/printf.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/putc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/putc.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/puts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/puts.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/read.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/readdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/readdir.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/rename.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/sdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/sdir.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/sfatfs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/sfatfs.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/sfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/sfile.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/stat.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/sync.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/truncate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/truncate.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/unlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/unlink.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/utime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/utime.html -------------------------------------------------------------------------------- /modules/fatfs/doc/en/write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/en/write.html -------------------------------------------------------------------------------- /modules/fatfs/doc/img/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/img/f1.png -------------------------------------------------------------------------------- /modules/fatfs/doc/img/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/img/f2.png -------------------------------------------------------------------------------- /modules/fatfs/doc/img/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/img/f3.png -------------------------------------------------------------------------------- /modules/fatfs/doc/img/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/img/f4.png -------------------------------------------------------------------------------- /modules/fatfs/doc/img/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/img/f5.png -------------------------------------------------------------------------------- /modules/fatfs/doc/img/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/img/layers.png -------------------------------------------------------------------------------- /modules/fatfs/doc/img/rwtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/img/rwtest.png -------------------------------------------------------------------------------- /modules/fatfs/doc/img/rwtest2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/img/rwtest2.png -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/appnote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/appnote.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/chdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/chdir.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/chdrive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/chdrive.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/chmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/chmod.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/close.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/dinit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/dinit.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/dioctl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/dioctl.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/dread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/dread.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/dstat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/dstat.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/dwrite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/dwrite.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/fattime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/fattime.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/filename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/filename.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/forward.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/forward.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/getfree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/getfree.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/gets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/gets.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/lseek.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/lseek.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/mkdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/mkdir.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/mkfs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/mkfs.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/mount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/mount.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/open.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/opendir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/opendir.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/printf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/printf.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/putc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/putc.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/puts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/puts.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/read.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/readdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/readdir.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/rename.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/sdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/sdir.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/sfatfs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/sfatfs.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/sfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/sfile.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/stat.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/sync.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/truncate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/truncate.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/unlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/unlink.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/utime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/utime.html -------------------------------------------------------------------------------- /modules/fatfs/doc/ja/write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/ja/write.html -------------------------------------------------------------------------------- /modules/fatfs/doc/updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/doc/updates.txt -------------------------------------------------------------------------------- /modules/fatfs/fatfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/fatfs.mk -------------------------------------------------------------------------------- /modules/fatfs/src/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/src/00readme.txt -------------------------------------------------------------------------------- /modules/fatfs/src/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/src/diskio.c -------------------------------------------------------------------------------- /modules/fatfs/src/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/src/diskio.h -------------------------------------------------------------------------------- /modules/fatfs/src/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/src/ff.c -------------------------------------------------------------------------------- /modules/fatfs/src/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/src/ff.h -------------------------------------------------------------------------------- /modules/fatfs/src/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/src/ffconf.h -------------------------------------------------------------------------------- /modules/fatfs/src/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/src/integer.h -------------------------------------------------------------------------------- /modules/fatfs/src/option/cc932.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/src/option/cc932.c -------------------------------------------------------------------------------- /modules/fatfs/src/option/cc936.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/src/option/cc936.c -------------------------------------------------------------------------------- /modules/fatfs/src/option/cc949.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/src/option/cc949.c -------------------------------------------------------------------------------- /modules/fatfs/src/option/cc950.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/src/option/cc950.c -------------------------------------------------------------------------------- /modules/fatfs/src/option/ccsbcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/src/option/ccsbcs.c -------------------------------------------------------------------------------- /modules/fatfs/src/option/syncobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fatfs/src/option/syncobj.c -------------------------------------------------------------------------------- /modules/file/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/file/file.c -------------------------------------------------------------------------------- /modules/file/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/file/file.h -------------------------------------------------------------------------------- /modules/file/file.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/file/file.mk -------------------------------------------------------------------------------- /modules/fram/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fram/README.txt -------------------------------------------------------------------------------- /modules/fram/fram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fram/fram.c -------------------------------------------------------------------------------- /modules/fram/fram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fram/fram.h -------------------------------------------------------------------------------- /modules/fram/fram.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/fram/fram.mk -------------------------------------------------------------------------------- /modules/genesis/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/genesis/Readme.txt -------------------------------------------------------------------------------- /modules/genesis/genesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/genesis/genesis.c -------------------------------------------------------------------------------- /modules/genesis/genesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/genesis/genesis.h -------------------------------------------------------------------------------- /modules/genesis/genesis.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/genesis/genesis.mk -------------------------------------------------------------------------------- /modules/glcd_font/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/glcd_font/README.txt -------------------------------------------------------------------------------- /modules/glcd_font/convpix_c.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/glcd_font/convpix_c.pl -------------------------------------------------------------------------------- /modules/glcd_font/glcd_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/glcd_font/glcd_font.h -------------------------------------------------------------------------------- /modules/glcd_font/glcd_font.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/glcd_font/glcd_font.mk -------------------------------------------------------------------------------- /modules/glcd_font/glcd_font_big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/glcd_font/glcd_font_big.c -------------------------------------------------------------------------------- /modules/glcd_font/glcd_font_tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/glcd_font/glcd_font_tiny.c -------------------------------------------------------------------------------- /modules/keyboard/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/keyboard/keyboard.c -------------------------------------------------------------------------------- /modules/keyboard/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/keyboard/keyboard.h -------------------------------------------------------------------------------- /modules/keyboard/keyboard.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/keyboard/keyboard.mk -------------------------------------------------------------------------------- /modules/max72xx/max72xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/max72xx/max72xx.c -------------------------------------------------------------------------------- /modules/max72xx/max72xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/max72xx/max72xx.h -------------------------------------------------------------------------------- /modules/max72xx/max72xx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/max72xx/max72xx.mk -------------------------------------------------------------------------------- /modules/mbnet/LPC17xx/mbnet_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/mbnet/LPC17xx/mbnet_hal.c -------------------------------------------------------------------------------- /modules/mbnet/mbnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/mbnet/mbnet.c -------------------------------------------------------------------------------- /modules/mbnet/mbnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/mbnet/mbnet.h -------------------------------------------------------------------------------- /modules/mbnet/mbnet.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/mbnet/mbnet.mk -------------------------------------------------------------------------------- /modules/mbnet/mbnet_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/mbnet/mbnet_hal.h -------------------------------------------------------------------------------- /modules/md5/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/md5/README.txt -------------------------------------------------------------------------------- /modules/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/md5/md5.c -------------------------------------------------------------------------------- /modules/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/md5/md5.h -------------------------------------------------------------------------------- /modules/md5/md5.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/md5/md5.mk -------------------------------------------------------------------------------- /modules/microvga/conio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/microvga/conio.c -------------------------------------------------------------------------------- /modules/microvga/conio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/microvga/conio.h -------------------------------------------------------------------------------- /modules/microvga/kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/microvga/kbd.h -------------------------------------------------------------------------------- /modules/microvga/microvga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/microvga/microvga.c -------------------------------------------------------------------------------- /modules/microvga/microvga.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/microvga/microvga.mk -------------------------------------------------------------------------------- /modules/microvga/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/microvga/readme.txt -------------------------------------------------------------------------------- /modules/microvga/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/microvga/ui.c -------------------------------------------------------------------------------- /modules/microvga/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/microvga/ui.h -------------------------------------------------------------------------------- /modules/midi_router/midi_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/midi_router/midi_port.c -------------------------------------------------------------------------------- /modules/midi_router/midi_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/midi_router/midi_port.h -------------------------------------------------------------------------------- /modules/midi_router/midi_router.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/midi_router/midi_router.c -------------------------------------------------------------------------------- /modules/midi_router/midi_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/midi_router/midi_router.h -------------------------------------------------------------------------------- /modules/midi_router/midi_router.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/midi_router/midi_router.mk -------------------------------------------------------------------------------- /modules/midifile/mid_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/midifile/mid_parser.c -------------------------------------------------------------------------------- /modules/midifile/mid_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/midifile/mid_parser.h -------------------------------------------------------------------------------- /modules/midifile/midifile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/midifile/midifile.mk -------------------------------------------------------------------------------- /modules/midimon/midimon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/midimon/midimon.c -------------------------------------------------------------------------------- /modules/midimon/midimon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/midimon/midimon.h -------------------------------------------------------------------------------- /modules/midimon/midimon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/midimon/midimon.mk -------------------------------------------------------------------------------- /modules/minfs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/minfs/README.txt -------------------------------------------------------------------------------- /modules/minfs/gnu_test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/minfs/gnu_test/makefile -------------------------------------------------------------------------------- /modules/minfs/minfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/minfs/minfs.c -------------------------------------------------------------------------------- /modules/minfs/minfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/minfs/minfs.h -------------------------------------------------------------------------------- /modules/minfs/minfs_fram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/minfs/minfs_fram.c -------------------------------------------------------------------------------- /modules/minfs/minfs_fram.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/minfs/minfs_fram.mk -------------------------------------------------------------------------------- /modules/minfs/minfs_ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/minfs/minfs_ram.c -------------------------------------------------------------------------------- /modules/minfs/minfs_ram.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/minfs/minfs_ram.mk -------------------------------------------------------------------------------- /modules/msd/LPC17xx/blockdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/LPC17xx/blockdev.h -------------------------------------------------------------------------------- /modules/msd/LPC17xx/blockdev_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/LPC17xx/blockdev_sd.c -------------------------------------------------------------------------------- /modules/msd/LPC17xx/msc_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/LPC17xx/msc_bot.c -------------------------------------------------------------------------------- /modules/msd/LPC17xx/msc_bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/LPC17xx/msc_bot.h -------------------------------------------------------------------------------- /modules/msd/LPC17xx/msc_scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/LPC17xx/msc_scsi.c -------------------------------------------------------------------------------- /modules/msd/LPC17xx/msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/LPC17xx/msc_scsi.h -------------------------------------------------------------------------------- /modules/msd/LPC17xx/msd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/LPC17xx/msd.c -------------------------------------------------------------------------------- /modules/msd/LPC17xx/msd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/LPC17xx/msd.h -------------------------------------------------------------------------------- /modules/msd/STM32F10x/msd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/STM32F10x/msd.c -------------------------------------------------------------------------------- /modules/msd/STM32F10x/msd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/STM32F10x/msd.h -------------------------------------------------------------------------------- /modules/msd/STM32F10x/msd_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/STM32F10x/msd_bot.c -------------------------------------------------------------------------------- /modules/msd/STM32F10x/msd_bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/STM32F10x/msd_bot.h -------------------------------------------------------------------------------- /modules/msd/STM32F10x/msd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/STM32F10x/msd_desc.c -------------------------------------------------------------------------------- /modules/msd/STM32F10x/msd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/STM32F10x/msd_desc.h -------------------------------------------------------------------------------- /modules/msd/STM32F10x/msd_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/STM32F10x/msd_memory.c -------------------------------------------------------------------------------- /modules/msd/STM32F10x/msd_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/STM32F10x/msd_memory.h -------------------------------------------------------------------------------- /modules/msd/STM32F10x/msd_scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/STM32F10x/msd_scsi.c -------------------------------------------------------------------------------- /modules/msd/STM32F10x/msd_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/STM32F10x/msd_scsi.h -------------------------------------------------------------------------------- /modules/msd/STM32F4xx/msd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/STM32F4xx/msd.c -------------------------------------------------------------------------------- /modules/msd/STM32F4xx/msd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/STM32F4xx/msd.h -------------------------------------------------------------------------------- /modules/msd/msd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/msd/msd.mk -------------------------------------------------------------------------------- /modules/notestack/notestack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/notestack/notestack.c -------------------------------------------------------------------------------- /modules/notestack/notestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/notestack/notestack.h -------------------------------------------------------------------------------- /modules/notestack/notestack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/notestack/notestack.mk -------------------------------------------------------------------------------- /modules/opl3/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/opl3/Readme.txt -------------------------------------------------------------------------------- /modules/opl3/opl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/opl3/opl3.c -------------------------------------------------------------------------------- /modules/opl3/opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/opl3/opl3.h -------------------------------------------------------------------------------- /modules/opl3/opl3.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/opl3/opl3.mk -------------------------------------------------------------------------------- /modules/random/jsw_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/random/jsw_rand.c -------------------------------------------------------------------------------- /modules/random/jsw_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/random/jsw_rand.h -------------------------------------------------------------------------------- /modules/random/random.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/random/random.mk -------------------------------------------------------------------------------- /modules/scs/scs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/scs/scs.c -------------------------------------------------------------------------------- /modules/scs/scs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/scs/scs.h -------------------------------------------------------------------------------- /modules/scs/scs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/scs/scs.mk -------------------------------------------------------------------------------- /modules/scs/scs_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/scs/scs_lcd.c -------------------------------------------------------------------------------- /modules/scs/scs_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/scs/scs_lcd.h -------------------------------------------------------------------------------- /modules/sequencer/seq_bpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/sequencer/seq_bpm.c -------------------------------------------------------------------------------- /modules/sequencer/seq_bpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/sequencer/seq_bpm.h -------------------------------------------------------------------------------- /modules/sequencer/seq_midi_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/sequencer/seq_midi_out.c -------------------------------------------------------------------------------- /modules/sequencer/seq_midi_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/sequencer/seq_midi_out.h -------------------------------------------------------------------------------- /modules/sequencer/sequencer.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/sequencer/sequencer.mk -------------------------------------------------------------------------------- /modules/sid/sid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/sid/sid.c -------------------------------------------------------------------------------- /modules/sid/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/sid/sid.h -------------------------------------------------------------------------------- /modules/sid/sid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/sid/sid.mk -------------------------------------------------------------------------------- /modules/template/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/template/README.txt -------------------------------------------------------------------------------- /modules/template/module_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/template/module_x.c -------------------------------------------------------------------------------- /modules/template/module_x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/template/module_x.h -------------------------------------------------------------------------------- /modules/template/module_x.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/template/module_x.mk -------------------------------------------------------------------------------- /modules/uip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/README -------------------------------------------------------------------------------- /modules/uip/README_1st.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/README_1st.txt -------------------------------------------------------------------------------- /modules/uip/apps/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/README -------------------------------------------------------------------------------- /modules/uip/apps/dhcpc/Makefile.dhcpc: -------------------------------------------------------------------------------- 1 | APP_SOURCES += dhcpc.c timer.c 2 | -------------------------------------------------------------------------------- /modules/uip/apps/dhcpc/dhcpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/dhcpc/dhcpc.c -------------------------------------------------------------------------------- /modules/uip/apps/dhcpc/dhcpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/dhcpc/dhcpc.h -------------------------------------------------------------------------------- /modules/uip/apps/hello-world/Makefile.hello-world: -------------------------------------------------------------------------------- 1 | APP_SOURCES += hello-world.c 2 | -------------------------------------------------------------------------------- /modules/uip/apps/resolv/Makefile.resolv: -------------------------------------------------------------------------------- 1 | APP_SOURCES += resolv.c 2 | -------------------------------------------------------------------------------- /modules/uip/apps/resolv/resolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/resolv/resolv.c -------------------------------------------------------------------------------- /modules/uip/apps/resolv/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/resolv/resolv.h -------------------------------------------------------------------------------- /modules/uip/apps/smtp/makestrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/smtp/makestrings -------------------------------------------------------------------------------- /modules/uip/apps/smtp/smtp-strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/smtp/smtp-strings -------------------------------------------------------------------------------- /modules/uip/apps/smtp/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/smtp/smtp.c -------------------------------------------------------------------------------- /modules/uip/apps/smtp/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/smtp/smtp.h -------------------------------------------------------------------------------- /modules/uip/apps/telnetd/Makefile.telnetd: -------------------------------------------------------------------------------- 1 | APP_SOURCES += telnetd.c shell.c memb.c 2 | -------------------------------------------------------------------------------- /modules/uip/apps/telnetd/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/telnetd/shell.c -------------------------------------------------------------------------------- /modules/uip/apps/telnetd/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/telnetd/shell.h -------------------------------------------------------------------------------- /modules/uip/apps/telnetd/telnetd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/telnetd/telnetd.c -------------------------------------------------------------------------------- /modules/uip/apps/telnetd/telnetd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/telnetd/telnetd.h -------------------------------------------------------------------------------- /modules/uip/apps/webserver/httpd-fs/footer.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/uip/apps/webserver/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/webserver/httpd.c -------------------------------------------------------------------------------- /modules/uip/apps/webserver/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/apps/webserver/httpd.h -------------------------------------------------------------------------------- /modules/uip/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/doc/Doxyfile -------------------------------------------------------------------------------- /modules/uip/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/doc/Makefile -------------------------------------------------------------------------------- /modules/uip/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/doc/README -------------------------------------------------------------------------------- /modules/uip/doc/doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/doc/doxygen.sty -------------------------------------------------------------------------------- /modules/uip/doc/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/doc/examples.txt -------------------------------------------------------------------------------- /modules/uip/doc/header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/doc/header.tex -------------------------------------------------------------------------------- /modules/uip/doc/mobisys2003.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/doc/mobisys2003.pdf -------------------------------------------------------------------------------- /modules/uip/doc/pt-doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/doc/pt-doc.txt -------------------------------------------------------------------------------- /modules/uip/doc/sicslogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/doc/sicslogo.pdf -------------------------------------------------------------------------------- /modules/uip/doc/uip-code-style.txt: -------------------------------------------------------------------------------- 1 | /** 2 | \example uip-code-style.c 3 | */ 4 | -------------------------------------------------------------------------------- /modules/uip/doc/uip-doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/doc/uip-doc.txt -------------------------------------------------------------------------------- /modules/uip/doc/uip-refman.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/doc/uip-refman.pdf -------------------------------------------------------------------------------- /modules/uip/lib/memb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/lib/memb.c -------------------------------------------------------------------------------- /modules/uip/lib/memb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/lib/memb.h -------------------------------------------------------------------------------- /modules/uip/mios32/clock-arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/mios32/clock-arch.c -------------------------------------------------------------------------------- /modules/uip/mios32/clock-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/mios32/clock-arch.h -------------------------------------------------------------------------------- /modules/uip/uip-1.0-changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip-1.0-changelog.txt -------------------------------------------------------------------------------- /modules/uip/uip.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip.mk -------------------------------------------------------------------------------- /modules/uip/uip/Makefile.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/Makefile.include -------------------------------------------------------------------------------- /modules/uip/uip/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/clock.h -------------------------------------------------------------------------------- /modules/uip/uip/lc-addrlabels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/lc-addrlabels.h -------------------------------------------------------------------------------- /modules/uip/uip/lc-switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/lc-switch.h -------------------------------------------------------------------------------- /modules/uip/uip/lc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/lc.h -------------------------------------------------------------------------------- /modules/uip/uip/psock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/psock.c -------------------------------------------------------------------------------- /modules/uip/uip/psock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/psock.h -------------------------------------------------------------------------------- /modules/uip/uip/pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/pt.h -------------------------------------------------------------------------------- /modules/uip/uip/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/timer.c -------------------------------------------------------------------------------- /modules/uip/uip/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/timer.h -------------------------------------------------------------------------------- /modules/uip/uip/uip-fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uip-fw.c -------------------------------------------------------------------------------- /modules/uip/uip/uip-fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uip-fw.h -------------------------------------------------------------------------------- /modules/uip/uip/uip-neighbor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uip-neighbor.c -------------------------------------------------------------------------------- /modules/uip/uip/uip-neighbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uip-neighbor.h -------------------------------------------------------------------------------- /modules/uip/uip/uip-split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uip-split.c -------------------------------------------------------------------------------- /modules/uip/uip/uip-split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uip-split.h -------------------------------------------------------------------------------- /modules/uip/uip/uip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uip.c -------------------------------------------------------------------------------- /modules/uip/uip/uip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uip.h -------------------------------------------------------------------------------- /modules/uip/uip/uip_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uip_arch.h -------------------------------------------------------------------------------- /modules/uip/uip/uip_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uip_arp.c -------------------------------------------------------------------------------- /modules/uip/uip/uip_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uip_arp.h -------------------------------------------------------------------------------- /modules/uip/uip/uiplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uiplib.c -------------------------------------------------------------------------------- /modules/uip/uip/uiplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uiplib.h -------------------------------------------------------------------------------- /modules/uip/uip/uipopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/uip/uipopt.h -------------------------------------------------------------------------------- /modules/uip/unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/unix/Makefile -------------------------------------------------------------------------------- /modules/uip/unix/clock-arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/unix/clock-arch.c -------------------------------------------------------------------------------- /modules/uip/unix/clock-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/unix/clock-arch.h -------------------------------------------------------------------------------- /modules/uip/unix/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/unix/main.c -------------------------------------------------------------------------------- /modules/uip/unix/tapdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/unix/tapdev.c -------------------------------------------------------------------------------- /modules/uip/unix/tapdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/unix/tapdev.h -------------------------------------------------------------------------------- /modules/uip/unix/uip-conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip/unix/uip-conf.h -------------------------------------------------------------------------------- /modules/uip_task_standard/dhcpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip_task_standard/dhcpc.c -------------------------------------------------------------------------------- /modules/uip_task_standard/dhcpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip_task_standard/dhcpc.h -------------------------------------------------------------------------------- /modules/uip_task_standard/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uip_task_standard/shell.h -------------------------------------------------------------------------------- /modules/uwindows/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uwindows/README.txt -------------------------------------------------------------------------------- /modules/uwindows/UW_CharSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uwindows/UW_CharSet.h -------------------------------------------------------------------------------- /modules/uwindows/UW_Charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uwindows/UW_Charset.c -------------------------------------------------------------------------------- /modules/uwindows/UW_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uwindows/UW_Config.h -------------------------------------------------------------------------------- /modules/uwindows/UW_TouchScreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uwindows/UW_TouchScreen.c -------------------------------------------------------------------------------- /modules/uwindows/UWindows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uwindows/UWindows.c -------------------------------------------------------------------------------- /modules/uwindows/UWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uwindows/UWindows.h -------------------------------------------------------------------------------- /modules/uwindows/UWindows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uwindows/UWindows.pdf -------------------------------------------------------------------------------- /modules/uwindows/calibrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uwindows/calibrate.c -------------------------------------------------------------------------------- /modules/uwindows/calibrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uwindows/calibrate.h -------------------------------------------------------------------------------- /modules/uwindows/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uwindows/list.h -------------------------------------------------------------------------------- /modules/uwindows/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uwindows/malloc.c -------------------------------------------------------------------------------- /modules/uwindows/uwindows.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/uwindows/uwindows.mk -------------------------------------------------------------------------------- /modules/vgm/Readme.txt: -------------------------------------------------------------------------------- 1 | TODO 2 | -------------------------------------------------------------------------------- /modules/vgm/vgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgm.c -------------------------------------------------------------------------------- /modules/vgm/vgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgm.h -------------------------------------------------------------------------------- /modules/vgm/vgm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgm.mk -------------------------------------------------------------------------------- /modules/vgm/vgm_heap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgm_heap2.c -------------------------------------------------------------------------------- /modules/vgm/vgm_heap2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgm_heap2.h -------------------------------------------------------------------------------- /modules/vgm/vgmfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmfile.c -------------------------------------------------------------------------------- /modules/vgm/vgmfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmfile.h -------------------------------------------------------------------------------- /modules/vgm/vgmhead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmhead.c -------------------------------------------------------------------------------- /modules/vgm/vgmhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmhead.h -------------------------------------------------------------------------------- /modules/vgm/vgmperfmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmperfmon.c -------------------------------------------------------------------------------- /modules/vgm/vgmperfmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmperfmon.h -------------------------------------------------------------------------------- /modules/vgm/vgmplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmplayer.c -------------------------------------------------------------------------------- /modules/vgm/vgmplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmplayer.h -------------------------------------------------------------------------------- /modules/vgm/vgmqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmqueue.c -------------------------------------------------------------------------------- /modules/vgm/vgmqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmqueue.h -------------------------------------------------------------------------------- /modules/vgm/vgmram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmram.c -------------------------------------------------------------------------------- /modules/vgm/vgmram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmram.h -------------------------------------------------------------------------------- /modules/vgm/vgmsdtask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmsdtask.c -------------------------------------------------------------------------------- /modules/vgm/vgmsdtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmsdtask.h -------------------------------------------------------------------------------- /modules/vgm/vgmsource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmsource.c -------------------------------------------------------------------------------- /modules/vgm/vgmsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmsource.h -------------------------------------------------------------------------------- /modules/vgm/vgmstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmstream.c -------------------------------------------------------------------------------- /modules/vgm/vgmstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmstream.h -------------------------------------------------------------------------------- /modules/vgm/vgmtracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmtracker.c -------------------------------------------------------------------------------- /modules/vgm/vgmtracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmtracker.h -------------------------------------------------------------------------------- /modules/vgm/vgmtuning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmtuning.c -------------------------------------------------------------------------------- /modules/vgm/vgmtuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/vgm/vgmtuning.h -------------------------------------------------------------------------------- /modules/ws2812/ws2812.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/ws2812/ws2812.c -------------------------------------------------------------------------------- /modules/ws2812/ws2812.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/ws2812/ws2812.h -------------------------------------------------------------------------------- /modules/ws2812/ws2812.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/modules/ws2812/ws2812.mk -------------------------------------------------------------------------------- /source_me_BLUE_PILL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/source_me_BLUE_PILL -------------------------------------------------------------------------------- /source_me_MBHP_CORE_LPC17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/source_me_MBHP_CORE_LPC17 -------------------------------------------------------------------------------- /source_me_MBHP_CORE_STM32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/source_me_MBHP_CORE_STM32 -------------------------------------------------------------------------------- /source_me_MBHP_CORE_STM32F4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/source_me_MBHP_CORE_STM32F4 -------------------------------------------------------------------------------- /tools/midi_value_scan/Makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/midi_value_scan/Makefile.osx -------------------------------------------------------------------------------- /tools/midi_value_scan/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/midi_value_scan/README.txt -------------------------------------------------------------------------------- /tools/midi_value_scan/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/midi_value_scan/main.c -------------------------------------------------------------------------------- /tools/mios32_scan/Makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios32_scan/Makefile.osx -------------------------------------------------------------------------------- /tools/mios32_scan/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios32_scan/README.txt -------------------------------------------------------------------------------- /tools/mios32_scan/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios32_scan/main.c -------------------------------------------------------------------------------- /tools/mios32_scan/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios32_scan/make.bat -------------------------------------------------------------------------------- /tools/mios32_scan/makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios32_scan/makefile.win -------------------------------------------------------------------------------- /tools/mios32_scan/mios32_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios32_scan/mios32_config.h -------------------------------------------------------------------------------- /tools/mios32_terminal/Makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios32_terminal/Makefile.osx -------------------------------------------------------------------------------- /tools/mios32_terminal/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios32_terminal/README.txt -------------------------------------------------------------------------------- /tools/mios32_terminal/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios32_terminal/main.c -------------------------------------------------------------------------------- /tools/mios32_terminal/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios32_terminal/make.bat -------------------------------------------------------------------------------- /tools/mios32_terminal/makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios32_terminal/makefile.win -------------------------------------------------------------------------------- /tools/mios_studio/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios_studio/README.txt -------------------------------------------------------------------------------- /tools/mios_studio/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios_studio/src/Main.cpp -------------------------------------------------------------------------------- /tools/mios_studio/src/OscHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios_studio/src/OscHelper.h -------------------------------------------------------------------------------- /tools/mios_studio/src/UdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios_studio/src/UdpSocket.h -------------------------------------------------------------------------------- /tools/mios_studio/src/gui/LogBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios_studio/src/gui/LogBox.h -------------------------------------------------------------------------------- /tools/mios_studio/src/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/mios_studio/src/includes.h -------------------------------------------------------------------------------- /tools/mios_studio/src/version.h: -------------------------------------------------------------------------------- 1 | // $Id$ 2 | #define MIOS_STUDIO_VERSION "2.4.9" 3 | -------------------------------------------------------------------------------- /tools/osc_midi_proxy/Makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/osc_midi_proxy/Makefile.osx -------------------------------------------------------------------------------- /tools/osc_midi_proxy/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/osc_midi_proxy/README.txt -------------------------------------------------------------------------------- /tools/osc_midi_proxy/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midibox/mios32/HEAD/tools/osc_midi_proxy/main.c --------------------------------------------------------------------------------