From a36acdd4602d8fa42658614f85dc1360bf6746e1 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Thu, 3 May 2018 09:29:50 +0200 Subject: [PATCH] Update Basic_usage.ino Fixed typo in comment --- LibAPRS/examples/Basic_usage/Basic_usage.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LibAPRS/examples/Basic_usage/Basic_usage.ino b/LibAPRS/examples/Basic_usage/Basic_usage.ino index 73b7452..d52884e 100644 --- a/LibAPRS/examples/Basic_usage/Basic_usage.ino +++ b/LibAPRS/examples/Basic_usage/Basic_usage.ino @@ -19,8 +19,8 @@ // get called by the library every time a packet is // received, so you can process incoming packets. // -// If you are only interested in receiving, you should -// just leave this function empty. +// If you are only interested in transmitting, you +// should just leave this function empty. // // IMPORTANT! This function is called from within an // interrupt. That means that you should only do things @@ -174,4 +174,4 @@ void loop() { delay(500); processPacket(); -} \ No newline at end of file +}