aboutsummaryrefslogtreecommitdiffstats
path: root/src/bnetz/dsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bnetz/dsp.c')
-rw-r--r--src/bnetz/dsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bnetz/dsp.c b/src/bnetz/dsp.c
index 3d1e127..e418531 100644
--- a/src/bnetz/dsp.c
+++ b/src/bnetz/dsp.c
@@ -84,11 +84,11 @@ int dsp_init_sender(bnetz_t *bnetz)
int i;
if ((bnetz->sender.samplerate % (int)(1.0 / (double)BIT_DURATION))) {
- PDEBUG(DDSP, DEBUG_ERROR, "Samples rate must be a multiple of %d bits per second.\n", (int)(1.0 / (double)BIT_DURATION));
+ PDEBUG(DDSP, DEBUG_ERROR, "Samples rate must be a multiple of %d (bits per second).\n", (int)(1.0 / (double)BIT_DURATION));
return -EINVAL;
}
if ((bnetz->sender.samplerate % (int)(1.0 / (double)FILTER_STEP))) {
- PDEBUG(DDSP, DEBUG_ERROR, "Samples rate must be a multiple of %d bits per second.\n", (int)(1.0 / (double)FILTER_STEP));
+ PDEBUG(DDSP, DEBUG_ERROR, "Samples rate must be a multiple of %d (FSK probes per second).\n", (int)(1.0 / (double)FILTER_STEP));
return -EINVAL;
}