From b298e92431acad41181b1fd8c6d450f68d44f83a Mon Sep 17 00:00:00 2001 From: eleccoder <9162301+eleccoder@users.noreply.github.com> Date: Sat, 13 Nov 2021 12:15:20 +0100 Subject: [PATCH] Typo fixed --- src/aprs_pico.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aprs_pico.c b/src/aprs_pico.c index 1195dcf..586f88e 100644 --- a/src/aprs_pico.c +++ b/src/aprs_pico.c @@ -86,7 +86,7 @@ static void aprs_pico_initClock(unsigned int sample_freq_in_hz) // This is documented here: https://github.com/raspberrypi/pico-extras // Compensate a non-'PICO_EXTRA_AUDIO_PWM_LIB_FIXED_SAMPLE_FREQ_IN_HZ' sampling frequency - // by a adapting the system clock accordingly + // by adapting the system clock accordingly float sys_clock_in_mhz = (float)APRS_PICO__SYS_CLOCK_FREQ_OF_PICO_EXTRA_AUDIO_PWM_LIB_IN_MHZ * ((float)sample_freq_in_hz / (float)APRS_PICO__PICO_EXTRA_AUDIO_PWM_LIB_FIXED_SAMPLE_FREQ_IN_HZ);