Test serial console demonstrating various API functions of WiConnect library.

Dependencies:   WiConnect mbed

Committer:
dan_ackme
Date:
Thu Nov 27 10:26:58 2014 +0000
Revision:
25:c8ca04ebbb96
Parent:
12:3dd3a1be40c1
updated for latest wiconnect

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dan_ackme 12:3dd3a1be40c1 1 /**
dan_ackme 12:3dd3a1be40c1 2 * ACKme WiConnect Host Library is licensed under the BSD licence:
dan_ackme 12:3dd3a1be40c1 3 *
dan_ackme 12:3dd3a1be40c1 4 * Copyright (c)2014 ACKme Networks.
dan_ackme 12:3dd3a1be40c1 5 * All rights reserved.
dan_ackme 12:3dd3a1be40c1 6 *
dan_ackme 12:3dd3a1be40c1 7 * Redistribution and use in source and binary forms, with or without modification,
dan_ackme 12:3dd3a1be40c1 8 * are permitted provided that the following conditions are met:
dan_ackme 12:3dd3a1be40c1 9 *
dan_ackme 12:3dd3a1be40c1 10 * 1. Redistributions of source code must retain the above copyright notice,
dan_ackme 12:3dd3a1be40c1 11 * this list of conditions and the following disclaimer.
dan_ackme 12:3dd3a1be40c1 12 * 2. Redistributions in binary form must reproduce the above copyright notice,
dan_ackme 12:3dd3a1be40c1 13 * this list of conditions and the following disclaimer in the documentation
dan_ackme 12:3dd3a1be40c1 14 * and/or other materials provided with the distribution.
dan_ackme 12:3dd3a1be40c1 15 * 3. The name of the author may not be used to endorse or promote products
dan_ackme 12:3dd3a1be40c1 16 * derived from this software without specific prior written permission.
dan_ackme 12:3dd3a1be40c1 17 *
dan_ackme 12:3dd3a1be40c1 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS AND ANY EXPRESS OR IMPLIED
dan_ackme 12:3dd3a1be40c1 19 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
dan_ackme 12:3dd3a1be40c1 20 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
dan_ackme 12:3dd3a1be40c1 21 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
dan_ackme 12:3dd3a1be40c1 22 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
dan_ackme 12:3dd3a1be40c1 23 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
dan_ackme 12:3dd3a1be40c1 24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
dan_ackme 12:3dd3a1be40c1 25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
dan_ackme 12:3dd3a1be40c1 26 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
dan_ackme 12:3dd3a1be40c1 27 * OF SUCH DAMAGE.
dan_ackme 0:836c9a6383e0 28 */
dan_ackme 0:836c9a6383e0 29 #pragma once
dan_ackme 0:836c9a6383e0 30
dan_ackme 0:836c9a6383e0 31 #include <string.h>
dan_ackme 0:836c9a6383e0 32
dan_ackme 0:836c9a6383e0 33 #include "Wiconnect.h"
dan_ackme 0:836c9a6383e0 34 #include "util/log/log.h"
dan_ackme 0:836c9a6383e0 35 #include "ConsoleSerial.h"
dan_ackme 0:836c9a6383e0 36
dan_ackme 0:836c9a6383e0 37
dan_ackme 0:836c9a6383e0 38 #if TEST_NONBLOCKING_API
dan_ackme 0:836c9a6383e0 39 //#include "nonblocking/wiconnect/WiconnectTests.h"
dan_ackme 0:836c9a6383e0 40 //#include "nonblocking/network/NetworkTests.h"
dan_ackme 0:836c9a6383e0 41 //#include "nonblocking/socket/SocketTests.h"
dan_ackme 0:836c9a6383e0 42 #else
dan_ackme 0:836c9a6383e0 43 #include "blocking/wiconnect/WiconnectTests.h"
dan_ackme 0:836c9a6383e0 44 #include "blocking/network/NetworkTests.h"
dan_ackme 0:836c9a6383e0 45 #include "blocking/socket/SocketTests.h"
dan_ackme 0:836c9a6383e0 46 #include "blocking/file/FileTests.h"
dan_ackme 0:836c9a6383e0 47 #endif
dan_ackme 0:836c9a6383e0 48
dan_ackme 0:836c9a6383e0 49
dan_ackme 0:836c9a6383e0 50
dan_ackme 0:836c9a6383e0 51
dan_ackme 0:836c9a6383e0 52 #include "StringUtil.h"
dan_ackme 0:836c9a6383e0 53
dan_ackme 0:836c9a6383e0 54 #include "target_config.h"
dan_ackme 0:836c9a6383e0 55
dan_ackme 0:836c9a6383e0 56
dan_ackme 0:836c9a6383e0 57 extern char testBuffer[TEST_BUFFER_LENGTH];
dan_ackme 0:836c9a6383e0 58
dan_ackme 3:dddd476d5967 59 #define TEST_BUFFER testBuffer
dan_ackme 3:dddd476d5967 60
dan_ackme 3:dddd476d5967 61
dan_ackme 0:836c9a6383e0 62 extern ConsoleSerial consoleSerial;
dan_ackme 0:836c9a6383e0 63
dan_ackme 0:836c9a6383e0 64