]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - zumo-cc3200/zumo-cc3200.git/commitdiff
eliminate implicit cast away of const warning
authordave russo <d-russo@ti.com>
Fri, 9 Oct 2015 22:11:53 +0000 (15:11 -0700)
committerdave russo <d-russo@ti.com>
Fri, 9 Oct 2015 22:11:53 +0000 (15:11 -0700)
src/Energia/libraries/ZumoCC3200/examples/MasterSlave/apLoop.ino

index 46e1c2019fde3b5d150a8f13eb6645f20c2caa32..bd43035abb3a7c9938d744f51e000c6f36c67b72 100644 (file)
@@ -173,7 +173,7 @@ void apLoop()
         }
         /* broadcast the command */
         Udp.beginPacket(broadcastIP, CMD_PORT);
-        Udp.write("hello slaves");
+        Udp.write((char *)"hello slaves");
         Udp.endPacket();
         break;
   }