Skip to content

Commit

Permalink
Publishing solution e3
Browse files Browse the repository at this point in the history
  • Loading branch information
rmichon committed Oct 3, 2023
1 parent 886e304 commit 377242a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 18 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -389,5 +389,5 @@ <h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>

<!--
MkDocs version : 1.5.2
Build Date UTC : 2023-10-03 13:10:37.996478+00:00
Build Date UTC : 2023-10-03 13:32:02.277229+00:00
-->
18 changes: 4 additions & 14 deletions docs/lectures/architecture/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -335,21 +335,13 @@ <h3 id="stereo-echo">Stereo Echo</h3>
float currentSampleR = echo1.tick(sineSample)*0.5;
</code></pre>
<p><strong>Hint:</strong> Beware of memory allocation again! Make sure that the maxim delay of your echo (on the 2 parameters of the class constructor) doesn't exceed 10000 for now for both instances of the echo. </p>
<!--
**Solution:**
In `MyDsp.h`:
<p><strong>Solution:</strong></p>
<p>In <code>MyDsp.h</code>:</p>
<pre><code> Sine sine;
Echo echo0, echo1;
};
</code></pre>
In `MyDsp.cpp`:
<p>In <code>MyDsp.cpp</code>:</p>
<pre><code>MyDsp::MyDsp() :
AudioStream(AUDIO_OUTPUTS, new audio_block_t*[AUDIO_OUTPUTS]),
sine(AUDIO_SAMPLE_RATE_EXACT),
Expand All @@ -376,9 +368,7 @@ <h3 id="stereo-echo">Stereo Echo</h3>

...
}
</code></pre>
--></div>
</code></pre></div>
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion docs/search/search_index.json

Large diffs are not rendered by default.

Binary file modified docs/sitemap.xml.gz
Binary file not shown.
2 changes: 0 additions & 2 deletions web/docs/lectures/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ float currentSampleR = echo1.tick(sineSample)*0.5;

**Hint:** Beware of memory allocation again! Make sure that the maxim delay of your echo (on the 2 parameters of the class constructor) doesn't exceed 10000 for now for both instances of the echo.

<!--
**Solution:**

In `MyDsp.h`:
Expand Down Expand Up @@ -273,4 +272,3 @@ for (int i = 0; i < AUDIO_BLOCK_SAMPLES; i++) {
...
}
```
-->

0 comments on commit 377242a

Please sign in to comment.