ACKme
/
wiconnect-test-console
Test serial console demonstrating various API functions of WiConnect library.
util/log/log.h@25:c8ca04ebbb96, 2014-11-27 (annotated)
- 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?
User | Revision | Line number | New 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 "Wiconnect.h" |
dan_ackme | 0:836c9a6383e0 | 32 | |
dan_ackme | 0:836c9a6383e0 | 33 | #define LOG_DEBUG(msg, ...) logDebug(msg "\r\n", ## __VA_ARGS__) |
dan_ackme | 0:836c9a6383e0 | 34 | #define LOG_INFO(msg, ...) logInfo(msg "\r\n", ## __VA_ARGS__) |
dan_ackme | 0:836c9a6383e0 | 35 | #define LOG_INFO_WRITE_STR(msg, s) logInfoWriteStr(msg, s) |
dan_ackme | 0:836c9a6383e0 | 36 | #define LOG_ERROR(msg, ...) logError(msg "\r\n", ## __VA_ARGS__) |
dan_ackme | 0:836c9a6383e0 | 37 | #define LOG_WICONNECT_ERROR(result, msg, ...) logWiconnectError(result, msg, ## __VA_ARGS__) |
dan_ackme | 0:836c9a6383e0 | 38 | |
dan_ackme | 0:836c9a6383e0 | 39 | |
dan_ackme | 0:836c9a6383e0 | 40 | void logDebug(const char *msg, ...); |
dan_ackme | 0:836c9a6383e0 | 41 | void logInfo(const char *msg, ...); |
dan_ackme | 0:836c9a6383e0 | 42 | void logInfoWriteStr(const char *msg, const char *s); |
dan_ackme | 0:836c9a6383e0 | 43 | void logError(const char *msg, ...); |
dan_ackme | 0:836c9a6383e0 | 44 | void logWiconnectError(wiconnect::WiconnectResult result, const char *msg, ...); |
dan_ackme | 0:836c9a6383e0 | 45 | void logWrite(const void *data, int size); |