]> code.bitgloo.com Git - clyne/stmdspgui.git/commit
initial commit
authorClyne Sullivan <clyne@clyne-lp.lan>
Mon, 9 Aug 2021 02:02:52 +0000 (22:02 -0400)
committerClyne Sullivan <clyne@clyne-lp.lan>
Mon, 9 Aug 2021 02:02:52 +0000 (22:02 -0400)
commit707b24dd07236243269cf092728f85172e94e8a4
treec136716a5fc9ed9cbf570e24f8f6ab715adc73a2
initial commit
78 files changed:
.gitignore [new file with mode: 0644]
LICENSE [new file with mode: 0644]
Makefile [new file with mode: 0644]
README.md [new file with mode: 0644]
fonts/Roboto-Medium.ttf [new file with mode: 0644]
source/code.cpp [new file with mode: 0644]
source/config.h [new file with mode: 0644]
source/device.cpp [new file with mode: 0644]
source/file.cpp [new file with mode: 0644]
source/gui.cpp [new file with mode: 0644]
source/imgui/ImGuiFileDialog.cpp [new file with mode: 0644]
source/imgui/ImGuiFileDialog.h [new file with mode: 0644]
source/imgui/ImGuiFileDialogConfig.h [new file with mode: 0644]
source/imgui/LICENSE.txt [new file with mode: 0644]
source/imgui/LICENSE_ImGuiColorTextEdit [new file with mode: 0644]
source/imgui/LICENSE_ImGuiFileDialog [new file with mode: 0644]
source/imgui/TextEditor.cpp [new file with mode: 0644]
source/imgui/TextEditor.h [new file with mode: 0644]
source/imgui/backends/imgui_impl_opengl2.cpp [new file with mode: 0644]
source/imgui/backends/imgui_impl_opengl2.h [new file with mode: 0644]
source/imgui/backends/imgui_impl_sdl.cpp [new file with mode: 0644]
source/imgui/backends/imgui_impl_sdl.h [new file with mode: 0644]
source/imgui/dirent/ChangeLog [new file with mode: 0644]
source/imgui/dirent/LICENSE [new file with mode: 0644]
source/imgui/dirent/README.md [new file with mode: 0644]
source/imgui/dirent/dirent.h [new file with mode: 0644]
source/imgui/imconfig.h [new file with mode: 0644]
source/imgui/imgui.cpp [new file with mode: 0644]
source/imgui/imgui.h [new file with mode: 0644]
source/imgui/imgui_draw.cpp [new file with mode: 0644]
source/imgui/imgui_internal.h [new file with mode: 0644]
source/imgui/imgui_tables.cpp [new file with mode: 0644]
source/imgui/imgui_widgets.cpp [new file with mode: 0644]
source/imgui/imstb_rectpack.h [new file with mode: 0644]
source/imgui/imstb_textedit.h [new file with mode: 0644]
source/imgui/imstb_truetype.h [new file with mode: 0644]
source/main.cpp [new file with mode: 0644]
source/serial/CHANGELOG.rst [new file with mode: 0644]
source/serial/CMakeLists.txt [new file with mode: 0644]
source/serial/Makefile [new file with mode: 0644]
source/serial/README.md [new file with mode: 0644]
source/serial/changes.txt [new file with mode: 0644]
source/serial/doc/Doxyfile [new file with mode: 0644]
source/serial/doc/serial.dox [new file with mode: 0644]
source/serial/examples/serial_example.cc [new file with mode: 0644]
source/serial/include/serial/impl/unix.h [new file with mode: 0644]
source/serial/include/serial/impl/win.h [new file with mode: 0644]
source/serial/include/serial/serial.h [new file with mode: 0644]
source/serial/include/serial/v8stdint.h [new file with mode: 0644]
source/serial/package.xml [new file with mode: 0644]
source/serial/serial.sublime-project [new file with mode: 0644]
source/serial/src/impl/list_ports/list_ports_linux.cc [new file with mode: 0644]
source/serial/src/impl/list_ports/list_ports_osx.cc [new file with mode: 0644]
source/serial/src/impl/list_ports/list_ports_win.cc [new file with mode: 0644]
source/serial/src/impl/unix.cc [new file with mode: 0755]
source/serial/src/impl/win.cc [new file with mode: 0644]
source/serial/src/serial.cc [new file with mode: 0755]
source/serial/tests/CMakeLists.txt [new file with mode: 0644]
source/serial/tests/proof_of_concepts/mdc2250.cc [new file with mode: 0644]
source/serial/tests/proof_of_concepts/python_serial_test.py [new file with mode: 0644]
source/serial/tests/proof_of_concepts/tokenizer.cc [new file with mode: 0644]
source/serial/tests/unit/unix_timer_tests.cc [new file with mode: 0644]
source/serial/tests/unix_serial_tests.cc [new file with mode: 0644]
source/serial/visual_studio/serial/serial.vcxproj [new file with mode: 0644]
source/serial/visual_studio/serial/serial.vcxproj.filters [new file with mode: 0644]
source/serial/visual_studio/test_serial/test_serial.vcxproj [new file with mode: 0644]
source/serial/visual_studio/test_serial/test_serial.vcxproj.filters [new file with mode: 0644]
source/serial/visual_studio/visual_studio.sln [new file with mode: 0644]
source/stmdsp/stmdsp.cpp [new file with mode: 0644]
source/stmdsp/stmdsp.hpp [new file with mode: 0644]
source/stmdsp/stmdsp_code.hpp [new file with mode: 0644]
templates/1_convolve_simple.cpp [new file with mode: 0644]
templates/2_convolve_overlap_save.cpp [new file with mode: 0644]
templates/3_fir.cpp [new file with mode: 0644]
templates/4_fir_pro.cpp [new file with mode: 0644]
templates/5_fir_differentiator.cpp [new file with mode: 0644]
templates/6_iir_test.cpp [new file with mode: 0644]
templates/7_iir_echo.cpp [new file with mode: 0644]