diff --git a/README.md b/README.md index 14e0e9c..7fe58dd 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ The goal of this project is to build a synthesizer with an STM32H755 utilizing a Right now the project consists of the following components: -[dsp](https://github.com/GregShiner/unnamed-synth-dsp): +[dsp](https://gitea.gregshiner.com/GregShiner/unnamed-synth-dsp): The primary synthesizer and digital signal processing library. This is a hardware-agnostic, `#![no_std]` library crate. This means that it can be built to target both normal application CPUs and OSs, but also embedded systems @@ -10,7 +10,7 @@ Right now the project consists of the following components: in just about any other project. It's primary dependancy is [dasp](https://docs.rs/dasp/latest/dasp/index.html), which itself has no other dependancies. It is built without any features that require allocations or the standard library. -[test interface](https://github.com/GregShiner/unnamed-synth-test-interface): +[test interface](https://gitea.gregshiner.com/GregShiner/unnamed-synth-test-interface): This is a simple desktop GUI application that serves to demonstrate, test, and debug the functionality of the dsp library without the need for an embedded board. It contains some simple controls to configure an oscillator, and a simple oscilloscope to visualize the output. This is a very rudementary program primarily used for