minor serial test application update

ico
fros4943 2009-03-21 15:47:40 +00:00
parent 9088341a17
commit c76f34ff98
1 changed files with 2 additions and 6 deletions

View File

@ -26,12 +26,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: testserial.c,v 1.4 2009/03/17 20:32:22 adamdunkels Exp $
* $Id: testserial.c,v 1.5 2009/03/21 15:47:40 fros4943 Exp $
*/
#include "contiki.h"
#include "dev/serial-line.h"
#include "dev/rs232.h"
#include <stdio.h>
@ -49,14 +48,11 @@ PROCESS_THREAD(test_serial_process, ev, data)
/* Start serial process */
serial_line_init();
printf("Starting serial test process\n");
while(1) {
PROCESS_WAIT_EVENT();
if (etimer_expired(&et)) {
printf("Sending serial data now\n");
rs232_print("GNU's not Unix\n");
printf("Waiting for serial data\n");
etimer_restart(&et);
}