From 7fc2ca7cdf2a17cefc77102e16352d9feb4e9b24 Mon Sep 17 00:00:00 2001 From: ExtremesecrecyOne <131911364+ExtremesecrecyOne@users.noreply.github.com> Date: Tue, 22 Jul 2025 21:01:57 -0700 Subject: [PATCH] Typos Corrected typos. --- docs/Configuring.md | 8 ++++---- src/AlsaDriver.cpp | 4 ++-- src/JackConfiguration.hpp | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/Configuring.md b/docs/Configuring.md index 7e6656b..bf97660 100644 --- a/docs/Configuring.md +++ b/docs/Configuring.md @@ -14,7 +14,7 @@ hardware if desired. {% include pageIconL.html %} -You will also want to configure PiPedal to provide a Wi-Fi auto-hotspot so that you can connect to using your using your Android phone or tablet. It's fine to use your home Wi-Fi network to connect to PiPedal when you're at home; but don't forget that when you take PiPedal out to a gig, you will need to ensure that PiPedal's Wi-Fi auto-hotspot is enabled before you do. +You will also want to configure PiPedal to provide a Wi-Fi auto-hotspot so that you can connect to it using your Android phone or tablet. It's fine to use your home Wi-Fi network to connect to PiPedal when you're at home; but don't forget that when you take PiPedal out to a gig, you will need to ensure that PiPedal's Wi-Fi auto-hotspot is enabled before you do. PiPedal uses LV2 audio plugins. There are literally thousands of freely available high-quality LV2 plugins that are suitable for use as guitar effects. @@ -25,9 +25,9 @@ with PiPedal. ### Installing the PiPedal Remote Android app -If you are using an Android phone or table to connect to PiPedal, you should download and install the [PiPedal Android Client](https://play.google.com/store/apps/details?id=com.twoplay.pipedal) +If you are using an Android phone or tablet to connect to PiPedal, you should download and install the [PiPedal Android Client](https://play.google.com/store/apps/details?id=com.twoplay.pipedal) -The Android PiPedal client provides three feature: +The Android PiPedal client provides three features: 1. It automatically locates running instances of PiPedal on the local Wi-Fi network using dns/Bonjour discovery. So you don't need to keep track of which IP address to connect with. @@ -76,7 +76,7 @@ an audio device. Many external USB audio devices that have two inputs provide th #### Selecting Audio Buffer Sizes -You may have to experiment to find the buffer size, and buffer count that works best for your. The actual round-trip latency and frequency of audio overruns and underruns depends the the operating system system version, the audio hardware being used, and upon CPU use of the audio patches you are using. Selecting larger buffer sizes or larger buffer counts increase the amount of computing power available for your audio effects, and will reduce the number of dropouts caused by audio overruns/underruns (xruns); smaller buffer sizes and buffer counts improve the overall round-trip latency but will increase the likelihood of xruns. +You may have to experiment to find the buffer size and buffer count that works best for you. The actual round-trip latency and frequency of audio overruns and underruns depends on the operating system version, the audio hardware being used, and upon CPU use of the audio patches you are using. Selecting larger buffer sizes or larger buffer counts increases the amount of computing power available for your audio effects and will reduce the number of dropouts caused by audio overruns/underruns (xruns); smaller buffer sizes and buffer counts improve the overall round-trip latency but will increase the likelihood of xruns. Please note that the Raspberry Pi OS is not completely robust with respect to realtime scheduling. Significant display activity, SD-CARD activity or heavy CPU use by programs other than PiPedal may cause audio xruns. For best results, run PiPedal without a display attached, and with no other programs running. Connecting remotely to the PiPedal web interface should not cause problems. diff --git a/src/AlsaDriver.cpp b/src/AlsaDriver.cpp index 5cd9152..f285ac2 100644 --- a/src/AlsaDriver.cpp +++ b/src/AlsaDriver.cpp @@ -2005,13 +2005,13 @@ namespace pipedal err = snd_pcm_hw_params_get_channels_max(playbackHwParams, &playbackChannels); if (err < 0) { - throw PiPedalLogicException("No outut channels."); + throw PiPedalLogicException("No output channels."); } unsigned int channelsMin; err = snd_pcm_hw_params_get_channels_min(playbackHwParams, &channelsMin); if (err < 0) { - throw PiPedalLogicException("No outut channels."); + throw PiPedalLogicException("No output channels."); } if (ShouldForceStereoChannels(playbackHandle, playbackHwParams, channelsMin, playbackChannels)) { diff --git a/src/JackConfiguration.hpp b/src/JackConfiguration.hpp index 4b7bd7b..f120b1a 100644 --- a/src/JackConfiguration.hpp +++ b/src/JackConfiguration.hpp @@ -125,4 +125,4 @@ namespace pipedal }; -} // namespace. \ No newline at end of file +} // namespace. \ No newline at end of file