Obsidian-B7000
Circuit analysis based audio plugin based on the Darkglass B7K Ultra
File Explorer
- dsp-validator.md
- schematic-checker.md
- architecture.md
- build.md
- circuit.md
- dsp.md
- ui.md
- ci.yml
- release.yml
- example_dashboard.html
- analyze.py
- captures.py
- comprehensive_report.py
- eq_reference.py
- fit_nonlinear.py
- gen_test_signal.py
- matrix_grade.py
- offline_render.cpp
- parallel.py
- phase_harmonics.py
- README.md
- shape_gate.py
- DAFx2020_Taming-the-Red-Llama_CD4049-overdrive-model.pdf
- DAFx2024_MXR-Phase90_JFET-timevarying-resistor-WDF.pdf
- Fairchild_J201_datasheet.pdf
- TI_CD4049UB_datasheet_SCHS046L.pdf
- calibration-and-gain-staging.md
- nonlinear-component-modeling.md
- ui-peripheral-spec.md
- validation-and-capture.md
- build_deb.sh
- control
- build_installer.sh
- Distribution.xml
- Obsidian-B7000.nsi
- chowdsp_wdf
- JUCE
- xsimd
- clean.xml
- doom.xml
- modern.xml
- slap.xml
- vintage.xml
- B7K info.txt
- Backup-Schematic for node triple checking only (different component labels).pdf
- crop.py
- Primary BOM and schematic.pdf
- Baxandall.h
- Clipper.h
- DriveStage.h
- EqPreGain.h
- FitParams.h
- GainStaging.h
- InputBuffer.h
- JfetStage.h
- LevelBlend.h
- MasterOut.h
- MidBand.h
- MnaSolve.h
- OdDriveTilt.h
- OdMakeup.h
- OdToneRestore.h
- PedalChain.h
- PedalDSP.h
- RailClamp.h
- RecoveryBridgedT.h
- SallenKeyLPF.h
- SwitchFade.h
- TrebleAttack.h
- AttackGruntIcons.h
- ImageLED.h
- KnobComponent.h
- LEDIndicator.h
- PedalFace.cpp
- PedalFace.h
- PedalLookAndFeel.cpp
- PedalLookAndFeel.h
- SwitchLabelText.h
- SwitchToggle.h
- ThreePositionSwitch.h
- VUMeter.h
- Prewarp.h
- TaperUtils.h
- PluginEditor.cpp
- PluginEditor.h
- PluginProcessor.cpp
- PluginProcessor.h
- BaxandallTest.cpp
- ClipperTest.cpp
- DriveStageTest.cpp
- DummyTest.cpp
- EditorSnapshot.cpp
- EqPreGainTest.cpp
- FinalSweepTest.cpp
- InputBufferTest.cpp
- JfetStageTest.cpp
- LevelBlendTest.cpp
- MasterOutTest.cpp
- MidBandTest.cpp
- OdDriveTiltTest.cpp
- OSFidelity.cpp
- OSValidationTest.cpp
- PedalChainTest.cpp
- PerfBenchmark.cpp
- RailClampTest.cpp
- RCLowpassTest.cpp
- RecoveryBridgedTTest.cpp
- SallenKeyLPFTest.cpp
- SwitchTransitionTest.cpp
- TrebleAttackTest.cpp
- B7K ORIGINAL.jpg
- b7k_texture_base.png
- blue_led_off.png
- blue_led_on.png
- component_positions.csv
- footswitch_down.png
- Footswitch_up.png
- LexendExa-Bold.ttf
- LexendExa-Regular.ttf
- switch_down.png
- switch_Mid.png
- switch_up.png
- T_Knob.png
- Trim knob.png
- ui-replacements.md
- vol_trim.png
- .clang-format
- .clang-tidy
- .gitignore
- .gitmodules
- CLAUDE.md
- CMakeLists.txt
- image.png
- LICENSE
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cmake
View Details ▼
cmake
Cross-platform build automation system, that generates recipes for native build systems.
cmake {{path/to/project_directory}}
Generate a build recipe in the current directory with `CMakeLists.txt` from a project directory:
cmake --build {{path/to/build_directory}}
Use a generated recipe in a given directory to build artifacts:
cmake --install {{path/to/build_directory}} --strip
Install the build artifacts into `/usr/local/` and strip debugging symbols:
ctest
View Details ▼
ctest
CMake test driver program.
ctest
Run all tests in the current CMake build directory:
ctest {{[-j|--parallel]}} 4
Run all tests defined in the CMake build directory, executing 4 [j]obs at a time in parallel:
ctest {{[-j|--parallel]}}
Run all tests on all processor cores:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git submodule
View Details ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
python3
View Details ▼
python3
This command is an alias of `python`.
tldr python
View documentation for the original command:
