├── .clang-format ├── .gitignore ├── .gitmodules ├── CHANGELOG ├── LICENSE.TXT ├── README.md ├── apps ├── LICENSE.TXT ├── aleph_avr32_config.mk ├── aleph_avr32_src.mk ├── bees │ ├── Makefile │ ├── README-OP-DOCUMENTATION.md │ ├── README-OP-GUIDE.txt │ ├── aleph-bees.lds │ ├── config.mk │ ├── docs │ │ ├── guide.txt │ │ ├── ops.md │ │ └── scalers.txt │ ├── host-serial-protocol.org │ ├── src │ │ ├── app_bees.c │ │ ├── app_bees.h │ │ ├── app_timers.c │ │ ├── app_timers.h │ │ ├── files.c │ │ ├── files.h │ │ ├── flash_bees.c │ │ ├── flash_bees.h │ │ ├── handler.c │ │ ├── handler.h │ │ ├── module_no.h │ │ ├── net.c │ │ ├── net.h │ │ ├── net_hid.c │ │ ├── net_hid.h │ │ ├── net_malloc_scratch.c │ │ ├── net_midi.c │ │ ├── net_midi.h │ │ ├── net_monome.c │ │ ├── net_monome.h │ │ ├── net_poll.c │ │ ├── net_poll.h │ │ ├── net_protected.h │ │ ├── op.c │ │ ├── op.h │ │ ├── op_derived.h │ │ ├── op_gfx.c │ │ ├── op_gfx.h │ │ ├── op_math.c │ │ ├── op_math.h │ │ ├── op_pool.c │ │ ├── op_pool.h │ │ ├── ops │ │ │ ├── op_accum.c │ │ │ ├── op_accum.h │ │ │ ├── op_adc.c │ │ │ ├── op_adc.h │ │ │ ├── op_add.c │ │ │ ├── op_add.h │ │ │ ├── op_bars.c │ │ │ ├── op_bars.h │ │ │ ├── op_bars8.c │ │ │ ├── op_bars8.h │ │ │ ├── op_bignum.c │ │ │ ├── op_bignum.h │ │ │ ├── op_bits.c │ │ │ ├── op_bits.h │ │ │ ├── op_cascades.c │ │ │ ├── op_cascades.h │ │ │ ├── op_change.c │ │ │ ├── op_change.h │ │ │ ├── op_ckdiv.c │ │ │ ├── op_ckdiv.h │ │ │ ├── op_cpu.c │ │ │ ├── op_cpu.h │ │ │ ├── op_delay.c │ │ │ ├── op_delay.h │ │ │ ├── op_div.c │ │ │ ├── op_div.h │ │ │ ├── op_divr.c │ │ │ ├── op_divr.h │ │ │ ├── op_enc.c │ │ │ ├── op_enc.h │ │ │ ├── op_fade.c │ │ │ ├── op_fade.h │ │ │ ├── op_gate.c │ │ │ ├── op_gate.h │ │ │ ├── op_harry.c │ │ │ ├── op_harry.h │ │ │ ├── op_harry.lisp │ │ │ ├── op_hid_word.c │ │ │ ├── op_hid_word.h │ │ │ ├── op_history.c │ │ │ ├── op_history.h │ │ │ ├── op_is.c │ │ │ ├── op_is.h │ │ │ ├── op_iter.c │ │ │ ├── op_iter.h │ │ │ ├── op_kria.c │ │ │ ├── op_kria.h │ │ │ ├── op_life_classic.c │ │ │ ├── op_life_classic.h │ │ │ ├── op_linlin.c │ │ │ ├── op_linlin.h │ │ │ ├── op_list16.c │ │ │ ├── op_list16.h │ │ │ ├── op_list2.c │ │ │ ├── op_list2.h │ │ │ ├── op_list4.c │ │ │ ├── op_list4.h │ │ │ ├── op_list8.c │ │ │ ├── op_list8.h │ │ │ ├── op_logic.c │ │ │ ├── op_logic.h │ │ │ ├── op_maginc.c │ │ │ ├── op_maginc.h │ │ │ ├── op_mem0d.c │ │ │ ├── op_mem0d.h │ │ │ ├── op_mem1d.c │ │ │ ├── op_mem1d.h │ │ │ ├── op_mem2d.c │ │ │ ├── op_mem2d.h │ │ │ ├── op_metro.c │ │ │ ├── op_metro.h │ │ │ ├── op_midi_cc.c │ │ │ ├── op_midi_cc.h │ │ │ ├── op_midi_clock.c │ │ │ ├── op_midi_clock.h │ │ │ ├── op_midi_note.c │ │ │ ├── op_midi_note.h │ │ │ ├── op_midi_out_cc.c │ │ │ ├── op_midi_out_cc.h │ │ │ ├── op_midi_out_clock.c │ │ │ ├── op_midi_out_clock.h │ │ │ ├── op_midi_out_note.c │ │ │ ├── op_midi_out_note.h │ │ │ ├── op_midi_prog.c │ │ │ ├── op_midi_prog.h │ │ │ ├── op_mod.c │ │ │ ├── op_mod.h │ │ │ ├── op_monome_arc.c │ │ │ ├── op_monome_arc.h │ │ │ ├── op_monome_grid_classic.c │ │ │ ├── op_monome_grid_classic.h │ │ │ ├── op_monome_grid_raw.c │ │ │ ├── op_monome_grid_raw.h │ │ │ ├── op_mul.c │ │ │ ├── op_mul.h │ │ │ ├── op_param.c │ │ │ ├── op_param.h │ │ │ ├── op_poly.c │ │ │ ├── op_poly.h │ │ │ ├── op_preset.c │ │ │ ├── op_preset.h │ │ │ ├── op_random.c │ │ │ ├── op_random.h │ │ │ ├── op_route.c │ │ │ ├── op_route.h │ │ │ ├── op_route16.c │ │ │ ├── op_route16.h │ │ │ ├── op_route8.c │ │ │ ├── op_route8.h │ │ │ ├── op_screen.c │ │ │ ├── op_screen.h │ │ │ ├── op_serial.c │ │ │ ├── op_serial.h │ │ │ ├── op_shl.c │ │ │ ├── op_shl.h │ │ │ ├── op_shr.c │ │ │ ├── op_shr.h │ │ │ ├── op_split.c │ │ │ ├── op_split.h │ │ │ ├── op_split4.c │ │ │ ├── op_split4.h │ │ │ ├── op_step.c │ │ │ ├── op_step.h │ │ │ ├── op_sub.c │ │ │ ├── op_sub.h │ │ │ ├── op_sw.c │ │ │ ├── op_sw.h │ │ │ ├── op_thresh.c │ │ │ ├── op_thresh.h │ │ │ ├── op_timer.c │ │ │ ├── op_timer.h │ │ │ ├── op_tog.c │ │ │ ├── op_tog.h │ │ │ ├── op_ww.c │ │ │ └── op_ww.h │ │ ├── pages.c │ │ ├── pages.h │ │ ├── pages │ │ │ ├── page_dsp.c │ │ │ ├── page_gathered.c │ │ │ ├── page_ins.c │ │ │ ├── page_ops.c │ │ │ ├── page_outs.c │ │ │ ├── page_play.c │ │ │ ├── page_presets.c │ │ │ └── page_scenes.c │ │ ├── param.c │ │ ├── param.h │ │ ├── param_scaler.c │ │ ├── param_scaler.h │ │ ├── pickle.c │ │ ├── pickle.h │ │ ├── play.c │ │ ├── play.h │ │ ├── preset.c │ │ ├── preset.h │ │ ├── render.c │ │ ├── render.h │ │ ├── scalers │ │ │ ├── scaler_amp.c │ │ │ ├── scaler_amp.h │ │ │ ├── scaler_bool.c │ │ │ ├── scaler_bool.h │ │ │ ├── scaler_fix.c │ │ │ ├── scaler_fix.h │ │ │ ├── scaler_fract.c │ │ │ ├── scaler_fract.h │ │ │ ├── scaler_integrator.c │ │ │ ├── scaler_integrator.h │ │ │ ├── scaler_integrator_short.c │ │ │ ├── scaler_integrator_short.h │ │ │ ├── scaler_label.c │ │ │ ├── scaler_label.h │ │ │ ├── scaler_note.c │ │ │ ├── scaler_note.h │ │ │ ├── scaler_short.c │ │ │ ├── scaler_short.h │ │ │ ├── scaler_svf_fc.c │ │ │ └── scaler_svf_fc.h │ │ ├── scene.c │ │ ├── scene.h │ │ ├── ser.c │ │ ├── ser.h │ │ ├── ui.h │ │ ├── util.c │ │ └── util.h │ └── version.mk ├── mix │ ├── Makefile │ ├── README │ ├── aleph-mix.lds │ ├── config.mk │ ├── src │ │ ├── aleph-mix.ldr.inc │ │ ├── aleph-mix.ldr_size.inc │ │ ├── amp_table_db.inc │ │ ├── amp_table_linear.inc │ │ ├── app_mix.c │ │ ├── app_timers.c │ │ ├── app_timers.h │ │ ├── ctl.c │ │ ├── ctl.h │ │ ├── handler.c │ │ ├── handler.h │ │ ├── render.c │ │ ├── render.h │ │ ├── scaler.c │ │ └── scaler.h │ └── version.mk ├── picolisp │ ├── Makefile │ ├── aleph-picolisp.lds │ ├── config.mk │ ├── src │ │ ├── app_picolisp.c │ │ ├── app_timers.c │ │ ├── app_timers.h │ │ ├── apply.c │ │ ├── ctl.c │ │ ├── ctl.h │ │ ├── files.c │ │ ├── files.h │ │ ├── flow.c │ │ ├── gc.c │ │ ├── handler.c │ │ ├── handler.h │ │ ├── io.c │ │ ├── math.c │ │ ├── pico.h │ │ ├── picolisp_mod.h │ │ ├── pil_main.c │ │ ├── platform_picolisp.h │ │ ├── render.c │ │ ├── render.h │ │ ├── ser.c │ │ ├── ser.h │ │ ├── subr.c │ │ ├── sym.c │ │ ├── tab.c │ │ ├── util.c │ │ └── util.h │ └── version.mk └── readme.txt ├── avr32 ├── src │ ├── adc_poll.c │ ├── adc_poll.h │ ├── app.c │ ├── app.h │ ├── bfin.c │ ├── bfin.h │ ├── control.c │ ├── control.h │ ├── debug.h │ ├── encoders.c │ ├── encoders.h │ ├── fat_io_lib │ │ ├── API.txt │ │ ├── COPYRIGHT.txt │ │ ├── Configuration.txt │ │ ├── History.txt │ │ ├── License.txt │ │ ├── Media Access API.txt │ │ ├── example.c │ │ ├── fat_access.c │ │ ├── fat_access.h │ │ ├── fat_cache.c │ │ ├── fat_cache.h │ │ ├── fat_defs.h │ │ ├── fat_filelib.c │ │ ├── fat_filelib.h │ │ ├── fat_format.c │ │ ├── fat_format.h │ │ ├── fat_list.h │ │ ├── fat_misc.c │ │ ├── fat_misc.h │ │ ├── fat_opts.h │ │ ├── fat_string.c │ │ ├── fat_string.h │ │ ├── fat_table.c │ │ ├── fat_table.h │ │ ├── fat_types.h │ │ ├── fat_write.c │ │ ├── fat_write.h │ │ └── version.txt │ ├── filesystem.c │ ├── filesystem.h │ ├── flash.c │ ├── flash.h │ ├── font_aa.c │ ├── font_aa.h │ ├── fonts │ │ ├── dejavu_numerals_24.c │ │ ├── dejavu_numerals_24.h │ │ ├── ume_tgo5_18.c │ │ └── ume_tgo5_18.h │ ├── global.h │ ├── init.c │ ├── init.h │ ├── interrupts.c │ ├── interrupts.h │ ├── link_aleph.lds │ ├── main.c │ ├── memory.c │ ├── memory.h │ ├── print_funcs.c │ ├── print_funcs.h │ ├── region_extra.c │ ├── region_extra.h │ ├── screen_startup.c │ ├── screen_startup.h │ ├── serial.c │ ├── serial.h │ ├── simple_string.c │ ├── simple_string.h │ ├── startup_glyph.c │ ├── switches.c │ └── switches.h └── startup │ ├── startup.S │ ├── trampoline.S │ └── trampoline.h ├── bfin_lib ├── UNLICENSE.TXT ├── bfin_lib.mk ├── obj │ └── dummy └── src │ ├── bfin_core.h │ ├── control.c │ ├── control.h │ ├── cv.c │ ├── cv.h │ ├── desc.c │ ├── fix.c │ ├── fix.h │ ├── fix16.c │ ├── gpio.h │ ├── init.c │ ├── init.h │ ├── isr.c │ ├── isr.h │ ├── libfixmath │ ├── Makefile │ ├── fix16.c │ ├── fix16.h │ ├── fix16.hpp │ ├── fix16_exp.c │ ├── fix16_fract.h │ ├── fix16_sqrt.c │ ├── fix16_trig.c │ ├── fix16_trig_sin_lut.h │ ├── fix32.c │ ├── fix32.h │ ├── fixmath.h │ ├── fract32.c │ ├── fract32.h │ ├── int64.h │ ├── libfixmath.cbp │ ├── uint32.c │ └── uint32.h │ ├── main.c │ ├── module.h │ ├── pickle.c │ ├── pickle.h │ ├── spi.c │ ├── spi.h │ ├── util.c │ └── util.h ├── bfin_lib_block ├── UNLICENSE.TXT ├── bfin_lib_block.mk ├── obj │ └── dummy └── src │ ├── audio.c │ ├── audio.h │ ├── clock_ebiu.c │ ├── clock_ebiu.h │ ├── control.c │ ├── control.h │ ├── cycle_count_aleph.h │ ├── desc.c │ ├── dma.c │ ├── dma.h │ ├── fix.h │ ├── gpio.c │ ├── gpio.h │ ├── isr.c │ ├── isr.h │ ├── libfixmath │ └── fix16.h │ ├── main.c │ ├── module.h │ ├── pickle.c │ ├── pickle.h │ ├── serial.c │ ├── serial.h │ ├── spi.c │ └── spi.h ├── common ├── buffer_common.h ├── fract32_emu.c ├── fract32_emu.h ├── module_common.h ├── param_common.h ├── protocol.h └── types.h ├── docs ├── modules │ ├── dsyn.txt │ ├── lines.txt │ └── waves.txt ├── operator-diagram.svg └── params.txt ├── dsp-block-test ├── Makefile ├── audio.c ├── audio.h ├── dma.c ├── dma.h ├── dsp-block-test ├── dsp-block-test.lds ├── dsp-block-test_hm.lds ├── gpio.h ├── isr.c ├── isr.h ├── main.c ├── module.c ├── module.h ├── osc.c ├── osc.h ├── process.h ├── serial.c ├── serial.h ├── sine_table_inc.c └── wavtab_data_inc.c ├── dsp ├── README.txt ├── UNLICENSE.TXT ├── biquad.c ├── biquad.h ├── bl_osc.c ├── bl_osc.h ├── bl_osc_table.scd ├── buffer.c ├── buffer.h ├── buffer16.c ├── buffer16.h ├── conversion.c ├── conversion.h ├── delay.c ├── delay.h ├── delayFade24_8.c ├── delayFade24_8.h ├── delayFadeN.c ├── delayFadeN.h ├── delayN.c ├── delayN.h ├── echoTap.c ├── echoTap.h ├── env.c ├── env.h ├── env_adsr.c ├── env_adsr.h ├── env_exp.c ├── env_exp.h ├── env_trig.c ├── env_trig.h ├── fade.c ├── fade.h ├── filter-crossover-coeffs.lisp ├── filter_1p.c ├── filter_1p.h ├── filter_2p.c ├── filter_2p.h ├── filter_crossover.c ├── filter_crossover.h ├── filter_ladder.c ├── filter_ladder.h ├── filter_ramp.c ├── filter_ramp.h ├── filter_svf.c ├── filter_svf.h ├── fm_voice.c ├── fm_voice.h ├── grain.c ├── grain.h ├── halfsine_1024.inc ├── interpolate.c ├── interpolate.h ├── noise.c ├── noise.h ├── null │ ├── Makefile │ ├── README.txt │ ├── audio.c │ ├── audio.h │ ├── fract.h │ ├── fract_math.h │ ├── main.c │ ├── makelog │ ├── mono.plt │ ├── mono_fm.c │ ├── num.scd │ ├── out.txt │ ├── tape.c │ ├── ui.c │ └── ui.h ├── osc.c ├── osc.h ├── osc_polyblep.c ├── osc_polyblep.h ├── pan.c ├── pan.h ├── pitch_shift.c ├── pitch_shift.h ├── ricks_tricks.c ├── ricks_tricks.h ├── scrubTap.c ├── scrubTap.h ├── shapers.scd ├── table.c └── table.h ├── install.sh ├── modules ├── README_params.txt ├── UNLICENSE.TXT ├── acid │ ├── Makefile │ ├── acid.c │ ├── acid.h │ ├── acid.lab │ ├── acid.lds │ ├── dsyn_voice.c │ ├── dsyn_voice.h │ ├── module_custom.h │ ├── monosynth_voice.c │ ├── monosynth_voice.h │ ├── noise_acid.c │ ├── noise_acid.h │ ├── param_desc.c │ ├── params.c │ ├── params.h │ └── version.mk ├── analyser │ ├── Makefile │ ├── analyser.c │ ├── analyser.lds │ ├── module_custom.h │ ├── params.c │ ├── params.h │ ├── soft_clip.c │ └── version.mk ├── dacs │ ├── Makefile │ ├── dacs.c │ ├── dacs.lds │ ├── module_custom.h │ ├── params.c │ ├── params.h │ └── version.mk ├── dsyn │ ├── Makefile │ ├── dsyn.c │ ├── dsyn.h │ ├── dsyn.lds │ ├── module_custom.h │ ├── noise_dsyn.c │ ├── noise_dsyn.h │ ├── param_desc.c │ ├── params.c │ ├── params.h │ └── version.mk ├── fmsynth │ ├── Makefile │ ├── fmsynth.c │ ├── fmsynth.lab │ ├── fmsynth.lds │ ├── module_custom.h │ ├── params.c │ ├── params.h │ └── version.mk ├── grains │ ├── Makefile │ ├── bfin_emu │ │ ├── example_server.c │ │ ├── fract32_jack.c │ │ ├── jack_pitch_tracker.c │ │ ├── main.c │ │ ├── osc-examples.lisp │ │ ├── simple_slew_params │ │ └── types.h │ ├── fract32_jack.h │ ├── grains.c │ ├── grains.lab │ ├── grains.lds │ ├── grains.org │ ├── module_custom.h │ ├── params.c │ ├── params.h │ ├── test-jack-client.sh │ └── version.mk ├── lines │ ├── Makefile │ ├── aleph-lines.lds │ ├── delayFadeN.c │ ├── delayFadeN.h │ ├── lines.c │ ├── lines.lds │ ├── module_custom.h │ ├── param_gen.scd │ ├── param_set.c │ ├── params.c │ ├── params.h │ └── version.mk ├── mix │ ├── Makefile │ ├── README │ ├── mix.c │ ├── mix.lds │ ├── module_custom.h │ ├── params.c │ ├── params.h │ └── version.mk ├── monosynth │ ├── Makefile │ ├── module_custom.h │ ├── monosynth.c │ ├── monosynth.lds │ ├── params.c │ ├── params.h │ └── version.mk ├── tape │ ├── Makefile │ ├── module_custom.h │ ├── params.c │ ├── params.h │ ├── tape.c │ ├── tape.lds │ └── version.mk ├── varilines │ ├── Makefile │ ├── lines.c │ ├── module_custom.h │ ├── param_gen.scd │ ├── param_set.c │ ├── params.c │ ├── params.h │ ├── varilines.lds │ └── version.mk ├── voder │ ├── Makefile │ ├── module_custom.h │ ├── params.c │ ├── params.h │ ├── polyblep-test.c │ ├── version.mk │ ├── voder.c │ ├── voder.lds │ └── voder.org └── waves │ ├── Makefile │ ├── module_custom.h │ ├── osc_waves.c │ ├── osc_waves.h │ ├── param_set.c │ ├── params.c │ ├── params.h │ ├── slew.h │ ├── version.mk │ ├── waves.c │ ├── waves.lds │ ├── wavtab.scd │ └── wavtab_data_inc.c ├── modules_block └── rawsc │ ├── Makefile │ ├── module.c │ ├── module_custom.h │ ├── osc.c │ ├── osc.h │ ├── params.c │ ├── params.h │ ├── rawsc.lds │ ├── sine_table_inc.c │ └── version.mk └── utils ├── aleph-com ├── README ├── a.sh ├── aleph-com-test.maxpat └── aleph-com.py ├── avr32_blank ├── Makefile ├── aleph-blank.lds ├── conf │ ├── conf_access.h │ ├── conf_board.h │ ├── conf_clock.h │ ├── conf_sd_mmc_spi.h │ ├── conf_tc_irq.h │ └── conf_twi.h ├── config.mk ├── core.mk └── src │ ├── global.h │ ├── i2c.c │ ├── i2c.h │ ├── init.c │ ├── init.h │ ├── interrupts.c │ ├── interrupts.h │ ├── main.c │ └── types.h ├── avr32_boot ├── LICENSE.TXT ├── Makefile ├── aleph-boot.lds ├── conf │ ├── #conf_usb_host.h# │ ├── conf_access.h │ ├── conf_aleph_no.h │ ├── conf_board.h │ ├── conf_clock.h │ ├── conf_ebi.h │ ├── conf_explorer.h │ ├── conf_sd_mmc_spi.h │ ├── conf_usb_host.h │ └── smc_peripheral.h ├── config.mk ├── flash.sh ├── src │ ├── app_timers.c │ ├── app_timers.h │ ├── bfin.c │ ├── bfin.h │ ├── dummy.h │ ├── encoders.c │ ├── encoders.h │ ├── event_types.h │ ├── events.c │ ├── events.h │ ├── fat_io_lib │ │ ├── API.txt │ │ ├── COPYRIGHT.txt │ │ ├── Configuration.txt │ │ ├── History.txt │ │ ├── License.txt │ │ ├── Media Access API.txt │ │ ├── example.c │ │ ├── fat_access.c │ │ ├── fat_access.h │ │ ├── fat_cache.c │ │ ├── fat_cache.h │ │ ├── fat_defs.h │ │ ├── fat_filelib.c │ │ ├── fat_filelib.h │ │ ├── fat_format.c │ │ ├── fat_format.h │ │ ├── fat_list.h │ │ ├── fat_misc.c │ │ ├── fat_misc.h │ │ ├── fat_opts.h │ │ ├── fat_string.c │ │ ├── fat_string.h │ │ ├── fat_table.c │ │ ├── fat_table.h │ │ ├── fat_types.h │ │ ├── fat_write.c │ │ ├── fat_write.h │ │ └── version.txt │ ├── files.c │ ├── files.h │ ├── filesystem.c │ ├── filesystem.h │ ├── fix.c │ ├── fix.h │ ├── flash.c │ ├── flash.h │ ├── font.c │ ├── font.h │ ├── global.h │ ├── init.c │ ├── init.h │ ├── interrupts.c │ ├── interrupts.h │ ├── key_handler.c │ ├── key_handler.h │ ├── libfixmath │ │ ├── fix16.c │ │ ├── fix16.h │ │ ├── fix16.hpp │ │ ├── fix16_exp.c │ │ ├── fix16_sqrt.c │ │ ├── fix16_trig.c │ │ ├── fix16_trig_sin_lut.h │ │ ├── fix32.c │ │ ├── fix32.h │ │ ├── fixmath.h │ │ ├── fract32.c │ │ ├── fract32.h │ │ ├── int64.h │ │ ├── uint32.c │ │ └── uint32.h │ ├── main.c │ ├── memory.c │ ├── memory.h │ ├── menu.c │ ├── menu.h │ ├── menu_protected.h │ ├── parse_hex.c │ ├── parse_hex.h │ ├── parsehex.txt │ ├── print_fix.c │ ├── print_fix.h │ ├── redraw.c │ ├── redraw.h │ ├── scene.c │ ├── screen.c │ ├── screen.h │ ├── simple_string.c │ ├── simple_string.h │ ├── startup.c │ ├── switches.c │ ├── switches.h │ ├── timers.c │ ├── timers.h │ ├── util.c │ ├── util.h │ ├── watchdog.c │ ├── watchdog.h │ ├── wdt.c │ └── wdt.h ├── startup │ ├── startup.S │ ├── trampoline.S │ └── trampoline.h └── version.mk ├── avr32_sim ├── adc_poll.h ├── avr32_sim.mk ├── avr32_sim.mk~ ├── region_extra.h └── src │ ├── adc.c │ ├── adc.h │ ├── app.c │ ├── app.h │ ├── bfin.c │ ├── bfin.h │ ├── control.c │ ├── control.h │ ├── delay.c │ ├── delay.h │ ├── dummy.h │ ├── encoders.c │ ├── encoders.h │ ├── event_types.h │ ├── events.c │ ├── events.h │ ├── filesystem.c │ ├── filesystem.h │ ├── fix.c │ ├── fix.h │ ├── flash.c │ ├── flash.h │ ├── font.c │ ├── font.h │ ├── fonts │ ├── dejavu_numerals_24.c │ ├── dejavu_numerals_24.h │ ├── ume_tgo5_18.c │ └── ume_tgo5_18.h │ ├── global.h │ ├── hid.c │ ├── hid.h │ ├── i2c.c │ ├── i2c.h │ ├── init.c │ ├── init.h │ ├── interrupts.c │ ├── interrupts.h │ ├── libfixmath │ ├── Makefile │ ├── fix16.c │ ├── fix16.h │ ├── fix16.hpp │ ├── fix16_exp.c │ ├── fix16_sqrt.c │ ├── fix16_trig.c │ ├── fix16_trig_sin_lut.h │ ├── fix32.c │ ├── fix32.h │ ├── fixmath.h │ ├── fract32.c │ ├── fract32.h │ ├── int64.h │ ├── libfixmath.cbp │ ├── license.txt │ ├── uint32.c │ └── uint32.h │ ├── main.c │ ├── memory.c │ ├── memory.h │ ├── midi_common.c │ ├── midi_common.h │ ├── monome.c │ ├── monome.h │ ├── mt48lc16m16a2tg75.h │ ├── mt48lc16m16a2tg7e.h │ ├── print_funcs.c │ ├── print_funcs.h │ ├── region.c │ ├── region.h │ ├── regions.h │ ├── screen.c │ ├── screen.h │ ├── serial.c │ ├── serial.h │ ├── simple_string.c │ ├── simple_string.h │ ├── startup_glyph.c │ ├── switches.c │ ├── switches.h │ ├── timers.c │ ├── timers.h │ ├── types.h │ ├── usb.c │ ├── usb.h │ └── usb │ ├── ftdi │ ├── ftdi.c │ ├── ftdi.h │ ├── uhi_ftdi.c │ ├── uhi_ftdi.h │ └── usb_protocol_ftdi.h │ ├── hid │ ├── hid.c │ ├── hid.h │ ├── uhi_hid.c │ └── uhi_hid.h │ └── midi │ ├── midi.c │ ├── midi.h │ ├── uhi_midi.c │ ├── uhi_midi.h │ └── usb_protocol_midi.h ├── avr8 ├── LUFA │ ├── Build │ │ ├── HID_EEPROM_Loader │ │ │ ├── HID_EEPROM_Loader.c │ │ │ └── makefile │ │ ├── lufa_atprogram.mk │ │ ├── lufa_avrdude.mk │ │ ├── lufa_build.mk │ │ ├── lufa_core.mk │ │ ├── lufa_cppcheck.mk │ │ ├── lufa_dfu.mk │ │ ├── lufa_doxygen.mk │ │ ├── lufa_hid.mk │ │ └── lufa_sources.mk │ ├── Common │ │ ├── ArchitectureSpecific.h │ │ ├── Architectures.h │ │ ├── Attributes.h │ │ ├── BoardTypes.h │ │ ├── Common.h │ │ ├── CompilerSpecific.h │ │ └── Endianness.h │ ├── Drivers │ │ ├── Misc │ │ │ ├── AT45DB321C.h │ │ │ ├── AT45DB642D.h │ │ │ ├── RingBuffer.h │ │ │ └── TerminalCodes.h │ │ ├── Peripheral │ │ │ ├── ADC.h │ │ │ ├── AVR8 │ │ │ │ ├── ADC_AVR8.h │ │ │ │ ├── SPI_AVR8.h │ │ │ │ ├── SerialSPI_AVR8.h │ │ │ │ ├── Serial_AVR8.c │ │ │ │ ├── Serial_AVR8.h │ │ │ │ ├── TWI_AVR8.c │ │ │ │ └── TWI_AVR8.h │ │ │ ├── SPI.h │ │ │ ├── Serial.h │ │ │ ├── SerialSPI.h │ │ │ └── TWI.h │ │ └── USB │ │ │ ├── Class │ │ │ ├── AndroidAccessoryClass.h │ │ │ ├── AudioClass.h │ │ │ ├── CDCClass.h │ │ │ ├── Common │ │ │ │ ├── AndroidAccessoryClassCommon.h │ │ │ │ ├── AudioClassCommon.h │ │ │ │ ├── CDCClassCommon.h │ │ │ │ ├── HIDClassCommon.h │ │ │ │ ├── HIDParser.c │ │ │ │ ├── HIDParser.h │ │ │ │ ├── HIDReportData.h │ │ │ │ ├── MIDIClassCommon.h │ │ │ │ ├── MassStorageClassCommon.h │ │ │ │ ├── PrinterClassCommon.h │ │ │ │ ├── RNDISClassCommon.h │ │ │ │ └── StillImageClassCommon.h │ │ │ ├── Device │ │ │ │ ├── AudioClassDevice.c │ │ │ │ ├── AudioClassDevice.h │ │ │ │ ├── CDCClassDevice.c │ │ │ │ ├── CDCClassDevice.h │ │ │ │ ├── HIDClassDevice.c │ │ │ │ ├── HIDClassDevice.h │ │ │ │ ├── MIDIClassDevice.c │ │ │ │ ├── MIDIClassDevice.h │ │ │ │ ├── MassStorageClassDevice.c │ │ │ │ ├── MassStorageClassDevice.h │ │ │ │ ├── PrinterClassDevice.c │ │ │ │ ├── PrinterClassDevice.h │ │ │ │ ├── RNDISClassDevice.c │ │ │ │ └── RNDISClassDevice.h │ │ │ ├── HIDClass.h │ │ │ ├── Host │ │ │ │ ├── AndroidAccessoryClassHost.c │ │ │ │ ├── AndroidAccessoryClassHost.h │ │ │ │ ├── AudioClassHost.c │ │ │ │ ├── AudioClassHost.h │ │ │ │ ├── CDCClassHost.c │ │ │ │ ├── CDCClassHost.h │ │ │ │ ├── HIDClassHost.c │ │ │ │ ├── HIDClassHost.h │ │ │ │ ├── MIDIClassHost.c │ │ │ │ ├── MIDIClassHost.h │ │ │ │ ├── MassStorageClassHost.c │ │ │ │ ├── MassStorageClassHost.h │ │ │ │ ├── PrinterClassHost.c │ │ │ │ ├── PrinterClassHost.h │ │ │ │ ├── RNDISClassHost.c │ │ │ │ ├── RNDISClassHost.h │ │ │ │ ├── StillImageClassHost.c │ │ │ │ └── StillImageClassHost.h │ │ │ ├── MIDIClass.h │ │ │ ├── MassStorageClass.h │ │ │ ├── PrinterClass.h │ │ │ ├── RNDISClass.h │ │ │ └── StillImageClass.h │ │ │ ├── Core │ │ │ ├── AVR8 │ │ │ │ ├── Device_AVR8.c │ │ │ │ ├── Device_AVR8.h │ │ │ │ ├── EndpointStream_AVR8.c │ │ │ │ ├── EndpointStream_AVR8.h │ │ │ │ ├── Endpoint_AVR8.c │ │ │ │ ├── Endpoint_AVR8.h │ │ │ │ ├── Host_AVR8.c │ │ │ │ ├── Host_AVR8.h │ │ │ │ ├── OTG_AVR8.h │ │ │ │ ├── PipeStream_AVR8.c │ │ │ │ ├── PipeStream_AVR8.h │ │ │ │ ├── Pipe_AVR8.c │ │ │ │ ├── Pipe_AVR8.h │ │ │ │ ├── Template │ │ │ │ │ ├── Template_Endpoint_Control_R.c │ │ │ │ │ ├── Template_Endpoint_Control_W.c │ │ │ │ │ ├── Template_Endpoint_RW.c │ │ │ │ │ └── Template_Pipe_RW.c │ │ │ │ ├── USBController_AVR8.c │ │ │ │ ├── USBController_AVR8.h │ │ │ │ ├── USBInterrupt_AVR8.c │ │ │ │ └── USBInterrupt_AVR8.h │ │ │ ├── ConfigDescriptors.c │ │ │ ├── ConfigDescriptors.h │ │ │ ├── Device.h │ │ │ ├── DeviceStandardReq.c │ │ │ ├── DeviceStandardReq.h │ │ │ ├── Endpoint.h │ │ │ ├── EndpointStream.h │ │ │ ├── Events.c │ │ │ ├── Events.h │ │ │ ├── Host.h │ │ │ ├── HostStandardReq.c │ │ │ ├── HostStandardReq.h │ │ │ ├── OTG.h │ │ │ ├── Pipe.h │ │ │ ├── PipeStream.h │ │ │ ├── StdDescriptors.h │ │ │ ├── StdRequestType.h │ │ │ ├── USBController.h │ │ │ ├── USBInterrupt.h │ │ │ ├── USBMode.h │ │ │ ├── USBTask.c │ │ │ └── USBTask.h │ │ │ └── USB.h │ ├── License.txt │ ├── Platform │ │ └── Platform.h │ ├── Version.h │ └── makefile └── USBtoSerial │ ├── Config │ └── LUFAConfig.h │ ├── Descriptors.c │ ├── Descriptors.h │ ├── Doxygen.conf │ ├── LUFA USBtoSerial.inf │ ├── USBtoSerial.c │ ├── USBtoSerial.eep │ ├── USBtoSerial.h │ ├── USBtoSerial.txt │ ├── asf.xml │ ├── flash.sh │ ├── fuses.sh │ └── makefile ├── beekeep ├── Makefile ├── README.md ├── TODO.md ├── bees_schema.json ├── build_linux.md ├── build_osx.md ├── dummy_patchlabel.lab ├── grains.lab ├── guide.md ├── icons.sh ├── osx_launcher.sh ├── py2aleph │ ├── Makefile │ ├── pyaleph.c │ └── pyaleph.py ├── py3aleph │ ├── Makefile │ ├── pyaleph.c │ └── pyaleph.py ├── python_version2.6.mk ├── python_version2.7.mk ├── python_version3.1.mk ├── python_version3.2.mk └── src │ ├── app_beekeep.c │ ├── dot.c │ ├── dot.h │ ├── files.c │ ├── flash_beekeep.c │ ├── handler.c │ ├── json.h │ ├── json_read_native.c │ ├── json_read_raw.c │ ├── json_write_native.c │ ├── main.c │ ├── net_hid.c │ ├── net_hid.h │ ├── net_py.c │ ├── param_scaler.c │ ├── scaler_amp_rep.dat_le.inc │ ├── scaler_amp_val.dat_le.inc │ ├── scaler_integrator_rep.dat_le.inc │ ├── scaler_integrator_short_rep.dat_le.inc │ ├── scaler_integrator_short_val.dat_le.inc │ ├── scaler_integrator_val.dat_le.inc │ ├── scaler_note_val.dat_le.inc │ ├── scaler_svf_fc_val.dat_le.inc │ ├── ui.c │ ├── ui.h │ ├── ui_files.c │ ├── ui_files.h │ ├── ui_handlers.c │ ├── ui_handlers.h │ ├── ui_lists.c │ ├── ui_lists.h │ ├── ui_op_menu.c │ └── ui_op_menu.h ├── beekeep_juce ├── Builds │ ├── CodeBlocksLinux │ │ └── beekeep.cbp │ ├── CodeBlocksWindows │ │ └── beekeep.cbp │ ├── LinuxMakefile │ │ └── Makefile │ ├── MacOSX │ │ ├── Info.plist │ │ └── RecentFilesMenuTemplate.nib │ └── VisualStudio2013 │ │ ├── beekeep.sln │ │ ├── beekeep.vcxproj │ │ ├── beekeep.vcxproj.filters │ │ └── resources.rc ├── JuceLibraryCode │ ├── AppConfig.h │ ├── BinaryData.cpp │ ├── BinaryData.h │ ├── JuceHeader.h │ ├── ReadMe.txt │ └── modules │ │ ├── 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_ListenerList.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 │ │ ├── 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_NormalisableRange.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 │ │ │ │ ├── AndroidMidi.java │ │ │ │ ├── AndroidMidiFallback.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_curl_Network.cpp │ │ │ ├── juce_linux_CommonFile.cpp │ │ │ ├── juce_linux_Files.cpp │ │ │ ├── juce_linux_Network.cpp │ │ │ ├── juce_linux_SystemStats.cpp │ │ │ ├── juce_linux_Threads.cpp │ │ │ ├── juce_mac_ClangBugWorkaround.h │ │ │ ├── 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_CompilerSupport.h │ │ │ ├── juce_PlatformDefs.h │ │ │ ├── juce_StandardHeader.h │ │ │ ├── juce_SystemStats.cpp │ │ │ ├── juce_SystemStats.h │ │ │ └── juce_TargetPlatform.h │ │ ├── text │ │ │ ├── juce_Base64.cpp │ │ │ ├── juce_Base64.h │ │ │ ├── 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_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_ValueTreeSynchroniser.cpp │ │ │ └── juce_ValueTreeSynchroniser.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 │ │ ├── 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_MountedVolumeListChangeDetector.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.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.h │ │ │ ├── juce_RectanglePlacement.cpp │ │ │ └── juce_RectanglePlacement.h │ │ ├── juce_gui_basics │ │ ├── application │ │ │ ├── juce_Application.cpp │ │ │ └── juce_Application.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_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_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 │ │ ├── misc │ │ ├── juce_AnimatedAppComponent.cpp │ │ ├── juce_AnimatedAppComponent.h │ │ ├── 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 ├── Makefile ├── Source │ ├── ConnectorComponent.cpp │ ├── ConnectorComponent.h │ ├── GfxUtil.cpp │ ├── GfxUtil.h │ ├── GraphEditorComponent.cpp │ ├── GraphEditorComponent.h │ ├── Main.cpp │ ├── OpComponent.cpp │ ├── OpComponent.h │ ├── OpGraph.cpp │ ├── OpGraph.h │ ├── app_beekeep.c │ ├── files.c │ ├── flash_beekeep.c │ └── handler.c ├── beekeep.jucer └── bees_schema.json ├── bfin_pd ├── Makefile.common ├── Makefile.fmsynth ├── Makefile.pdlibbuilder ├── bfin~.c ├── fix.c ├── fix.h ├── op_math.c ├── op_math.h ├── param_scaler.c ├── param_scaler.h ├── scalers │ ├── scaler_amp.c │ ├── scaler_amp.h │ ├── scaler_bool.c │ ├── scaler_bool.h │ ├── scaler_fix.c │ ├── scaler_fix.h │ ├── scaler_fract.c │ ├── scaler_fract.h │ ├── scaler_integrator.c │ ├── scaler_integrator.h │ ├── scaler_integrator_short.c │ ├── scaler_integrator_short.h │ ├── scaler_label.c │ ├── scaler_label.h │ ├── scaler_note.c │ ├── scaler_note.h │ ├── scaler_short.c │ ├── scaler_short.h │ ├── scaler_svf_fc.c │ └── scaler_svf_fc.h └── test.pd ├── bfin_sim ├── fract2float_conv.c ├── fract2float_conv.h ├── fract_math.c ├── fract_math.h ├── main.c ├── module.h ├── osc-test-harness.lisp └── src │ ├── bfin_core.h │ ├── control.c │ ├── control.h │ ├── cv.c │ ├── cv.h │ ├── desc.c │ ├── fix.c │ ├── fix.h │ ├── fix16.c │ ├── gpio.h │ ├── init.c │ ├── init.h │ ├── isr.c │ ├── isr.h │ ├── libfixmath │ ├── Makefile │ ├── fix16.c │ ├── fix16.h │ ├── fix16.hpp │ ├── fix16_exp.c │ ├── fix16_fract.c │ ├── fix16_fract.h │ ├── fix16_sqrt.c │ ├── fix16_trig.c │ ├── fix16_trig_sin_lut.h │ ├── fix32.c │ ├── fix32.h │ ├── fixmath.h │ ├── fract32.c │ ├── fract32.h │ ├── int64.h │ ├── libfixmath.cbp │ ├── uint32.c │ └── uint32.h │ ├── main.c │ ├── pickle.c │ ├── pickle.h │ ├── spi.c │ ├── spi.h │ ├── util.c │ └── util.h ├── bintool ├── README.md └── bintool.c ├── bmp ├── aleph_bmp_region.c ├── font_xpm_gen.scm ├── readme.txt ├── untitled.xpm ├── xpm-convert ├── xpm_convert.c └── xpm_read.c ├── i2c-repeater ├── Makefile ├── i2c-repeater ├── i2c-repeater.c ├── twi.c └── twi.h ├── param_scaling ├── scale_amp.scd ├── scale_integrator.scd ├── scale_note_12tet.scd ├── scaler_amp_rep.dat ├── scaler_amp_val.dat ├── scaler_integrator_rep.dat ├── scaler_integrator_short_rep.dat ├── scaler_integrator_short_val.dat ├── scaler_integrator_val.dat ├── scaler_note_12tet_val.dat ├── scaler_note_val.dat └── scaler_svf_fc_val.dat ├── pd ├── .gitignore ├── Makefile ├── Makefile.pdlibbuilder ├── README.md ├── aleph_op_mul.pd ├── app_beekeep.c ├── app_pd.c ├── bees_op.c ├── bees_op_basic.pd ├── bees_op_example.pd ├── bees_ops_grid.pd ├── counter.c ├── dot.c ├── dot.h ├── files.c ├── flash_beekeep.c ├── handler.c ├── json.h ├── json_read_native.c ├── json_read_raw.c ├── json_write_native.c ├── main.c ├── net_hid.c ├── net_hid.h ├── net_py.c ├── param_scaler.c ├── scaler_amp_rep.dat_le.inc ├── scaler_amp_val.dat_le.inc ├── scaler_integrator_rep.dat_le.inc ├── scaler_integrator_short_rep.dat_le.inc ├── scaler_integrator_short_val.dat_le.inc ├── scaler_integrator_val.dat_le.inc ├── scaler_note_val.dat_le.inc ├── scaler_svf_fc_val.dat_le.inc ├── ui.c ├── ui.h ├── ui_files.c ├── ui_files.h ├── ui_handlers.c ├── ui_handlers.h ├── ui_lists.c ├── ui_lists.h ├── ui_op_menu.c └── ui_op_menu.h ├── prototypes └── opPoolProto.c ├── release ├── copy.command └── scenes-0.7.1 │ ├── crickets.scn │ ├── cvtest.scn │ ├── default.scn │ ├── dsyn_test.scn │ ├── life.scn │ ├── mpdrumssss.scn │ ├── skitter.scn │ ├── space.scn │ ├── stepcvout.scn │ ├── stepwaves.scn │ ├── stepwavescv.scn │ └── this.scn ├── serial-com-proto ├── module-hotswap.c ├── prototype.c └── test-harness.lisp └── tabletool ├── Makefile ├── main.c ├── plot_deltas.plt ├── plot_interp.plt ├── plot_values.plt └── tables.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/README.md -------------------------------------------------------------------------------- /apps/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/LICENSE.TXT -------------------------------------------------------------------------------- /apps/aleph_avr32_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/aleph_avr32_config.mk -------------------------------------------------------------------------------- /apps/aleph_avr32_src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/aleph_avr32_src.mk -------------------------------------------------------------------------------- /apps/bees/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/Makefile -------------------------------------------------------------------------------- /apps/bees/README-OP-GUIDE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/README-OP-GUIDE.txt -------------------------------------------------------------------------------- /apps/bees/aleph-bees.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/aleph-bees.lds -------------------------------------------------------------------------------- /apps/bees/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/config.mk -------------------------------------------------------------------------------- /apps/bees/docs/guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/docs/guide.txt -------------------------------------------------------------------------------- /apps/bees/docs/ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/docs/ops.md -------------------------------------------------------------------------------- /apps/bees/docs/scalers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/docs/scalers.txt -------------------------------------------------------------------------------- /apps/bees/host-serial-protocol.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/host-serial-protocol.org -------------------------------------------------------------------------------- /apps/bees/src/app_bees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/app_bees.c -------------------------------------------------------------------------------- /apps/bees/src/app_bees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/app_bees.h -------------------------------------------------------------------------------- /apps/bees/src/app_timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/app_timers.c -------------------------------------------------------------------------------- /apps/bees/src/app_timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/app_timers.h -------------------------------------------------------------------------------- /apps/bees/src/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/files.c -------------------------------------------------------------------------------- /apps/bees/src/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/files.h -------------------------------------------------------------------------------- /apps/bees/src/flash_bees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/flash_bees.c -------------------------------------------------------------------------------- /apps/bees/src/flash_bees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/flash_bees.h -------------------------------------------------------------------------------- /apps/bees/src/handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/handler.c -------------------------------------------------------------------------------- /apps/bees/src/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/handler.h -------------------------------------------------------------------------------- /apps/bees/src/module_no.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/module_no.h -------------------------------------------------------------------------------- /apps/bees/src/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/net.c -------------------------------------------------------------------------------- /apps/bees/src/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/net.h -------------------------------------------------------------------------------- /apps/bees/src/net_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/net_hid.c -------------------------------------------------------------------------------- /apps/bees/src/net_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/net_hid.h -------------------------------------------------------------------------------- /apps/bees/src/net_malloc_scratch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/net_malloc_scratch.c -------------------------------------------------------------------------------- /apps/bees/src/net_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/net_midi.c -------------------------------------------------------------------------------- /apps/bees/src/net_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/net_midi.h -------------------------------------------------------------------------------- /apps/bees/src/net_monome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/net_monome.c -------------------------------------------------------------------------------- /apps/bees/src/net_monome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/net_monome.h -------------------------------------------------------------------------------- /apps/bees/src/net_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/net_poll.c -------------------------------------------------------------------------------- /apps/bees/src/net_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/net_poll.h -------------------------------------------------------------------------------- /apps/bees/src/net_protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/net_protected.h -------------------------------------------------------------------------------- /apps/bees/src/op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/op.c -------------------------------------------------------------------------------- /apps/bees/src/op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/op.h -------------------------------------------------------------------------------- /apps/bees/src/op_derived.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/op_derived.h -------------------------------------------------------------------------------- /apps/bees/src/op_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/op_gfx.c -------------------------------------------------------------------------------- /apps/bees/src/op_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/op_gfx.h -------------------------------------------------------------------------------- /apps/bees/src/op_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/op_math.c -------------------------------------------------------------------------------- /apps/bees/src/op_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/op_math.h -------------------------------------------------------------------------------- /apps/bees/src/op_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/op_pool.c -------------------------------------------------------------------------------- /apps/bees/src/op_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/op_pool.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_accum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_accum.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_accum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_accum.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_adc.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_adc.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_add.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_add.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_bars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_bars.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_bars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_bars.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_bars8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_bars8.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_bars8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_bars8.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_bignum.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_bignum.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_bits.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_bits.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_cascades.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_cascades.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_cascades.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_cascades.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_change.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_change.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_change.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_ckdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_ckdiv.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_ckdiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_ckdiv.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_cpu.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_cpu.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_delay.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_delay.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_div.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_div.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_divr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_divr.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_divr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_divr.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_enc.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_enc.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_fade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_fade.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_fade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_fade.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_gate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_gate.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_gate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_gate.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_harry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_harry.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_harry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_harry.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_harry.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_harry.lisp -------------------------------------------------------------------------------- /apps/bees/src/ops/op_hid_word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_hid_word.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_hid_word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_hid_word.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_history.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_history.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_is.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_is.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_is.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_is.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_iter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_iter.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_iter.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_kria.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_kria.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_kria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_kria.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_life_classic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_life_classic.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_life_classic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_life_classic.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_linlin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_linlin.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_linlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_linlin.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_list16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_list16.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_list16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_list16.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_list2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_list2.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_list2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_list2.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_list4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_list4.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_list4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_list4.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_list8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_list8.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_list8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_list8.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_logic.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_logic.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_maginc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_maginc.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_maginc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_maginc.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_mem0d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_mem0d.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_mem0d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_mem0d.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_mem1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_mem1d.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_mem1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_mem1d.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_mem2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_mem2d.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_mem2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_mem2d.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_metro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_metro.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_metro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_metro.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_midi_cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_midi_cc.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_midi_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_midi_cc.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_midi_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_midi_clock.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_midi_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_midi_clock.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_midi_note.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_midi_note.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_midi_note.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_midi_note.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_midi_out_cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_midi_out_cc.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_midi_out_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_midi_out_cc.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_midi_prog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_midi_prog.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_midi_prog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_midi_prog.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_mod.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_mod.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_monome_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_monome_arc.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_monome_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_monome_arc.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_mul.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_mul.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_param.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_param.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_poly.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_poly.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_preset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_preset.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_preset.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_random.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_random.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_route.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_route.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_route16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_route16.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_route16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_route16.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_route8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_route8.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_route8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_route8.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_screen.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_screen.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_serial.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_serial.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_shl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_shl.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_shl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_shl.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_shr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_shr.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_shr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_shr.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_split.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_split.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_split4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_split4.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_split4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_split4.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_step.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_step.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_step.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_sub.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_sub.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_sw.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_sw.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_thresh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_thresh.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_thresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_thresh.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_timer.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_timer.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_tog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_tog.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_tog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_tog.h -------------------------------------------------------------------------------- /apps/bees/src/ops/op_ww.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_ww.c -------------------------------------------------------------------------------- /apps/bees/src/ops/op_ww.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ops/op_ww.h -------------------------------------------------------------------------------- /apps/bees/src/pages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/pages.c -------------------------------------------------------------------------------- /apps/bees/src/pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/pages.h -------------------------------------------------------------------------------- /apps/bees/src/pages/page_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/pages/page_dsp.c -------------------------------------------------------------------------------- /apps/bees/src/pages/page_gathered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/pages/page_gathered.c -------------------------------------------------------------------------------- /apps/bees/src/pages/page_ins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/pages/page_ins.c -------------------------------------------------------------------------------- /apps/bees/src/pages/page_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/pages/page_ops.c -------------------------------------------------------------------------------- /apps/bees/src/pages/page_outs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/pages/page_outs.c -------------------------------------------------------------------------------- /apps/bees/src/pages/page_play.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/pages/page_play.c -------------------------------------------------------------------------------- /apps/bees/src/pages/page_presets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/pages/page_presets.c -------------------------------------------------------------------------------- /apps/bees/src/pages/page_scenes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/pages/page_scenes.c -------------------------------------------------------------------------------- /apps/bees/src/param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/param.c -------------------------------------------------------------------------------- /apps/bees/src/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/param.h -------------------------------------------------------------------------------- /apps/bees/src/param_scaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/param_scaler.c -------------------------------------------------------------------------------- /apps/bees/src/param_scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/param_scaler.h -------------------------------------------------------------------------------- /apps/bees/src/pickle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/pickle.c -------------------------------------------------------------------------------- /apps/bees/src/pickle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/pickle.h -------------------------------------------------------------------------------- /apps/bees/src/play.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/play.c -------------------------------------------------------------------------------- /apps/bees/src/play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/play.h -------------------------------------------------------------------------------- /apps/bees/src/preset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/preset.c -------------------------------------------------------------------------------- /apps/bees/src/preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/preset.h -------------------------------------------------------------------------------- /apps/bees/src/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/render.c -------------------------------------------------------------------------------- /apps/bees/src/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/render.h -------------------------------------------------------------------------------- /apps/bees/src/scalers/scaler_amp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/scalers/scaler_amp.c -------------------------------------------------------------------------------- /apps/bees/src/scalers/scaler_amp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/scalers/scaler_amp.h -------------------------------------------------------------------------------- /apps/bees/src/scalers/scaler_bool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/scalers/scaler_bool.c -------------------------------------------------------------------------------- /apps/bees/src/scalers/scaler_bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/scalers/scaler_bool.h -------------------------------------------------------------------------------- /apps/bees/src/scalers/scaler_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/scalers/scaler_fix.c -------------------------------------------------------------------------------- /apps/bees/src/scalers/scaler_fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/scalers/scaler_fix.h -------------------------------------------------------------------------------- /apps/bees/src/scalers/scaler_note.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/scalers/scaler_note.c -------------------------------------------------------------------------------- /apps/bees/src/scalers/scaler_note.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/scalers/scaler_note.h -------------------------------------------------------------------------------- /apps/bees/src/scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/scene.c -------------------------------------------------------------------------------- /apps/bees/src/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/scene.h -------------------------------------------------------------------------------- /apps/bees/src/ser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ser.c -------------------------------------------------------------------------------- /apps/bees/src/ser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ser.h -------------------------------------------------------------------------------- /apps/bees/src/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/ui.h -------------------------------------------------------------------------------- /apps/bees/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/util.c -------------------------------------------------------------------------------- /apps/bees/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/src/util.h -------------------------------------------------------------------------------- /apps/bees/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/bees/version.mk -------------------------------------------------------------------------------- /apps/mix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/Makefile -------------------------------------------------------------------------------- /apps/mix/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/README -------------------------------------------------------------------------------- /apps/mix/aleph-mix.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/aleph-mix.lds -------------------------------------------------------------------------------- /apps/mix/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/config.mk -------------------------------------------------------------------------------- /apps/mix/src/aleph-mix.ldr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/aleph-mix.ldr.inc -------------------------------------------------------------------------------- /apps/mix/src/aleph-mix.ldr_size.inc: -------------------------------------------------------------------------------- 1 | 10858 -------------------------------------------------------------------------------- /apps/mix/src/amp_table_db.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/amp_table_db.inc -------------------------------------------------------------------------------- /apps/mix/src/amp_table_linear.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/amp_table_linear.inc -------------------------------------------------------------------------------- /apps/mix/src/app_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/app_mix.c -------------------------------------------------------------------------------- /apps/mix/src/app_timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/app_timers.c -------------------------------------------------------------------------------- /apps/mix/src/app_timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/app_timers.h -------------------------------------------------------------------------------- /apps/mix/src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/ctl.c -------------------------------------------------------------------------------- /apps/mix/src/ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/ctl.h -------------------------------------------------------------------------------- /apps/mix/src/handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/handler.c -------------------------------------------------------------------------------- /apps/mix/src/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/handler.h -------------------------------------------------------------------------------- /apps/mix/src/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/render.c -------------------------------------------------------------------------------- /apps/mix/src/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/render.h -------------------------------------------------------------------------------- /apps/mix/src/scaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/scaler.c -------------------------------------------------------------------------------- /apps/mix/src/scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/mix/src/scaler.h -------------------------------------------------------------------------------- /apps/mix/version.mk: -------------------------------------------------------------------------------- 1 | maj=0 2 | min=0 3 | rev=0 -------------------------------------------------------------------------------- /apps/picolisp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/Makefile -------------------------------------------------------------------------------- /apps/picolisp/aleph-picolisp.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/aleph-picolisp.lds -------------------------------------------------------------------------------- /apps/picolisp/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/config.mk -------------------------------------------------------------------------------- /apps/picolisp/src/app_picolisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/app_picolisp.c -------------------------------------------------------------------------------- /apps/picolisp/src/app_timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/app_timers.c -------------------------------------------------------------------------------- /apps/picolisp/src/app_timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/app_timers.h -------------------------------------------------------------------------------- /apps/picolisp/src/apply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/apply.c -------------------------------------------------------------------------------- /apps/picolisp/src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/ctl.c -------------------------------------------------------------------------------- /apps/picolisp/src/ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/ctl.h -------------------------------------------------------------------------------- /apps/picolisp/src/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/files.c -------------------------------------------------------------------------------- /apps/picolisp/src/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/files.h -------------------------------------------------------------------------------- /apps/picolisp/src/flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/flow.c -------------------------------------------------------------------------------- /apps/picolisp/src/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/gc.c -------------------------------------------------------------------------------- /apps/picolisp/src/handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/handler.c -------------------------------------------------------------------------------- /apps/picolisp/src/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/handler.h -------------------------------------------------------------------------------- /apps/picolisp/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/io.c -------------------------------------------------------------------------------- /apps/picolisp/src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/math.c -------------------------------------------------------------------------------- /apps/picolisp/src/pico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/pico.h -------------------------------------------------------------------------------- /apps/picolisp/src/picolisp_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/picolisp_mod.h -------------------------------------------------------------------------------- /apps/picolisp/src/pil_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/pil_main.c -------------------------------------------------------------------------------- /apps/picolisp/src/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/render.c -------------------------------------------------------------------------------- /apps/picolisp/src/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/render.h -------------------------------------------------------------------------------- /apps/picolisp/src/ser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/ser.c -------------------------------------------------------------------------------- /apps/picolisp/src/ser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/ser.h -------------------------------------------------------------------------------- /apps/picolisp/src/subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/subr.c -------------------------------------------------------------------------------- /apps/picolisp/src/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/sym.c -------------------------------------------------------------------------------- /apps/picolisp/src/tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/tab.c -------------------------------------------------------------------------------- /apps/picolisp/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/util.c -------------------------------------------------------------------------------- /apps/picolisp/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/picolisp/src/util.h -------------------------------------------------------------------------------- /apps/picolisp/version.mk: -------------------------------------------------------------------------------- 1 | maj=0 2 | min=0 3 | rev=0 -------------------------------------------------------------------------------- /apps/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/apps/readme.txt -------------------------------------------------------------------------------- /avr32/src/adc_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/adc_poll.c -------------------------------------------------------------------------------- /avr32/src/adc_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/adc_poll.h -------------------------------------------------------------------------------- /avr32/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/app.c -------------------------------------------------------------------------------- /avr32/src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/app.h -------------------------------------------------------------------------------- /avr32/src/bfin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/bfin.c -------------------------------------------------------------------------------- /avr32/src/bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/bfin.h -------------------------------------------------------------------------------- /avr32/src/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/control.c -------------------------------------------------------------------------------- /avr32/src/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/control.h -------------------------------------------------------------------------------- /avr32/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/debug.h -------------------------------------------------------------------------------- /avr32/src/encoders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/encoders.c -------------------------------------------------------------------------------- /avr32/src/encoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/encoders.h -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/API.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/API.txt -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/COPYRIGHT.txt -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/History.txt -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/License.txt -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/example.c -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_access.c -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_access.h -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_cache.c -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_cache.h -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_defs.h -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_filelib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_filelib.c -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_filelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_filelib.h -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_format.c -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_format.h -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_list.h -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_misc.c -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_misc.h -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_opts.h -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_string.c -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_string.h -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_table.c -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_table.h -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_types.h -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_write.c -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/fat_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fat_io_lib/fat_write.h -------------------------------------------------------------------------------- /avr32/src/fat_io_lib/version.txt: -------------------------------------------------------------------------------- 1 | 2.6.8 2 | -------------------------------------------------------------------------------- /avr32/src/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/filesystem.c -------------------------------------------------------------------------------- /avr32/src/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/filesystem.h -------------------------------------------------------------------------------- /avr32/src/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/flash.c -------------------------------------------------------------------------------- /avr32/src/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/flash.h -------------------------------------------------------------------------------- /avr32/src/font_aa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/font_aa.c -------------------------------------------------------------------------------- /avr32/src/font_aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/font_aa.h -------------------------------------------------------------------------------- /avr32/src/fonts/ume_tgo5_18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fonts/ume_tgo5_18.c -------------------------------------------------------------------------------- /avr32/src/fonts/ume_tgo5_18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/fonts/ume_tgo5_18.h -------------------------------------------------------------------------------- /avr32/src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/global.h -------------------------------------------------------------------------------- /avr32/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/init.c -------------------------------------------------------------------------------- /avr32/src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/init.h -------------------------------------------------------------------------------- /avr32/src/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/interrupts.c -------------------------------------------------------------------------------- /avr32/src/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/interrupts.h -------------------------------------------------------------------------------- /avr32/src/link_aleph.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/link_aleph.lds -------------------------------------------------------------------------------- /avr32/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/main.c -------------------------------------------------------------------------------- /avr32/src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/memory.c -------------------------------------------------------------------------------- /avr32/src/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/memory.h -------------------------------------------------------------------------------- /avr32/src/print_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/print_funcs.c -------------------------------------------------------------------------------- /avr32/src/print_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/print_funcs.h -------------------------------------------------------------------------------- /avr32/src/region_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/region_extra.c -------------------------------------------------------------------------------- /avr32/src/region_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/region_extra.h -------------------------------------------------------------------------------- /avr32/src/screen_startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/screen_startup.c -------------------------------------------------------------------------------- /avr32/src/screen_startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/screen_startup.h -------------------------------------------------------------------------------- /avr32/src/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/serial.c -------------------------------------------------------------------------------- /avr32/src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/serial.h -------------------------------------------------------------------------------- /avr32/src/simple_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/simple_string.c -------------------------------------------------------------------------------- /avr32/src/simple_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/simple_string.h -------------------------------------------------------------------------------- /avr32/src/startup_glyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/startup_glyph.c -------------------------------------------------------------------------------- /avr32/src/switches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/switches.c -------------------------------------------------------------------------------- /avr32/src/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/src/switches.h -------------------------------------------------------------------------------- /avr32/startup/startup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/startup/startup.S -------------------------------------------------------------------------------- /avr32/startup/trampoline.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/startup/trampoline.S -------------------------------------------------------------------------------- /avr32/startup/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/avr32/startup/trampoline.h -------------------------------------------------------------------------------- /bfin_lib/UNLICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/UNLICENSE.TXT -------------------------------------------------------------------------------- /bfin_lib/bfin_lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/bfin_lib.mk -------------------------------------------------------------------------------- /bfin_lib/obj/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bfin_lib/src/bfin_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/bfin_core.h -------------------------------------------------------------------------------- /bfin_lib/src/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/control.c -------------------------------------------------------------------------------- /bfin_lib/src/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/control.h -------------------------------------------------------------------------------- /bfin_lib/src/cv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/cv.c -------------------------------------------------------------------------------- /bfin_lib/src/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/cv.h -------------------------------------------------------------------------------- /bfin_lib/src/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/desc.c -------------------------------------------------------------------------------- /bfin_lib/src/fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/fix.c -------------------------------------------------------------------------------- /bfin_lib/src/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/fix.h -------------------------------------------------------------------------------- /bfin_lib/src/fix16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/fix16.c -------------------------------------------------------------------------------- /bfin_lib/src/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/gpio.h -------------------------------------------------------------------------------- /bfin_lib/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/init.c -------------------------------------------------------------------------------- /bfin_lib/src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/init.h -------------------------------------------------------------------------------- /bfin_lib/src/isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/isr.c -------------------------------------------------------------------------------- /bfin_lib/src/isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/isr.h -------------------------------------------------------------------------------- /bfin_lib/src/libfixmath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/libfixmath/Makefile -------------------------------------------------------------------------------- /bfin_lib/src/libfixmath/fix16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/libfixmath/fix16.c -------------------------------------------------------------------------------- /bfin_lib/src/libfixmath/fix16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/libfixmath/fix16.h -------------------------------------------------------------------------------- /bfin_lib/src/libfixmath/fix16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/libfixmath/fix16.hpp -------------------------------------------------------------------------------- /bfin_lib/src/libfixmath/fix16_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/libfixmath/fix16_exp.c -------------------------------------------------------------------------------- /bfin_lib/src/libfixmath/fix32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/libfixmath/fix32.c -------------------------------------------------------------------------------- /bfin_lib/src/libfixmath/fix32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/libfixmath/fix32.h -------------------------------------------------------------------------------- /bfin_lib/src/libfixmath/fixmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/libfixmath/fixmath.h -------------------------------------------------------------------------------- /bfin_lib/src/libfixmath/fract32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/libfixmath/fract32.c -------------------------------------------------------------------------------- /bfin_lib/src/libfixmath/fract32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/libfixmath/fract32.h -------------------------------------------------------------------------------- /bfin_lib/src/libfixmath/int64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/libfixmath/int64.h -------------------------------------------------------------------------------- /bfin_lib/src/libfixmath/uint32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/libfixmath/uint32.c -------------------------------------------------------------------------------- /bfin_lib/src/libfixmath/uint32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/libfixmath/uint32.h -------------------------------------------------------------------------------- /bfin_lib/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/main.c -------------------------------------------------------------------------------- /bfin_lib/src/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/module.h -------------------------------------------------------------------------------- /bfin_lib/src/pickle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/pickle.c -------------------------------------------------------------------------------- /bfin_lib/src/pickle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/pickle.h -------------------------------------------------------------------------------- /bfin_lib/src/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/spi.c -------------------------------------------------------------------------------- /bfin_lib/src/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/spi.h -------------------------------------------------------------------------------- /bfin_lib/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/util.c -------------------------------------------------------------------------------- /bfin_lib/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib/src/util.h -------------------------------------------------------------------------------- /bfin_lib_block/UNLICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/UNLICENSE.TXT -------------------------------------------------------------------------------- /bfin_lib_block/bfin_lib_block.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/bfin_lib_block.mk -------------------------------------------------------------------------------- /bfin_lib_block/obj/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bfin_lib_block/src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/audio.c -------------------------------------------------------------------------------- /bfin_lib_block/src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/audio.h -------------------------------------------------------------------------------- /bfin_lib_block/src/clock_ebiu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/clock_ebiu.c -------------------------------------------------------------------------------- /bfin_lib_block/src/clock_ebiu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/clock_ebiu.h -------------------------------------------------------------------------------- /bfin_lib_block/src/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/control.c -------------------------------------------------------------------------------- /bfin_lib_block/src/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/control.h -------------------------------------------------------------------------------- /bfin_lib_block/src/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/desc.c -------------------------------------------------------------------------------- /bfin_lib_block/src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/dma.c -------------------------------------------------------------------------------- /bfin_lib_block/src/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/dma.h -------------------------------------------------------------------------------- /bfin_lib_block/src/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/fix.h -------------------------------------------------------------------------------- /bfin_lib_block/src/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/gpio.c -------------------------------------------------------------------------------- /bfin_lib_block/src/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/gpio.h -------------------------------------------------------------------------------- /bfin_lib_block/src/isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/isr.c -------------------------------------------------------------------------------- /bfin_lib_block/src/isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/isr.h -------------------------------------------------------------------------------- /bfin_lib_block/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/main.c -------------------------------------------------------------------------------- /bfin_lib_block/src/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/module.h -------------------------------------------------------------------------------- /bfin_lib_block/src/pickle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/pickle.c -------------------------------------------------------------------------------- /bfin_lib_block/src/pickle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/pickle.h -------------------------------------------------------------------------------- /bfin_lib_block/src/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/serial.c -------------------------------------------------------------------------------- /bfin_lib_block/src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/serial.h -------------------------------------------------------------------------------- /bfin_lib_block/src/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/spi.c -------------------------------------------------------------------------------- /bfin_lib_block/src/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/bfin_lib_block/src/spi.h -------------------------------------------------------------------------------- /common/buffer_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/common/buffer_common.h -------------------------------------------------------------------------------- /common/fract32_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/common/fract32_emu.c -------------------------------------------------------------------------------- /common/fract32_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/common/fract32_emu.h -------------------------------------------------------------------------------- /common/module_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/common/module_common.h -------------------------------------------------------------------------------- /common/param_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/common/param_common.h -------------------------------------------------------------------------------- /common/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/common/protocol.h -------------------------------------------------------------------------------- /common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/common/types.h -------------------------------------------------------------------------------- /docs/modules/dsyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/docs/modules/dsyn.txt -------------------------------------------------------------------------------- /docs/modules/lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/docs/modules/lines.txt -------------------------------------------------------------------------------- /docs/modules/waves.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/docs/modules/waves.txt -------------------------------------------------------------------------------- /docs/operator-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/docs/operator-diagram.svg -------------------------------------------------------------------------------- /docs/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/docs/params.txt -------------------------------------------------------------------------------- /dsp-block-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/Makefile -------------------------------------------------------------------------------- /dsp-block-test/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/audio.c -------------------------------------------------------------------------------- /dsp-block-test/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/audio.h -------------------------------------------------------------------------------- /dsp-block-test/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/dma.c -------------------------------------------------------------------------------- /dsp-block-test/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/dma.h -------------------------------------------------------------------------------- /dsp-block-test/dsp-block-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/dsp-block-test -------------------------------------------------------------------------------- /dsp-block-test/dsp-block-test.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/dsp-block-test.lds -------------------------------------------------------------------------------- /dsp-block-test/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/gpio.h -------------------------------------------------------------------------------- /dsp-block-test/isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/isr.c -------------------------------------------------------------------------------- /dsp-block-test/isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/isr.h -------------------------------------------------------------------------------- /dsp-block-test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/main.c -------------------------------------------------------------------------------- /dsp-block-test/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/module.c -------------------------------------------------------------------------------- /dsp-block-test/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/module.h -------------------------------------------------------------------------------- /dsp-block-test/osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/osc.c -------------------------------------------------------------------------------- /dsp-block-test/osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/osc.h -------------------------------------------------------------------------------- /dsp-block-test/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/process.h -------------------------------------------------------------------------------- /dsp-block-test/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/serial.c -------------------------------------------------------------------------------- /dsp-block-test/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/serial.h -------------------------------------------------------------------------------- /dsp-block-test/sine_table_inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/sine_table_inc.c -------------------------------------------------------------------------------- /dsp-block-test/wavtab_data_inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp-block-test/wavtab_data_inc.c -------------------------------------------------------------------------------- /dsp/README.txt: -------------------------------------------------------------------------------- 1 | ALEPH audio library. 2 | -------------------------------------------------------------------------------- /dsp/UNLICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/UNLICENSE.TXT -------------------------------------------------------------------------------- /dsp/biquad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/biquad.c -------------------------------------------------------------------------------- /dsp/biquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/biquad.h -------------------------------------------------------------------------------- /dsp/bl_osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/bl_osc.c -------------------------------------------------------------------------------- /dsp/bl_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/bl_osc.h -------------------------------------------------------------------------------- /dsp/bl_osc_table.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/bl_osc_table.scd -------------------------------------------------------------------------------- /dsp/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/buffer.c -------------------------------------------------------------------------------- /dsp/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/buffer.h -------------------------------------------------------------------------------- /dsp/buffer16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/buffer16.c -------------------------------------------------------------------------------- /dsp/buffer16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/buffer16.h -------------------------------------------------------------------------------- /dsp/conversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/conversion.c -------------------------------------------------------------------------------- /dsp/conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/conversion.h -------------------------------------------------------------------------------- /dsp/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/delay.c -------------------------------------------------------------------------------- /dsp/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/delay.h -------------------------------------------------------------------------------- /dsp/delayFade24_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/delayFade24_8.c -------------------------------------------------------------------------------- /dsp/delayFade24_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/delayFade24_8.h -------------------------------------------------------------------------------- /dsp/delayFadeN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/delayFadeN.c -------------------------------------------------------------------------------- /dsp/delayFadeN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/delayFadeN.h -------------------------------------------------------------------------------- /dsp/delayN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/delayN.c -------------------------------------------------------------------------------- /dsp/delayN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/delayN.h -------------------------------------------------------------------------------- /dsp/echoTap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/echoTap.c -------------------------------------------------------------------------------- /dsp/echoTap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/echoTap.h -------------------------------------------------------------------------------- /dsp/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/env.c -------------------------------------------------------------------------------- /dsp/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/env.h -------------------------------------------------------------------------------- /dsp/env_adsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/env_adsr.c -------------------------------------------------------------------------------- /dsp/env_adsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/env_adsr.h -------------------------------------------------------------------------------- /dsp/env_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/env_exp.c -------------------------------------------------------------------------------- /dsp/env_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/env_exp.h -------------------------------------------------------------------------------- /dsp/env_trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/env_trig.c -------------------------------------------------------------------------------- /dsp/env_trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/env_trig.h -------------------------------------------------------------------------------- /dsp/fade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/fade.c -------------------------------------------------------------------------------- /dsp/fade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/fade.h -------------------------------------------------------------------------------- /dsp/filter-crossover-coeffs.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/filter-crossover-coeffs.lisp -------------------------------------------------------------------------------- /dsp/filter_1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/filter_1p.c -------------------------------------------------------------------------------- /dsp/filter_1p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/filter_1p.h -------------------------------------------------------------------------------- /dsp/filter_2p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/filter_2p.c -------------------------------------------------------------------------------- /dsp/filter_2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/filter_2p.h -------------------------------------------------------------------------------- /dsp/filter_crossover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/filter_crossover.c -------------------------------------------------------------------------------- /dsp/filter_crossover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/filter_crossover.h -------------------------------------------------------------------------------- /dsp/filter_ladder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/filter_ladder.c -------------------------------------------------------------------------------- /dsp/filter_ladder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/filter_ladder.h -------------------------------------------------------------------------------- /dsp/filter_ramp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/filter_ramp.c -------------------------------------------------------------------------------- /dsp/filter_ramp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/filter_ramp.h -------------------------------------------------------------------------------- /dsp/filter_svf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/filter_svf.c -------------------------------------------------------------------------------- /dsp/filter_svf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/filter_svf.h -------------------------------------------------------------------------------- /dsp/fm_voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/fm_voice.c -------------------------------------------------------------------------------- /dsp/fm_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/fm_voice.h -------------------------------------------------------------------------------- /dsp/grain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/grain.c -------------------------------------------------------------------------------- /dsp/grain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/grain.h -------------------------------------------------------------------------------- /dsp/halfsine_1024.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/halfsine_1024.inc -------------------------------------------------------------------------------- /dsp/interpolate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/interpolate.c -------------------------------------------------------------------------------- /dsp/interpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/interpolate.h -------------------------------------------------------------------------------- /dsp/noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/noise.c -------------------------------------------------------------------------------- /dsp/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/noise.h -------------------------------------------------------------------------------- /dsp/null/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/Makefile -------------------------------------------------------------------------------- /dsp/null/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/README.txt -------------------------------------------------------------------------------- /dsp/null/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/audio.c -------------------------------------------------------------------------------- /dsp/null/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/audio.h -------------------------------------------------------------------------------- /dsp/null/fract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/fract.h -------------------------------------------------------------------------------- /dsp/null/fract_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/fract_math.h -------------------------------------------------------------------------------- /dsp/null/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/main.c -------------------------------------------------------------------------------- /dsp/null/makelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/makelog -------------------------------------------------------------------------------- /dsp/null/mono.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/mono.plt -------------------------------------------------------------------------------- /dsp/null/mono_fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/mono_fm.c -------------------------------------------------------------------------------- /dsp/null/num.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/num.scd -------------------------------------------------------------------------------- /dsp/null/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/out.txt -------------------------------------------------------------------------------- /dsp/null/tape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/tape.c -------------------------------------------------------------------------------- /dsp/null/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/ui.c -------------------------------------------------------------------------------- /dsp/null/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/null/ui.h -------------------------------------------------------------------------------- /dsp/osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/osc.c -------------------------------------------------------------------------------- /dsp/osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/osc.h -------------------------------------------------------------------------------- /dsp/osc_polyblep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/osc_polyblep.c -------------------------------------------------------------------------------- /dsp/osc_polyblep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/osc_polyblep.h -------------------------------------------------------------------------------- /dsp/pan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/pan.c -------------------------------------------------------------------------------- /dsp/pan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/pan.h -------------------------------------------------------------------------------- /dsp/pitch_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/pitch_shift.c -------------------------------------------------------------------------------- /dsp/pitch_shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/pitch_shift.h -------------------------------------------------------------------------------- /dsp/ricks_tricks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/ricks_tricks.c -------------------------------------------------------------------------------- /dsp/ricks_tricks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/ricks_tricks.h -------------------------------------------------------------------------------- /dsp/scrubTap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/scrubTap.c -------------------------------------------------------------------------------- /dsp/scrubTap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/scrubTap.h -------------------------------------------------------------------------------- /dsp/shapers.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/shapers.scd -------------------------------------------------------------------------------- /dsp/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/table.c -------------------------------------------------------------------------------- /dsp/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/dsp/table.h -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/install.sh -------------------------------------------------------------------------------- /modules/README_params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/README_params.txt -------------------------------------------------------------------------------- /modules/UNLICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/UNLICENSE.TXT -------------------------------------------------------------------------------- /modules/acid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/Makefile -------------------------------------------------------------------------------- /modules/acid/acid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/acid.c -------------------------------------------------------------------------------- /modules/acid/acid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/acid.h -------------------------------------------------------------------------------- /modules/acid/acid.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/acid.lab -------------------------------------------------------------------------------- /modules/acid/acid.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/acid.lds -------------------------------------------------------------------------------- /modules/acid/dsyn_voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/dsyn_voice.c -------------------------------------------------------------------------------- /modules/acid/dsyn_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/dsyn_voice.h -------------------------------------------------------------------------------- /modules/acid/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/module_custom.h -------------------------------------------------------------------------------- /modules/acid/monosynth_voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/monosynth_voice.c -------------------------------------------------------------------------------- /modules/acid/monosynth_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/monosynth_voice.h -------------------------------------------------------------------------------- /modules/acid/noise_acid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/noise_acid.c -------------------------------------------------------------------------------- /modules/acid/noise_acid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/noise_acid.h -------------------------------------------------------------------------------- /modules/acid/param_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/param_desc.c -------------------------------------------------------------------------------- /modules/acid/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/params.c -------------------------------------------------------------------------------- /modules/acid/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/params.h -------------------------------------------------------------------------------- /modules/acid/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/acid/version.mk -------------------------------------------------------------------------------- /modules/analyser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/analyser/Makefile -------------------------------------------------------------------------------- /modules/analyser/analyser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/analyser/analyser.c -------------------------------------------------------------------------------- /modules/analyser/analyser.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/analyser/analyser.lds -------------------------------------------------------------------------------- /modules/analyser/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/analyser/module_custom.h -------------------------------------------------------------------------------- /modules/analyser/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/analyser/params.c -------------------------------------------------------------------------------- /modules/analyser/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/analyser/params.h -------------------------------------------------------------------------------- /modules/analyser/soft_clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/analyser/soft_clip.c -------------------------------------------------------------------------------- /modules/analyser/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/analyser/version.mk -------------------------------------------------------------------------------- /modules/dacs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dacs/Makefile -------------------------------------------------------------------------------- /modules/dacs/dacs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dacs/dacs.c -------------------------------------------------------------------------------- /modules/dacs/dacs.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dacs/dacs.lds -------------------------------------------------------------------------------- /modules/dacs/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dacs/module_custom.h -------------------------------------------------------------------------------- /modules/dacs/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dacs/params.c -------------------------------------------------------------------------------- /modules/dacs/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dacs/params.h -------------------------------------------------------------------------------- /modules/dacs/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dacs/version.mk -------------------------------------------------------------------------------- /modules/dsyn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dsyn/Makefile -------------------------------------------------------------------------------- /modules/dsyn/dsyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dsyn/dsyn.c -------------------------------------------------------------------------------- /modules/dsyn/dsyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dsyn/dsyn.h -------------------------------------------------------------------------------- /modules/dsyn/dsyn.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dsyn/dsyn.lds -------------------------------------------------------------------------------- /modules/dsyn/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dsyn/module_custom.h -------------------------------------------------------------------------------- /modules/dsyn/noise_dsyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dsyn/noise_dsyn.c -------------------------------------------------------------------------------- /modules/dsyn/noise_dsyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dsyn/noise_dsyn.h -------------------------------------------------------------------------------- /modules/dsyn/param_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dsyn/param_desc.c -------------------------------------------------------------------------------- /modules/dsyn/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dsyn/params.c -------------------------------------------------------------------------------- /modules/dsyn/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dsyn/params.h -------------------------------------------------------------------------------- /modules/dsyn/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/dsyn/version.mk -------------------------------------------------------------------------------- /modules/fmsynth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/fmsynth/Makefile -------------------------------------------------------------------------------- /modules/fmsynth/fmsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/fmsynth/fmsynth.c -------------------------------------------------------------------------------- /modules/fmsynth/fmsynth.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/fmsynth/fmsynth.lab -------------------------------------------------------------------------------- /modules/fmsynth/fmsynth.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/fmsynth/fmsynth.lds -------------------------------------------------------------------------------- /modules/fmsynth/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/fmsynth/module_custom.h -------------------------------------------------------------------------------- /modules/fmsynth/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/fmsynth/params.c -------------------------------------------------------------------------------- /modules/fmsynth/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/fmsynth/params.h -------------------------------------------------------------------------------- /modules/fmsynth/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/fmsynth/version.mk -------------------------------------------------------------------------------- /modules/grains/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/grains/Makefile -------------------------------------------------------------------------------- /modules/grains/bfin_emu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/grains/bfin_emu/main.c -------------------------------------------------------------------------------- /modules/grains/bfin_emu/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/grains/bfin_emu/types.h -------------------------------------------------------------------------------- /modules/grains/fract32_jack.h: -------------------------------------------------------------------------------- 1 | fract32 clip_to_fr32(long x); 2 | -------------------------------------------------------------------------------- /modules/grains/grains.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/grains/grains.c -------------------------------------------------------------------------------- /modules/grains/grains.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/grains/grains.lab -------------------------------------------------------------------------------- /modules/grains/grains.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/grains/grains.lds -------------------------------------------------------------------------------- /modules/grains/grains.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/grains/grains.org -------------------------------------------------------------------------------- /modules/grains/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/grains/module_custom.h -------------------------------------------------------------------------------- /modules/grains/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/grains/params.c -------------------------------------------------------------------------------- /modules/grains/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/grains/params.h -------------------------------------------------------------------------------- /modules/grains/test-jack-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/grains/test-jack-client.sh -------------------------------------------------------------------------------- /modules/grains/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/grains/version.mk -------------------------------------------------------------------------------- /modules/lines/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/lines/Makefile -------------------------------------------------------------------------------- /modules/lines/aleph-lines.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/lines/aleph-lines.lds -------------------------------------------------------------------------------- /modules/lines/delayFadeN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/lines/delayFadeN.c -------------------------------------------------------------------------------- /modules/lines/delayFadeN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/lines/delayFadeN.h -------------------------------------------------------------------------------- /modules/lines/lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/lines/lines.c -------------------------------------------------------------------------------- /modules/lines/lines.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/lines/lines.lds -------------------------------------------------------------------------------- /modules/lines/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/lines/module_custom.h -------------------------------------------------------------------------------- /modules/lines/param_gen.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/lines/param_gen.scd -------------------------------------------------------------------------------- /modules/lines/param_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/lines/param_set.c -------------------------------------------------------------------------------- /modules/lines/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/lines/params.c -------------------------------------------------------------------------------- /modules/lines/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/lines/params.h -------------------------------------------------------------------------------- /modules/lines/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/lines/version.mk -------------------------------------------------------------------------------- /modules/mix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/mix/Makefile -------------------------------------------------------------------------------- /modules/mix/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/mix/README -------------------------------------------------------------------------------- /modules/mix/mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/mix/mix.c -------------------------------------------------------------------------------- /modules/mix/mix.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/mix/mix.lds -------------------------------------------------------------------------------- /modules/mix/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/mix/module_custom.h -------------------------------------------------------------------------------- /modules/mix/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/mix/params.c -------------------------------------------------------------------------------- /modules/mix/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/mix/params.h -------------------------------------------------------------------------------- /modules/mix/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/mix/version.mk -------------------------------------------------------------------------------- /modules/monosynth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/monosynth/Makefile -------------------------------------------------------------------------------- /modules/monosynth/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/monosynth/module_custom.h -------------------------------------------------------------------------------- /modules/monosynth/monosynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/monosynth/monosynth.c -------------------------------------------------------------------------------- /modules/monosynth/monosynth.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/monosynth/monosynth.lds -------------------------------------------------------------------------------- /modules/monosynth/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/monosynth/params.c -------------------------------------------------------------------------------- /modules/monosynth/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/monosynth/params.h -------------------------------------------------------------------------------- /modules/monosynth/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/monosynth/version.mk -------------------------------------------------------------------------------- /modules/tape/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/tape/Makefile -------------------------------------------------------------------------------- /modules/tape/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/tape/module_custom.h -------------------------------------------------------------------------------- /modules/tape/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/tape/params.c -------------------------------------------------------------------------------- /modules/tape/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/tape/params.h -------------------------------------------------------------------------------- /modules/tape/tape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/tape/tape.c -------------------------------------------------------------------------------- /modules/tape/tape.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/tape/tape.lds -------------------------------------------------------------------------------- /modules/tape/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/tape/version.mk -------------------------------------------------------------------------------- /modules/varilines/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/varilines/Makefile -------------------------------------------------------------------------------- /modules/varilines/lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/varilines/lines.c -------------------------------------------------------------------------------- /modules/varilines/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/varilines/module_custom.h -------------------------------------------------------------------------------- /modules/varilines/param_gen.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/varilines/param_gen.scd -------------------------------------------------------------------------------- /modules/varilines/param_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/varilines/param_set.c -------------------------------------------------------------------------------- /modules/varilines/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/varilines/params.c -------------------------------------------------------------------------------- /modules/varilines/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/varilines/params.h -------------------------------------------------------------------------------- /modules/varilines/varilines.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/varilines/varilines.lds -------------------------------------------------------------------------------- /modules/varilines/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/varilines/version.mk -------------------------------------------------------------------------------- /modules/voder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/voder/Makefile -------------------------------------------------------------------------------- /modules/voder/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/voder/module_custom.h -------------------------------------------------------------------------------- /modules/voder/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/voder/params.c -------------------------------------------------------------------------------- /modules/voder/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/voder/params.h -------------------------------------------------------------------------------- /modules/voder/polyblep-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/voder/polyblep-test.c -------------------------------------------------------------------------------- /modules/voder/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/voder/version.mk -------------------------------------------------------------------------------- /modules/voder/voder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/voder/voder.c -------------------------------------------------------------------------------- /modules/voder/voder.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/voder/voder.lds -------------------------------------------------------------------------------- /modules/voder/voder.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/voder/voder.org -------------------------------------------------------------------------------- /modules/waves/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/waves/Makefile -------------------------------------------------------------------------------- /modules/waves/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/waves/module_custom.h -------------------------------------------------------------------------------- /modules/waves/osc_waves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/waves/osc_waves.c -------------------------------------------------------------------------------- /modules/waves/osc_waves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/waves/osc_waves.h -------------------------------------------------------------------------------- /modules/waves/param_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/waves/param_set.c -------------------------------------------------------------------------------- /modules/waves/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/waves/params.c -------------------------------------------------------------------------------- /modules/waves/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/waves/params.h -------------------------------------------------------------------------------- /modules/waves/slew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/waves/slew.h -------------------------------------------------------------------------------- /modules/waves/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/waves/version.mk -------------------------------------------------------------------------------- /modules/waves/waves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/waves/waves.c -------------------------------------------------------------------------------- /modules/waves/waves.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/waves/waves.lds -------------------------------------------------------------------------------- /modules/waves/wavtab.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/waves/wavtab.scd -------------------------------------------------------------------------------- /modules/waves/wavtab_data_inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules/waves/wavtab_data_inc.c -------------------------------------------------------------------------------- /modules_block/rawsc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules_block/rawsc/Makefile -------------------------------------------------------------------------------- /modules_block/rawsc/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules_block/rawsc/module.c -------------------------------------------------------------------------------- /modules_block/rawsc/module_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules_block/rawsc/module_custom.h -------------------------------------------------------------------------------- /modules_block/rawsc/osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules_block/rawsc/osc.c -------------------------------------------------------------------------------- /modules_block/rawsc/osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules_block/rawsc/osc.h -------------------------------------------------------------------------------- /modules_block/rawsc/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules_block/rawsc/params.c -------------------------------------------------------------------------------- /modules_block/rawsc/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules_block/rawsc/params.h -------------------------------------------------------------------------------- /modules_block/rawsc/rawsc.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules_block/rawsc/rawsc.lds -------------------------------------------------------------------------------- /modules_block/rawsc/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/modules_block/rawsc/version.mk -------------------------------------------------------------------------------- /utils/aleph-com/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/aleph-com/README -------------------------------------------------------------------------------- /utils/aleph-com/a.sh: -------------------------------------------------------------------------------- 1 | python aleph-com.py /dev/tty.usbmodemfd111 2 | -------------------------------------------------------------------------------- /utils/aleph-com/aleph-com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/aleph-com/aleph-com.py -------------------------------------------------------------------------------- /utils/avr32_blank/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/Makefile -------------------------------------------------------------------------------- /utils/avr32_blank/aleph-blank.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/aleph-blank.lds -------------------------------------------------------------------------------- /utils/avr32_blank/conf/conf_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/conf/conf_board.h -------------------------------------------------------------------------------- /utils/avr32_blank/conf/conf_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/conf/conf_clock.h -------------------------------------------------------------------------------- /utils/avr32_blank/conf/conf_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/conf/conf_twi.h -------------------------------------------------------------------------------- /utils/avr32_blank/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/config.mk -------------------------------------------------------------------------------- /utils/avr32_blank/core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/core.mk -------------------------------------------------------------------------------- /utils/avr32_blank/src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/src/global.h -------------------------------------------------------------------------------- /utils/avr32_blank/src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/src/i2c.c -------------------------------------------------------------------------------- /utils/avr32_blank/src/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/src/i2c.h -------------------------------------------------------------------------------- /utils/avr32_blank/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/src/init.c -------------------------------------------------------------------------------- /utils/avr32_blank/src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/src/init.h -------------------------------------------------------------------------------- /utils/avr32_blank/src/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/src/interrupts.c -------------------------------------------------------------------------------- /utils/avr32_blank/src/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/src/interrupts.h -------------------------------------------------------------------------------- /utils/avr32_blank/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/src/main.c -------------------------------------------------------------------------------- /utils/avr32_blank/src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_blank/src/types.h -------------------------------------------------------------------------------- /utils/avr32_boot/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/LICENSE.TXT -------------------------------------------------------------------------------- /utils/avr32_boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/Makefile -------------------------------------------------------------------------------- /utils/avr32_boot/aleph-boot.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/aleph-boot.lds -------------------------------------------------------------------------------- /utils/avr32_boot/conf/conf_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/conf/conf_access.h -------------------------------------------------------------------------------- /utils/avr32_boot/conf/conf_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/conf/conf_board.h -------------------------------------------------------------------------------- /utils/avr32_boot/conf/conf_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/conf/conf_clock.h -------------------------------------------------------------------------------- /utils/avr32_boot/conf/conf_ebi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/conf/conf_ebi.h -------------------------------------------------------------------------------- /utils/avr32_boot/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/config.mk -------------------------------------------------------------------------------- /utils/avr32_boot/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/flash.sh -------------------------------------------------------------------------------- /utils/avr32_boot/src/app_timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/app_timers.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/app_timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/app_timers.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/bfin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/bfin.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/bfin.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/dummy.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/encoders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/encoders.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/encoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/encoders.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/event_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/event_types.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/events.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/events.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/fat_io_lib/version.txt: -------------------------------------------------------------------------------- 1 | 2.6.8 2 | -------------------------------------------------------------------------------- /utils/avr32_boot/src/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/files.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/files.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/fix.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/fix.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/flash.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/flash.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/font.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/font.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/global.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/init.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/init.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/main.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/memory.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/memory.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/menu.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/menu.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/parse_hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/parse_hex.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/parse_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/parse_hex.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/print_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/print_fix.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/print_fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/print_fix.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/redraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/redraw.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/redraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/redraw.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/scene.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/screen.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/screen.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/startup.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/switches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/switches.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/switches.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/timers.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/timers.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/util.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/util.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/watchdog.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/watchdog.h -------------------------------------------------------------------------------- /utils/avr32_boot/src/wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/wdt.c -------------------------------------------------------------------------------- /utils/avr32_boot/src/wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_boot/src/wdt.h -------------------------------------------------------------------------------- /utils/avr32_boot/version.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/avr32_sim/adc_poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/avr32_sim/avr32_sim.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/avr32_sim.mk -------------------------------------------------------------------------------- /utils/avr32_sim/avr32_sim.mk~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/avr32_sim.mk~ -------------------------------------------------------------------------------- /utils/avr32_sim/region_extra.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/avr32_sim/src/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/adc.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/adc.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/app.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/app.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/bfin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/bfin.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/bfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/bfin.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/control.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/control.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/delay.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/delay.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/dummy.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/encoders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/encoders.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/encoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/encoders.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/events.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/events.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/filesystem.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/filesystem.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/fix.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/fix.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/flash.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/flash.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/font.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/font.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/global.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/hid.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/hid.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/i2c.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/i2c.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/init.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/init.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/interrupts.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/interrupts.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/main.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/memory.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/memory.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/monome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/monome.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/monome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/monome.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/region.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/region.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/regions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/regions.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/screen.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/screen.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/serial.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/serial.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/switches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/switches.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/switches.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/timers.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/timers.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/types.h -------------------------------------------------------------------------------- /utils/avr32_sim/src/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/usb.c -------------------------------------------------------------------------------- /utils/avr32_sim/src/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr32_sim/src/usb.h -------------------------------------------------------------------------------- /utils/avr8/LUFA/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr8/LUFA/Common/Common.h -------------------------------------------------------------------------------- /utils/avr8/LUFA/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr8/LUFA/License.txt -------------------------------------------------------------------------------- /utils/avr8/LUFA/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr8/LUFA/Version.h -------------------------------------------------------------------------------- /utils/avr8/LUFA/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr8/LUFA/makefile -------------------------------------------------------------------------------- /utils/avr8/USBtoSerial/asf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr8/USBtoSerial/asf.xml -------------------------------------------------------------------------------- /utils/avr8/USBtoSerial/flash.sh: -------------------------------------------------------------------------------- 1 | clear; make avrdude; ./fuses.sh 2 | -------------------------------------------------------------------------------- /utils/avr8/USBtoSerial/fuses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr8/USBtoSerial/fuses.sh -------------------------------------------------------------------------------- /utils/avr8/USBtoSerial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/avr8/USBtoSerial/makefile -------------------------------------------------------------------------------- /utils/beekeep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/Makefile -------------------------------------------------------------------------------- /utils/beekeep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/README.md -------------------------------------------------------------------------------- /utils/beekeep/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/TODO.md -------------------------------------------------------------------------------- /utils/beekeep/bees_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/bees_schema.json -------------------------------------------------------------------------------- /utils/beekeep/build_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/build_linux.md -------------------------------------------------------------------------------- /utils/beekeep/build_osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/build_osx.md -------------------------------------------------------------------------------- /utils/beekeep/dummy_patchlabel.lab: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | baz 4 | -------------------------------------------------------------------------------- /utils/beekeep/grains.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/grains.lab -------------------------------------------------------------------------------- /utils/beekeep/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/guide.md -------------------------------------------------------------------------------- /utils/beekeep/icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/icons.sh -------------------------------------------------------------------------------- /utils/beekeep/osx_launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/osx_launcher.sh -------------------------------------------------------------------------------- /utils/beekeep/py2aleph/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/py2aleph/Makefile -------------------------------------------------------------------------------- /utils/beekeep/py2aleph/pyaleph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/py2aleph/pyaleph.c -------------------------------------------------------------------------------- /utils/beekeep/py3aleph/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/py3aleph/Makefile -------------------------------------------------------------------------------- /utils/beekeep/py3aleph/pyaleph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/py3aleph/pyaleph.c -------------------------------------------------------------------------------- /utils/beekeep/src/app_beekeep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/app_beekeep.c -------------------------------------------------------------------------------- /utils/beekeep/src/dot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/dot.c -------------------------------------------------------------------------------- /utils/beekeep/src/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/dot.h -------------------------------------------------------------------------------- /utils/beekeep/src/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/files.c -------------------------------------------------------------------------------- /utils/beekeep/src/handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/handler.c -------------------------------------------------------------------------------- /utils/beekeep/src/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/json.h -------------------------------------------------------------------------------- /utils/beekeep/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/main.c -------------------------------------------------------------------------------- /utils/beekeep/src/net_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/net_hid.c -------------------------------------------------------------------------------- /utils/beekeep/src/net_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/net_hid.h -------------------------------------------------------------------------------- /utils/beekeep/src/net_py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/net_py.c -------------------------------------------------------------------------------- /utils/beekeep/src/param_scaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/param_scaler.c -------------------------------------------------------------------------------- /utils/beekeep/src/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/ui.c -------------------------------------------------------------------------------- /utils/beekeep/src/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/ui.h -------------------------------------------------------------------------------- /utils/beekeep/src/ui_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/ui_files.c -------------------------------------------------------------------------------- /utils/beekeep/src/ui_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/ui_files.h -------------------------------------------------------------------------------- /utils/beekeep/src/ui_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/ui_handlers.c -------------------------------------------------------------------------------- /utils/beekeep/src/ui_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/ui_handlers.h -------------------------------------------------------------------------------- /utils/beekeep/src/ui_lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/ui_lists.c -------------------------------------------------------------------------------- /utils/beekeep/src/ui_lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/ui_lists.h -------------------------------------------------------------------------------- /utils/beekeep/src/ui_op_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/ui_op_menu.c -------------------------------------------------------------------------------- /utils/beekeep/src/ui_op_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep/src/ui_op_menu.h -------------------------------------------------------------------------------- /utils/beekeep_juce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep_juce/Makefile -------------------------------------------------------------------------------- /utils/beekeep_juce/beekeep.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/beekeep_juce/beekeep.jucer -------------------------------------------------------------------------------- /utils/bfin_pd/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_pd/Makefile.common -------------------------------------------------------------------------------- /utils/bfin_pd/Makefile.fmsynth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_pd/Makefile.fmsynth -------------------------------------------------------------------------------- /utils/bfin_pd/bfin~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_pd/bfin~.c -------------------------------------------------------------------------------- /utils/bfin_pd/fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_pd/fix.c -------------------------------------------------------------------------------- /utils/bfin_pd/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_pd/fix.h -------------------------------------------------------------------------------- /utils/bfin_pd/op_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_pd/op_math.c -------------------------------------------------------------------------------- /utils/bfin_pd/op_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_pd/op_math.h -------------------------------------------------------------------------------- /utils/bfin_pd/param_scaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_pd/param_scaler.c -------------------------------------------------------------------------------- /utils/bfin_pd/param_scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_pd/param_scaler.h -------------------------------------------------------------------------------- /utils/bfin_pd/test.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_pd/test.pd -------------------------------------------------------------------------------- /utils/bfin_sim/fract_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/fract_math.c -------------------------------------------------------------------------------- /utils/bfin_sim/fract_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/fract_math.h -------------------------------------------------------------------------------- /utils/bfin_sim/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/main.c -------------------------------------------------------------------------------- /utils/bfin_sim/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/module.h -------------------------------------------------------------------------------- /utils/bfin_sim/src/bfin_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/bfin_core.h -------------------------------------------------------------------------------- /utils/bfin_sim/src/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/control.c -------------------------------------------------------------------------------- /utils/bfin_sim/src/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/control.h -------------------------------------------------------------------------------- /utils/bfin_sim/src/cv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/cv.c -------------------------------------------------------------------------------- /utils/bfin_sim/src/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/cv.h -------------------------------------------------------------------------------- /utils/bfin_sim/src/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/desc.c -------------------------------------------------------------------------------- /utils/bfin_sim/src/fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/fix.c -------------------------------------------------------------------------------- /utils/bfin_sim/src/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/fix.h -------------------------------------------------------------------------------- /utils/bfin_sim/src/fix16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/fix16.c -------------------------------------------------------------------------------- /utils/bfin_sim/src/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/gpio.h -------------------------------------------------------------------------------- /utils/bfin_sim/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/init.c -------------------------------------------------------------------------------- /utils/bfin_sim/src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/init.h -------------------------------------------------------------------------------- /utils/bfin_sim/src/isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/isr.c -------------------------------------------------------------------------------- /utils/bfin_sim/src/isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/isr.h -------------------------------------------------------------------------------- /utils/bfin_sim/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/main.c -------------------------------------------------------------------------------- /utils/bfin_sim/src/pickle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/pickle.c -------------------------------------------------------------------------------- /utils/bfin_sim/src/pickle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/pickle.h -------------------------------------------------------------------------------- /utils/bfin_sim/src/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/spi.c -------------------------------------------------------------------------------- /utils/bfin_sim/src/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/spi.h -------------------------------------------------------------------------------- /utils/bfin_sim/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/util.c -------------------------------------------------------------------------------- /utils/bfin_sim/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bfin_sim/src/util.h -------------------------------------------------------------------------------- /utils/bintool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bintool/README.md -------------------------------------------------------------------------------- /utils/bintool/bintool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bintool/bintool.c -------------------------------------------------------------------------------- /utils/bmp/aleph_bmp_region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bmp/aleph_bmp_region.c -------------------------------------------------------------------------------- /utils/bmp/font_xpm_gen.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bmp/font_xpm_gen.scm -------------------------------------------------------------------------------- /utils/bmp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bmp/readme.txt -------------------------------------------------------------------------------- /utils/bmp/untitled.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bmp/untitled.xpm -------------------------------------------------------------------------------- /utils/bmp/xpm-convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bmp/xpm-convert -------------------------------------------------------------------------------- /utils/bmp/xpm_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bmp/xpm_convert.c -------------------------------------------------------------------------------- /utils/bmp/xpm_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/bmp/xpm_read.c -------------------------------------------------------------------------------- /utils/i2c-repeater/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/i2c-repeater/Makefile -------------------------------------------------------------------------------- /utils/i2c-repeater/i2c-repeater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/i2c-repeater/i2c-repeater -------------------------------------------------------------------------------- /utils/i2c-repeater/twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/i2c-repeater/twi.c -------------------------------------------------------------------------------- /utils/i2c-repeater/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/i2c-repeater/twi.h -------------------------------------------------------------------------------- /utils/pd/.gitignore: -------------------------------------------------------------------------------- 1 | *.pd_linux -------------------------------------------------------------------------------- /utils/pd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/Makefile -------------------------------------------------------------------------------- /utils/pd/Makefile.pdlibbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/Makefile.pdlibbuilder -------------------------------------------------------------------------------- /utils/pd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/README.md -------------------------------------------------------------------------------- /utils/pd/aleph_op_mul.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/aleph_op_mul.pd -------------------------------------------------------------------------------- /utils/pd/app_beekeep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/app_beekeep.c -------------------------------------------------------------------------------- /utils/pd/app_pd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/app_pd.c -------------------------------------------------------------------------------- /utils/pd/bees_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/bees_op.c -------------------------------------------------------------------------------- /utils/pd/bees_op_basic.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/bees_op_basic.pd -------------------------------------------------------------------------------- /utils/pd/bees_op_example.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/bees_op_example.pd -------------------------------------------------------------------------------- /utils/pd/bees_ops_grid.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/bees_ops_grid.pd -------------------------------------------------------------------------------- /utils/pd/counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/counter.c -------------------------------------------------------------------------------- /utils/pd/dot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/dot.c -------------------------------------------------------------------------------- /utils/pd/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/dot.h -------------------------------------------------------------------------------- /utils/pd/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/files.c -------------------------------------------------------------------------------- /utils/pd/flash_beekeep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/flash_beekeep.c -------------------------------------------------------------------------------- /utils/pd/handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/handler.c -------------------------------------------------------------------------------- /utils/pd/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/json.h -------------------------------------------------------------------------------- /utils/pd/json_read_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/json_read_native.c -------------------------------------------------------------------------------- /utils/pd/json_read_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/json_read_raw.c -------------------------------------------------------------------------------- /utils/pd/json_write_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/json_write_native.c -------------------------------------------------------------------------------- /utils/pd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/main.c -------------------------------------------------------------------------------- /utils/pd/net_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/net_hid.c -------------------------------------------------------------------------------- /utils/pd/net_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/net_hid.h -------------------------------------------------------------------------------- /utils/pd/net_py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/net_py.c -------------------------------------------------------------------------------- /utils/pd/param_scaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/param_scaler.c -------------------------------------------------------------------------------- /utils/pd/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/ui.c -------------------------------------------------------------------------------- /utils/pd/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/ui.h -------------------------------------------------------------------------------- /utils/pd/ui_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/ui_files.c -------------------------------------------------------------------------------- /utils/pd/ui_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/ui_files.h -------------------------------------------------------------------------------- /utils/pd/ui_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/ui_handlers.c -------------------------------------------------------------------------------- /utils/pd/ui_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/ui_handlers.h -------------------------------------------------------------------------------- /utils/pd/ui_lists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/ui_lists.c -------------------------------------------------------------------------------- /utils/pd/ui_lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/ui_lists.h -------------------------------------------------------------------------------- /utils/pd/ui_op_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/ui_op_menu.c -------------------------------------------------------------------------------- /utils/pd/ui_op_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/pd/ui_op_menu.h -------------------------------------------------------------------------------- /utils/prototypes/opPoolProto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/prototypes/opPoolProto.c -------------------------------------------------------------------------------- /utils/release/copy.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/release/copy.command -------------------------------------------------------------------------------- /utils/tabletool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/tabletool/Makefile -------------------------------------------------------------------------------- /utils/tabletool/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/tabletool/main.c -------------------------------------------------------------------------------- /utils/tabletool/plot_deltas.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/tabletool/plot_deltas.plt -------------------------------------------------------------------------------- /utils/tabletool/plot_interp.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/tabletool/plot_interp.plt -------------------------------------------------------------------------------- /utils/tabletool/plot_values.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/tabletool/plot_values.plt -------------------------------------------------------------------------------- /utils/tabletool/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/aleph/HEAD/utils/tabletool/tables.c --------------------------------------------------------------------------------