diff --git a/plugins/channelrx/demoddsd/readme.md b/plugins/channelrx/demoddsd/readme.md
index 4b979158f..685408253 100644
--- a/plugins/channelrx/demoddsd/readme.md
+++ b/plugins/channelrx/demoddsd/readme.md
@@ -14,6 +14,8 @@ The modulation and standard is automatically detected and switched depending on
To enable this plugin at compile time you will need to have DSDcc installed in your system. Please follow instructions in [DSDcc readme](https://github.com/f4exb/dsdcc/blob/master/Readme.md) to build and install DSDcc. If you install it in a custom location say `/opt/install/dsdcc` you will need to add these defines to the cmake command: `-DDSDCC_DIR=/opt/install/dsdcc`
+⚠ A minimum of 48 kS/s I/Q sample rate in the baseband is required for the demodulator/decoder to work correctly.
+
DV serial device support
You can use a serial device connected to your system that implements and exposes the packet interface of the AMBE3000 chip. This can be for example a ThumbDV USB dongle. In order to support DV serial devices in your system you will need two things:
diff --git a/plugins/channelrx/demodfreedv/readme.md b/plugins/channelrx/demodfreedv/readme.md
index 680af043b..4d8d13f40 100644
--- a/plugins/channelrx/demodfreedv/readme.md
+++ b/plugins/channelrx/demodfreedv/readme.md
@@ -4,6 +4,8 @@
This plugin can be used to demodulate a signal following the [FreeDV digital voice protocol](https://freedv.org/).
+⚠ A minimum of 48 kS/s I/Q sample rate in the baseband is required in 2400A mode for the demodulator/decoder to work correctly. Other modes only require 8 kS/s.
+
Interface

diff --git a/plugins/channeltx/modfreedv/readme.md b/plugins/channeltx/modfreedv/readme.md
index 5c9f77f47..2f768d1eb 100644
--- a/plugins/channeltx/modfreedv/readme.md
+++ b/plugins/channeltx/modfreedv/readme.md
@@ -4,6 +4,8 @@
This plugin can be used to generate a signal following the [FreeDV digital voice protocol](https://freedv.org/).
+⚠ A minimum of 48 kS/s I/Q sample rate in the baseband is required in 2400A mode for the coder/modulator to work correctly. Other modes only require 8 kS/s however such a low rate is not recommended and at least 48 kS/s should be used anyway.
+
Interface

@@ -120,8 +122,8 @@ The path to the selected audio file to be played or dots if unselected
12.1: Audio file select
-Opens a file dialog to select the audio file to be played. It must be 48 kHz F32LE raw format. If binaural mode is selected it takes a 2 channel (stereo) file else it should be mono.
-Using sox a .wav file can be converted with this command: `sox piano.wav -t raw -r 48k -c 1 -b 32 -L -e float piano.raw` (mono) or `sox piano.wav -t raw -r 48k -c 2 -b 32 -L -e float piano.raw` (stereo)
+Opens a file dialog to select the audio file to be played. It must be 8 kHz S16LE single (mono) channel raw format.
+Using sox a .wav file can be converted with this command: `sox piano.wav -t raw -r 8k -c 1 -b 16 -L -e signed piano.raw`
12.2: Audio file loop