├── .builds └── freebsd.yml ├── .github └── workflows │ ├── gh-pages-wasm.yml │ └── main.yml ├── .gitignore ├── .travis.yml ├── COPYING ├── GNUmakefile ├── Makefiles ├── 3ds.GNUmakefile ├── card10.GNUmakefile ├── emscripten.GNUmakefile ├── esp32.GNUmakefile ├── ndless.GNUmakefile ├── sledconf.3ds ├── sledconf.card10 ├── sledconf.ci ├── sledconf.default ├── sledconf.emscripten ├── sledconf.esp32 ├── sledconf.ndless └── sledconf.sdl2 ├── README.md ├── autoterminal.terminfo ├── default.nix ├── scripts ├── 3ds.sh ├── Dockerfile.esp32 ├── autoterminal_1.sh ├── autoterminal_A.sh ├── autoterminal_F.sh ├── autoterminal_N.sh ├── autoterminal_R.sh ├── font ├── gen_compiledb.sh ├── next └── profile-dtrace.sh ├── shell.nix ├── src ├── asl.c ├── asl.h ├── block_for.h ├── color.c ├── colors.h ├── ext │ ├── card10 │ │ ├── epicardium.h │ │ └── l0dables │ │ │ ├── FreeRTOSConfig.h │ │ │ ├── README.md │ │ │ ├── api │ │ │ ├── common.h │ │ │ ├── control.c │ │ │ ├── dispatcher.c │ │ │ ├── dispatcher.h │ │ │ ├── interrupt-receiver.c │ │ │ ├── interrupt-sender.c │ │ │ └── interrupt-sender.h │ │ │ ├── epicardium.h │ │ │ ├── lib │ │ │ └── libsled.a │ │ │ ├── log.c │ │ │ ├── log.h │ │ │ ├── main.c │ │ │ ├── meson.build │ │ │ ├── modules │ │ │ ├── buttons.c │ │ │ ├── dispatcher.c │ │ │ ├── display.c │ │ │ ├── fileops.c │ │ │ ├── filesystem.h │ │ │ ├── gpio.c │ │ │ ├── hardware.c │ │ │ ├── hw-lock.c │ │ │ ├── leds.c │ │ │ ├── lifecycle.c │ │ │ ├── light_sensor.c │ │ │ ├── log.c │ │ │ ├── log.h │ │ │ ├── meson.build │ │ │ ├── modules.h │ │ │ ├── personal_state.c │ │ │ ├── pmic.c │ │ │ ├── rtc.c │ │ │ ├── serial.c │ │ │ ├── stream.c │ │ │ ├── stream.h │ │ │ ├── trng.c │ │ │ └── vibra.c │ │ │ └── support.c │ ├── esp32 │ │ ├── esp32_digital_led_lib.cpp │ │ └── esp32_digital_led_lib.h │ └── farbherd.h ├── graphics.c ├── graphics.h ├── main.c ├── main.h ├── mathey.c ├── mathey.h ├── matrix.c ├── matrix.h ├── mod.c ├── mod.h ├── modloader.c ├── modloader.h ├── modules │ ├── bgm_fish.c │ ├── bgm_opc.c │ ├── bgm_pixelflut.c │ ├── bgm_xyscope.c │ ├── bgm_xyscope.libs │ ├── flt_channel_reorder.c │ ├── flt_debug.c │ ├── flt_flip_x.c │ ├── flt_flip_y.c │ ├── flt_gamma_correct.c │ ├── flt_rot_90.c │ ├── flt_scale.c │ ├── flt_smapper.c │ ├── font.h │ ├── foxel35.xbm │ ├── gfx_affinematrix.c │ ├── gfx_afterglow.c │ ├── gfx_atmos.c │ ├── gfx_attractor.c │ ├── gfx_autoterminal.c │ ├── gfx_autoterminal.libs │ ├── gfx_balls.c │ ├── gfx_belou_zhabo_ca.c │ ├── gfx_bttrblls.c │ ├── gfx_candyflow.c │ ├── gfx_candyswarm.c │ ├── gfx_checkerboard.c │ ├── gfx_circles.c │ ├── gfx_clock.c │ ├── gfx_colorwheel.c │ ├── gfx_colorwheel.libs │ ├── gfx_cube.c │ ├── gfx_disturbedcandy.c │ ├── gfx_ditherfield.c │ ├── gfx_error.c │ ├── gfx_fire.c │ ├── gfx_ghostery.c │ ├── gfx_glowfield.c │ ├── gfx_gol.c │ ├── gfx_golc.c │ ├── gfx_invfourier.c │ ├── gfx_invfourier.libs │ ├── gfx_ip.c │ ├── gfx_lorenz.c │ ├── gfx_mandelbrot.c │ ├── gfx_mandelbrot2.c │ ├── gfx_math_sinpi.c │ ├── gfx_matrix.c │ ├── gfx_maze.c │ ├── gfx_multicell.c │ ├── gfx_no13.c │ ├── gfx_noisewarp.c │ ├── gfx_partirush.c │ ├── gfx_percolation.c │ ├── gfx_pheromones.c │ ├── gfx_pickover.c │ ├── gfx_plasma.c │ ├── gfx_rainbow.c │ ├── gfx_random_rects.c │ ├── gfx_random_static.c │ ├── gfx_reddot.c │ ├── gfx_rgbmatrix.c │ ├── gfx_rule90.c │ ├── gfx_sinefield.c │ ├── gfx_sinematrix.c │ ├── gfx_snek.c │ ├── gfx_sort1D.c │ ├── gfx_sort1D_algos.c │ ├── gfx_sort2D.c │ ├── gfx_sparkburn.c │ ├── gfx_starfield.c │ ├── gfx_test.c │ ├── gfx_testmatrix.c │ ├── gfx_text.c │ ├── gfx_tron.c │ ├── gfx_twinkle.c │ ├── gfx_ursuppe.c │ ├── gfx_ursuppe2.c │ ├── gfx_voronoi.c │ ├── gfx_voronoi2.c │ ├── gfx_wator.c │ ├── gfx_xorrid.c │ ├── microfont.xbm │ ├── mod_dl.c │ ├── mod_dl.libs │ ├── mod_farbherd.c │ ├── out_ansi.c │ ├── out_card10.c │ ├── out_ctru.c │ ├── out_ctru.v.pica │ ├── out_dummy.c │ ├── out_emscripten_canvas2d.c │ ├── out_emscripten_canvas2d.html │ ├── out_emscripten_canvas2d.woff │ ├── out_esp32_digitalledlib.c │ ├── out_fb.c │ ├── out_mpsse_spi.c │ ├── out_mpsse_spi.libs │ ├── out_ndless.c │ ├── out_net.c │ ├── out_pixelflut.c │ ├── out_rpi_hub75.c │ ├── out_rpi_hub75.incs │ ├── out_rpi_hub75.libs │ ├── out_rpi_ws2812b.c │ ├── out_rpi_ws2812b.incs │ ├── out_rpi_ws2812b.libs │ ├── out_sdl2.c │ ├── out_sdl2.libs │ ├── out_sf75_bi_spidev.c │ ├── out_udp.c │ ├── printbuffer.c │ ├── printbuffer.h │ ├── text.c │ └── text.h ├── os │ ├── os_3ds.c │ ├── os_dummy.c │ ├── os_emscripten.c │ ├── os_freertos.c │ ├── os_ndless.c │ ├── os_ndless.libs │ ├── os_unix.c │ └── os_unix.libs ├── oscore.h ├── perf.h ├── plugin.h ├── random.c ├── random.h ├── taskpool.c ├── taskpool.h ├── timers.c ├── timers.h ├── types.h ├── util.c └── util.h └── static ├── k2lib ├── k2link ├── k2wrap └── modwraps └── ignoreme /.builds/freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/.builds/freebsd.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages-wasm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/.github/workflows/gh-pages-wasm.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/COPYING -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/GNUmakefile -------------------------------------------------------------------------------- /Makefiles/3ds.GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/Makefiles/3ds.GNUmakefile -------------------------------------------------------------------------------- /Makefiles/card10.GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/Makefiles/card10.GNUmakefile -------------------------------------------------------------------------------- /Makefiles/emscripten.GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/Makefiles/emscripten.GNUmakefile -------------------------------------------------------------------------------- /Makefiles/esp32.GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/Makefiles/esp32.GNUmakefile -------------------------------------------------------------------------------- /Makefiles/ndless.GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/Makefiles/ndless.GNUmakefile -------------------------------------------------------------------------------- /Makefiles/sledconf.3ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/Makefiles/sledconf.3ds -------------------------------------------------------------------------------- /Makefiles/sledconf.card10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/Makefiles/sledconf.card10 -------------------------------------------------------------------------------- /Makefiles/sledconf.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/Makefiles/sledconf.ci -------------------------------------------------------------------------------- /Makefiles/sledconf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/Makefiles/sledconf.default -------------------------------------------------------------------------------- /Makefiles/sledconf.emscripten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/Makefiles/sledconf.emscripten -------------------------------------------------------------------------------- /Makefiles/sledconf.esp32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/Makefiles/sledconf.esp32 -------------------------------------------------------------------------------- /Makefiles/sledconf.ndless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/Makefiles/sledconf.ndless -------------------------------------------------------------------------------- /Makefiles/sledconf.sdl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/Makefiles/sledconf.sdl2 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/README.md -------------------------------------------------------------------------------- /autoterminal.terminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/autoterminal.terminfo -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/default.nix -------------------------------------------------------------------------------- /scripts/3ds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/scripts/3ds.sh -------------------------------------------------------------------------------- /scripts/Dockerfile.esp32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/scripts/Dockerfile.esp32 -------------------------------------------------------------------------------- /scripts/autoterminal_1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #timeout 30 asciiquarium 3 | ls --color 4 | fortune | cowsay 5 | echo $TERM @$(hostname) 6 | sleep 5 7 | -------------------------------------------------------------------------------- /scripts/autoterminal_A.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | htop -------------------------------------------------------------------------------- /scripts/autoterminal_F.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/scripts/autoterminal_F.sh -------------------------------------------------------------------------------- /scripts/autoterminal_N.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/scripts/autoterminal_N.sh -------------------------------------------------------------------------------- /scripts/autoterminal_R.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/scripts/autoterminal_R.sh -------------------------------------------------------------------------------- /scripts/font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/scripts/font -------------------------------------------------------------------------------- /scripts/gen_compiledb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/scripts/gen_compiledb.sh -------------------------------------------------------------------------------- /scripts/next: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/scripts/next -------------------------------------------------------------------------------- /scripts/profile-dtrace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/scripts/profile-dtrace.sh -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/shell.nix -------------------------------------------------------------------------------- /src/asl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/asl.c -------------------------------------------------------------------------------- /src/asl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/asl.h -------------------------------------------------------------------------------- /src/block_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/block_for.h -------------------------------------------------------------------------------- /src/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/color.c -------------------------------------------------------------------------------- /src/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/colors.h -------------------------------------------------------------------------------- /src/ext/card10/epicardium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/epicardium.h -------------------------------------------------------------------------------- /src/ext/card10/l0dables/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/FreeRTOSConfig.h -------------------------------------------------------------------------------- /src/ext/card10/l0dables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/README.md -------------------------------------------------------------------------------- /src/ext/card10/l0dables/api/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/api/common.h -------------------------------------------------------------------------------- /src/ext/card10/l0dables/api/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/api/control.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/api/dispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/api/dispatcher.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/api/dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/api/dispatcher.h -------------------------------------------------------------------------------- /src/ext/card10/l0dables/api/interrupt-receiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/api/interrupt-receiver.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/api/interrupt-sender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/api/interrupt-sender.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/api/interrupt-sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/api/interrupt-sender.h -------------------------------------------------------------------------------- /src/ext/card10/l0dables/epicardium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/epicardium.h -------------------------------------------------------------------------------- /src/ext/card10/l0dables/lib/libsled.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/lib/libsled.a -------------------------------------------------------------------------------- /src/ext/card10/l0dables/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/log.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/log.h -------------------------------------------------------------------------------- /src/ext/card10/l0dables/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/main.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/meson.build -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/buttons.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/dispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/dispatcher.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/display.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/fileops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/fileops.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/filesystem.h -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/gpio.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/hardware.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/hw-lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/hw-lock.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/leds.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/lifecycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/lifecycle.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/light_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/light_sensor.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/log.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/log.h -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/meson.build -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/modules.h -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/personal_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/personal_state.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/pmic.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/rtc.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/serial.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/stream.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/stream.h -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/trng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/trng.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/modules/vibra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/modules/vibra.c -------------------------------------------------------------------------------- /src/ext/card10/l0dables/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/card10/l0dables/support.c -------------------------------------------------------------------------------- /src/ext/esp32/esp32_digital_led_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/esp32/esp32_digital_led_lib.cpp -------------------------------------------------------------------------------- /src/ext/esp32/esp32_digital_led_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/esp32/esp32_digital_led_lib.h -------------------------------------------------------------------------------- /src/ext/farbherd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/ext/farbherd.h -------------------------------------------------------------------------------- /src/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/graphics.c -------------------------------------------------------------------------------- /src/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/graphics.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/main.h -------------------------------------------------------------------------------- /src/mathey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/mathey.c -------------------------------------------------------------------------------- /src/mathey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/mathey.h -------------------------------------------------------------------------------- /src/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/matrix.c -------------------------------------------------------------------------------- /src/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/matrix.h -------------------------------------------------------------------------------- /src/mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/mod.c -------------------------------------------------------------------------------- /src/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/mod.h -------------------------------------------------------------------------------- /src/modloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modloader.c -------------------------------------------------------------------------------- /src/modloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modloader.h -------------------------------------------------------------------------------- /src/modules/bgm_fish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/bgm_fish.c -------------------------------------------------------------------------------- /src/modules/bgm_opc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/bgm_opc.c -------------------------------------------------------------------------------- /src/modules/bgm_pixelflut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/bgm_pixelflut.c -------------------------------------------------------------------------------- /src/modules/bgm_xyscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/bgm_xyscope.c -------------------------------------------------------------------------------- /src/modules/bgm_xyscope.libs: -------------------------------------------------------------------------------- 1 | -lasound 2 | -------------------------------------------------------------------------------- /src/modules/flt_channel_reorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/flt_channel_reorder.c -------------------------------------------------------------------------------- /src/modules/flt_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/flt_debug.c -------------------------------------------------------------------------------- /src/modules/flt_flip_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/flt_flip_x.c -------------------------------------------------------------------------------- /src/modules/flt_flip_y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/flt_flip_y.c -------------------------------------------------------------------------------- /src/modules/flt_gamma_correct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/flt_gamma_correct.c -------------------------------------------------------------------------------- /src/modules/flt_rot_90.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/flt_rot_90.c -------------------------------------------------------------------------------- /src/modules/flt_scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/flt_scale.c -------------------------------------------------------------------------------- /src/modules/flt_smapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/flt_smapper.c -------------------------------------------------------------------------------- /src/modules/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/font.h -------------------------------------------------------------------------------- /src/modules/foxel35.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/foxel35.xbm -------------------------------------------------------------------------------- /src/modules/gfx_affinematrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_affinematrix.c -------------------------------------------------------------------------------- /src/modules/gfx_afterglow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_afterglow.c -------------------------------------------------------------------------------- /src/modules/gfx_atmos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_atmos.c -------------------------------------------------------------------------------- /src/modules/gfx_attractor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_attractor.c -------------------------------------------------------------------------------- /src/modules/gfx_autoterminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_autoterminal.c -------------------------------------------------------------------------------- /src/modules/gfx_autoterminal.libs: -------------------------------------------------------------------------------- 1 | -lutil 2 | -------------------------------------------------------------------------------- /src/modules/gfx_balls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_balls.c -------------------------------------------------------------------------------- /src/modules/gfx_belou_zhabo_ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_belou_zhabo_ca.c -------------------------------------------------------------------------------- /src/modules/gfx_bttrblls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_bttrblls.c -------------------------------------------------------------------------------- /src/modules/gfx_candyflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_candyflow.c -------------------------------------------------------------------------------- /src/modules/gfx_candyswarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_candyswarm.c -------------------------------------------------------------------------------- /src/modules/gfx_checkerboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_checkerboard.c -------------------------------------------------------------------------------- /src/modules/gfx_circles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_circles.c -------------------------------------------------------------------------------- /src/modules/gfx_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_clock.c -------------------------------------------------------------------------------- /src/modules/gfx_colorwheel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_colorwheel.c -------------------------------------------------------------------------------- /src/modules/gfx_colorwheel.libs: -------------------------------------------------------------------------------- 1 | -lm 2 | -------------------------------------------------------------------------------- /src/modules/gfx_cube.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_cube.c -------------------------------------------------------------------------------- /src/modules/gfx_disturbedcandy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_disturbedcandy.c -------------------------------------------------------------------------------- /src/modules/gfx_ditherfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_ditherfield.c -------------------------------------------------------------------------------- /src/modules/gfx_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_error.c -------------------------------------------------------------------------------- /src/modules/gfx_fire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_fire.c -------------------------------------------------------------------------------- /src/modules/gfx_ghostery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_ghostery.c -------------------------------------------------------------------------------- /src/modules/gfx_glowfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_glowfield.c -------------------------------------------------------------------------------- /src/modules/gfx_gol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_gol.c -------------------------------------------------------------------------------- /src/modules/gfx_golc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_golc.c -------------------------------------------------------------------------------- /src/modules/gfx_invfourier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_invfourier.c -------------------------------------------------------------------------------- /src/modules/gfx_invfourier.libs: -------------------------------------------------------------------------------- 1 | -lm 2 | -------------------------------------------------------------------------------- /src/modules/gfx_ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_ip.c -------------------------------------------------------------------------------- /src/modules/gfx_lorenz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_lorenz.c -------------------------------------------------------------------------------- /src/modules/gfx_mandelbrot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_mandelbrot.c -------------------------------------------------------------------------------- /src/modules/gfx_mandelbrot2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_mandelbrot2.c -------------------------------------------------------------------------------- /src/modules/gfx_math_sinpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_math_sinpi.c -------------------------------------------------------------------------------- /src/modules/gfx_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_matrix.c -------------------------------------------------------------------------------- /src/modules/gfx_maze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_maze.c -------------------------------------------------------------------------------- /src/modules/gfx_multicell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_multicell.c -------------------------------------------------------------------------------- /src/modules/gfx_no13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_no13.c -------------------------------------------------------------------------------- /src/modules/gfx_noisewarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_noisewarp.c -------------------------------------------------------------------------------- /src/modules/gfx_partirush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_partirush.c -------------------------------------------------------------------------------- /src/modules/gfx_percolation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_percolation.c -------------------------------------------------------------------------------- /src/modules/gfx_pheromones.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_pheromones.c -------------------------------------------------------------------------------- /src/modules/gfx_pickover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_pickover.c -------------------------------------------------------------------------------- /src/modules/gfx_plasma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_plasma.c -------------------------------------------------------------------------------- /src/modules/gfx_rainbow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_rainbow.c -------------------------------------------------------------------------------- /src/modules/gfx_random_rects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_random_rects.c -------------------------------------------------------------------------------- /src/modules/gfx_random_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_random_static.c -------------------------------------------------------------------------------- /src/modules/gfx_reddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_reddot.c -------------------------------------------------------------------------------- /src/modules/gfx_rgbmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_rgbmatrix.c -------------------------------------------------------------------------------- /src/modules/gfx_rule90.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_rule90.c -------------------------------------------------------------------------------- /src/modules/gfx_sinefield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_sinefield.c -------------------------------------------------------------------------------- /src/modules/gfx_sinematrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_sinematrix.c -------------------------------------------------------------------------------- /src/modules/gfx_snek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_snek.c -------------------------------------------------------------------------------- /src/modules/gfx_sort1D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_sort1D.c -------------------------------------------------------------------------------- /src/modules/gfx_sort1D_algos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_sort1D_algos.c -------------------------------------------------------------------------------- /src/modules/gfx_sort2D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_sort2D.c -------------------------------------------------------------------------------- /src/modules/gfx_sparkburn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_sparkburn.c -------------------------------------------------------------------------------- /src/modules/gfx_starfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_starfield.c -------------------------------------------------------------------------------- /src/modules/gfx_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_test.c -------------------------------------------------------------------------------- /src/modules/gfx_testmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_testmatrix.c -------------------------------------------------------------------------------- /src/modules/gfx_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_text.c -------------------------------------------------------------------------------- /src/modules/gfx_tron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_tron.c -------------------------------------------------------------------------------- /src/modules/gfx_twinkle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_twinkle.c -------------------------------------------------------------------------------- /src/modules/gfx_ursuppe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_ursuppe.c -------------------------------------------------------------------------------- /src/modules/gfx_ursuppe2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_ursuppe2.c -------------------------------------------------------------------------------- /src/modules/gfx_voronoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_voronoi.c -------------------------------------------------------------------------------- /src/modules/gfx_voronoi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_voronoi2.c -------------------------------------------------------------------------------- /src/modules/gfx_wator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_wator.c -------------------------------------------------------------------------------- /src/modules/gfx_xorrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/gfx_xorrid.c -------------------------------------------------------------------------------- /src/modules/microfont.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/microfont.xbm -------------------------------------------------------------------------------- /src/modules/mod_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/mod_dl.c -------------------------------------------------------------------------------- /src/modules/mod_dl.libs: -------------------------------------------------------------------------------- 1 | -ldl 2 | -------------------------------------------------------------------------------- /src/modules/mod_farbherd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/mod_farbherd.c -------------------------------------------------------------------------------- /src/modules/out_ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_ansi.c -------------------------------------------------------------------------------- /src/modules/out_card10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_card10.c -------------------------------------------------------------------------------- /src/modules/out_ctru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_ctru.c -------------------------------------------------------------------------------- /src/modules/out_ctru.v.pica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_ctru.v.pica -------------------------------------------------------------------------------- /src/modules/out_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_dummy.c -------------------------------------------------------------------------------- /src/modules/out_emscripten_canvas2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_emscripten_canvas2d.c -------------------------------------------------------------------------------- /src/modules/out_emscripten_canvas2d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_emscripten_canvas2d.html -------------------------------------------------------------------------------- /src/modules/out_emscripten_canvas2d.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_emscripten_canvas2d.woff -------------------------------------------------------------------------------- /src/modules/out_esp32_digitalledlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_esp32_digitalledlib.c -------------------------------------------------------------------------------- /src/modules/out_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_fb.c -------------------------------------------------------------------------------- /src/modules/out_mpsse_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_mpsse_spi.c -------------------------------------------------------------------------------- /src/modules/out_mpsse_spi.libs: -------------------------------------------------------------------------------- 1 | -lmpsse -------------------------------------------------------------------------------- /src/modules/out_ndless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_ndless.c -------------------------------------------------------------------------------- /src/modules/out_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_net.c -------------------------------------------------------------------------------- /src/modules/out_pixelflut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_pixelflut.c -------------------------------------------------------------------------------- /src/modules/out_rpi_hub75.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_rpi_hub75.c -------------------------------------------------------------------------------- /src/modules/out_rpi_hub75.incs: -------------------------------------------------------------------------------- 1 | -I../rpi-rgb-led-matrix/include 2 | -------------------------------------------------------------------------------- /src/modules/out_rpi_hub75.libs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_rpi_hub75.libs -------------------------------------------------------------------------------- /src/modules/out_rpi_ws2812b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_rpi_ws2812b.c -------------------------------------------------------------------------------- /src/modules/out_rpi_ws2812b.incs: -------------------------------------------------------------------------------- 1 | -I../rpi_ws281x/ 2 | -------------------------------------------------------------------------------- /src/modules/out_rpi_ws2812b.libs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_rpi_ws2812b.libs -------------------------------------------------------------------------------- /src/modules/out_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_sdl2.c -------------------------------------------------------------------------------- /src/modules/out_sdl2.libs: -------------------------------------------------------------------------------- 1 | -lSDL2 2 | -------------------------------------------------------------------------------- /src/modules/out_sf75_bi_spidev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_sf75_bi_spidev.c -------------------------------------------------------------------------------- /src/modules/out_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/out_udp.c -------------------------------------------------------------------------------- /src/modules/printbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/printbuffer.c -------------------------------------------------------------------------------- /src/modules/printbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/printbuffer.h -------------------------------------------------------------------------------- /src/modules/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/text.c -------------------------------------------------------------------------------- /src/modules/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/modules/text.h -------------------------------------------------------------------------------- /src/os/os_3ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/os/os_3ds.c -------------------------------------------------------------------------------- /src/os/os_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/os/os_dummy.c -------------------------------------------------------------------------------- /src/os/os_emscripten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/os/os_emscripten.c -------------------------------------------------------------------------------- /src/os/os_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/os/os_freertos.c -------------------------------------------------------------------------------- /src/os/os_ndless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/os/os_ndless.c -------------------------------------------------------------------------------- /src/os/os_ndless.libs: -------------------------------------------------------------------------------- 1 | -lndls -------------------------------------------------------------------------------- /src/os/os_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/os/os_unix.c -------------------------------------------------------------------------------- /src/os/os_unix.libs: -------------------------------------------------------------------------------- 1 | -lpthread 2 | -------------------------------------------------------------------------------- /src/oscore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/oscore.h -------------------------------------------------------------------------------- /src/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/perf.h -------------------------------------------------------------------------------- /src/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/plugin.h -------------------------------------------------------------------------------- /src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/random.c -------------------------------------------------------------------------------- /src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/random.h -------------------------------------------------------------------------------- /src/taskpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/taskpool.c -------------------------------------------------------------------------------- /src/taskpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/taskpool.h -------------------------------------------------------------------------------- /src/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/timers.c -------------------------------------------------------------------------------- /src/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/timers.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/types.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/src/util.h -------------------------------------------------------------------------------- /static/k2lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/static/k2lib -------------------------------------------------------------------------------- /static/k2link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/static/k2link -------------------------------------------------------------------------------- /static/k2wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/static/k2wrap -------------------------------------------------------------------------------- /static/modwraps/ignoreme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyblink/sled/HEAD/static/modwraps/ignoreme --------------------------------------------------------------------------------