Skip to content

Commit 83d58c8

Browse files
committed
Space out exclamation marks in audio examples
Just for the rare chance that someone is using the ATMega2560 with the original bootloader, triple exclamation marks would cause bad things. Easy enough to avoid by spacing them out!
1 parent 6c2da8c commit 83d58c8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

examples/Audio_Examples/AudioExample1_PlayTone/AudioExample1_PlayTone.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ void setup()
1919
Serial.println(F("u-blox Cellular Audio Example 1 - Play Tone"));
2020

2121
Serial.println();
22-
Serial.println(F("!!!!!!!! ATTENTION !!!!!!!! ATTENTION !!!!!!!! ATTENTION !!!!!!!!"));
22+
Serial.println(F("! ! ! ! ! ATTENTION ! ! ! ! ! ATTENTION ! ! ! ! ! ATTENTION ! ! ! ! !"));
2323
Serial.println(F("This example requires an audio codec attached to the I2S interface"));
2424
Serial.println(F("of the cellular modem. Please add one and update this example as"));
2525
Serial.println(F("needed to configure your audio codec!"));
26-
Serial.println(F("!!!!!!!! ATTENTION !!!!!!!! ATTENTION !!!!!!!! ATTENTION !!!!!!!!"));
26+
Serial.println(F("! ! ! ! ! ATTENTION ! ! ! ! ! ATTENTION ! ! ! ! ! ATTENTION ! ! ! ! !"));
2727
Serial.println();
2828

2929
Serial.println(F("Press any key to begin"));

examples/Audio_Examples/AudioExample2_Loopback/AudioExample2_Loopback.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ void setup()
1919
Serial.println(F("u-blox Cellular Audio Example 2 - Loopback"));
2020

2121
Serial.println();
22-
Serial.println(F("!!!!!!!! ATTENTION !!!!!!!! ATTENTION !!!!!!!! ATTENTION !!!!!!!!"));
22+
Serial.println(F("! ! ! ! ! ATTENTION ! ! ! ! ! ATTENTION ! ! ! ! ! ATTENTION ! ! ! ! !"));
2323
Serial.println(F("This example requires an audio codec attached to the I2S interface"));
2424
Serial.println(F("of the cellular modem. Please add one and update this example as"));
2525
Serial.println(F("needed to configure your audio codec!"));
26-
Serial.println(F("!!!!!!!! ATTENTION !!!!!!!! ATTENTION !!!!!!!! ATTENTION !!!!!!!!"));
26+
Serial.println(F("! ! ! ! ! ATTENTION ! ! ! ! ! ATTENTION ! ! ! ! ! ATTENTION ! ! ! ! !"));
2727
Serial.println();
2828

2929
Serial.println(F("Press any key to begin"));

examples/Audio_Examples/AudioExample3_CallControl/AudioExample3_CallControl.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ void setup()
3030
Serial.println(F("u-blox Cellular Audio Example 3 - Call Control"));
3131

3232
Serial.println();
33-
Serial.println(F("!!!!!!!! ATTENTION !!!!!!!! ATTENTION !!!!!!!! ATTENTION !!!!!!!!"));
33+
Serial.println(F("! ! ! ! ! ATTENTION ! ! ! ! ! ATTENTION ! ! ! ! ! ATTENTION ! ! ! ! !"));
3434
Serial.println(F("This example requires an audio codec attached to the I2S interface"));
3535
Serial.println(F("of the cellular modem. Please add one and update this example as"));
3636
Serial.println(F("needed to configure your audio codec!"));
37-
Serial.println(F("!!!!!!!! ATTENTION !!!!!!!! ATTENTION !!!!!!!! ATTENTION !!!!!!!!"));
37+
Serial.println(F("! ! ! ! ! ATTENTION ! ! ! ! ! ATTENTION ! ! ! ! ! ATTENTION ! ! ! ! !"));
3838
Serial.println();
3939

4040
Serial.println(F("Press any key to begin"));

0 commit comments

Comments
 (0)