how do i shut serial echo off?

15 Jan 2014

i have a wifly connected successfully to my mbed and a working serial communication with a c# app that i created. my c# app does certain things when a command is received, but right now i need to filter out my commands before i can successfully read a cmd response from the wifi. for example, when i send an exit\r command. exit echos back first then i receive EXIT\r\n but sometimes both the echo and the wifly get sent in the same transmittion. how do i shut of the echo?

15 Jan 2014

Richard,

If you are using WiFlyInterface, in the file WiFlyInterface/WiFly/WiFly.cpp, comment out line

#define DEBUG       //Debug is disabled by default

...kevin