TI's CC3100. A test demo with very little testing done!
Fork of cc3100_Test_Demo2 by
simplelink/cc3100_sl_common.h@0:e89ba455dbcf, 2015-02-10 (annotated)
- Committer:
- dflet
- Date:
- Tue Feb 10 12:09:29 2015 +0000
- Revision:
- 0:e89ba455dbcf
For test only! Not much has been tested, but the 2 demo apps run ok. Alot more work needs to be done!
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
dflet | 0:e89ba455dbcf | 1 | /* |
dflet | 0:e89ba455dbcf | 2 | * sl_config.h - get time sample application |
dflet | 0:e89ba455dbcf | 3 | * |
dflet | 0:e89ba455dbcf | 4 | * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/ |
dflet | 0:e89ba455dbcf | 5 | * |
dflet | 0:e89ba455dbcf | 6 | * |
dflet | 0:e89ba455dbcf | 7 | * Redistribution and use in source and binary forms, with or without |
dflet | 0:e89ba455dbcf | 8 | * modification, are permitted provided that the following conditions |
dflet | 0:e89ba455dbcf | 9 | * are met: |
dflet | 0:e89ba455dbcf | 10 | * |
dflet | 0:e89ba455dbcf | 11 | * Redistributions of source code must retain the above copyright |
dflet | 0:e89ba455dbcf | 12 | * notice, this list of conditions and the following disclaimer. |
dflet | 0:e89ba455dbcf | 13 | * |
dflet | 0:e89ba455dbcf | 14 | * Redistributions in binary form must reproduce the above copyright |
dflet | 0:e89ba455dbcf | 15 | * notice, this list of conditions and the following disclaimer in the |
dflet | 0:e89ba455dbcf | 16 | * documentation and/or other materials provided with the |
dflet | 0:e89ba455dbcf | 17 | * distribution. |
dflet | 0:e89ba455dbcf | 18 | * |
dflet | 0:e89ba455dbcf | 19 | * Neither the name of Texas Instruments Incorporated nor the names of |
dflet | 0:e89ba455dbcf | 20 | * its contributors may be used to endorse or promote products derived |
dflet | 0:e89ba455dbcf | 21 | * from this software without specific prior written permission. |
dflet | 0:e89ba455dbcf | 22 | * |
dflet | 0:e89ba455dbcf | 23 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
dflet | 0:e89ba455dbcf | 24 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
dflet | 0:e89ba455dbcf | 25 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
dflet | 0:e89ba455dbcf | 26 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
dflet | 0:e89ba455dbcf | 27 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
dflet | 0:e89ba455dbcf | 28 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
dflet | 0:e89ba455dbcf | 29 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
dflet | 0:e89ba455dbcf | 30 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
dflet | 0:e89ba455dbcf | 31 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
dflet | 0:e89ba455dbcf | 32 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
dflet | 0:e89ba455dbcf | 33 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
dflet | 0:e89ba455dbcf | 34 | * |
dflet | 0:e89ba455dbcf | 35 | */ |
dflet | 0:e89ba455dbcf | 36 | |
dflet | 0:e89ba455dbcf | 37 | #ifndef SL_CONFIG_H_ |
dflet | 0:e89ba455dbcf | 38 | #define SL_CONFIG_H_ |
dflet | 0:e89ba455dbcf | 39 | |
dflet | 0:e89ba455dbcf | 40 | //***************************************************************************** |
dflet | 0:e89ba455dbcf | 41 | // |
dflet | 0:e89ba455dbcf | 42 | // If building with a C++ compiler, make all of the definitions in this header |
dflet | 0:e89ba455dbcf | 43 | // have a C binding. |
dflet | 0:e89ba455dbcf | 44 | // |
dflet | 0:e89ba455dbcf | 45 | //***************************************************************************** |
dflet | 0:e89ba455dbcf | 46 | |
dflet | 0:e89ba455dbcf | 47 | /**/ |
dflet | 0:e89ba455dbcf | 48 | |
dflet | 0:e89ba455dbcf | 49 | namespace mbed_cc3100 { |
dflet | 0:e89ba455dbcf | 50 | |
dflet | 0:e89ba455dbcf | 51 | #define LOOP_FOREVER() \ |
dflet | 0:e89ba455dbcf | 52 | {\ |
dflet | 0:e89ba455dbcf | 53 | while(1); \ |
dflet | 0:e89ba455dbcf | 54 | } |
dflet | 0:e89ba455dbcf | 55 | |
dflet | 0:e89ba455dbcf | 56 | #define ASSERT_ON_ERROR(error_code) \ |
dflet | 0:e89ba455dbcf | 57 | {\ |
dflet | 0:e89ba455dbcf | 58 | /* Handling the error-codes is specific to the application */ \ |
dflet | 0:e89ba455dbcf | 59 | if (error_code < 0) return error_code; \ |
dflet | 0:e89ba455dbcf | 60 | /* else, continue w/ execution */ \ |
dflet | 0:e89ba455dbcf | 61 | } |
dflet | 0:e89ba455dbcf | 62 | |
dflet | 0:e89ba455dbcf | 63 | |
dflet | 0:e89ba455dbcf | 64 | /* |
dflet | 0:e89ba455dbcf | 65 | * Values for below macros shall be modified per the access-point's (AP) properties |
dflet | 0:e89ba455dbcf | 66 | * SimpleLink device will connect to following AP when the application is executed |
dflet | 0:e89ba455dbcf | 67 | */ |
dflet | 0:e89ba455dbcf | 68 | |
dflet | 0:e89ba455dbcf | 69 | |
dflet | 0:e89ba455dbcf | 70 | #define SSID_NAME "OpenWrt" /* Access point name to connect to. */ |
dflet | 0:e89ba455dbcf | 71 | #define SEC_TYPE SL_SEC_TYPE_WPA_WPA2 /* Security type of the Access point */ |
dflet | 0:e89ba455dbcf | 72 | #define PASSKEY "**********" /* Password in case of secure AP */ |
dflet | 0:e89ba455dbcf | 73 | #define PASSKEY_LEN strlen(PASSKEY) /* Password length in case of secure AP */ |
dflet | 0:e89ba455dbcf | 74 | |
dflet | 0:e89ba455dbcf | 75 | /* Configuration of the device when it comes up in AP mode */ |
dflet | 0:e89ba455dbcf | 76 | #define SSID_AP_MODE "mysimplelink" /* SSID of the CC3100 in AP mode */ |
dflet | 0:e89ba455dbcf | 77 | #define PASSWORD_AP_MODE "" /* Password of CC3100 AP */ |
dflet | 0:e89ba455dbcf | 78 | #define SEC_TYPE_AP_MODE SL_SEC_TYPE_OPEN /* Can take SL_SEC_TYPE_WEP or |
dflet | 0:e89ba455dbcf | 79 | * SL_SEC_TYPE_WPA as well */ |
dflet | 0:e89ba455dbcf | 80 | |
dflet | 0:e89ba455dbcf | 81 | /* |
dflet | 0:e89ba455dbcf | 82 | * Values for below macros shall be modified based on current time |
dflet | 0:e89ba455dbcf | 83 | */ |
dflet | 0:e89ba455dbcf | 84 | #define DATE 7 /* Current Date */ |
dflet | 0:e89ba455dbcf | 85 | #define MONTH 2 /* Month */ |
dflet | 0:e89ba455dbcf | 86 | #define YEAR 2015 /* Current year */ |
dflet | 0:e89ba455dbcf | 87 | #define HOUR 10 /* Time - hours */ |
dflet | 0:e89ba455dbcf | 88 | #define MINUTE 34 /* Time - minutes */ |
dflet | 0:e89ba455dbcf | 89 | #define SECOND 0 /* Time - seconds */ |
dflet | 0:e89ba455dbcf | 90 | |
dflet | 0:e89ba455dbcf | 91 | #define SUCCESS 0 |
dflet | 0:e89ba455dbcf | 92 | |
dflet | 0:e89ba455dbcf | 93 | }//namespace mbed_cc3100 |
dflet | 0:e89ba455dbcf | 94 | |
dflet | 0:e89ba455dbcf | 95 | #endif /*__SL_CONFIG_H__*/ |
dflet | 0:e89ba455dbcf | 96 |