mirror of
https://github.com/espressif/openthread.git
synced 2026-07-10 22:30:21 +00:00
7a19067515
* Remove unnecessary WPP definition. * Various other small fixes.
84 lines
3.3 KiB
C
84 lines
3.3 KiB
C
/*
|
|
* Copyright (c) 2016, The OpenThread Authors.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. Neither the name of the copyright holder nor the
|
|
* names of its contributors may be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
/* Define to 1 to enable the commissioner role. */
|
|
#define OPENTHREAD_ENABLE_COMMISSIONER 1
|
|
|
|
/* Define to 1 if you want to use diagnostics module */
|
|
#define OPENTHREAD_ENABLE_DIAG 0
|
|
|
|
/* Define to 1 to enable dtls support. */
|
|
#define OPENTHREAD_ENABLE_DTLS 1
|
|
|
|
/* Define to 1 to enable the joiner role. */
|
|
#define OPENTHREAD_ENABLE_JOINER 1
|
|
|
|
/* Name of package */
|
|
#define PACKAGE "openthread"
|
|
|
|
/* Define to the address where bug reports for this package should be sent. */
|
|
#define PACKAGE_BUGREPORT "openthread-devel@googlegroups.com"
|
|
|
|
/* Define to the full name of this package. */
|
|
#define PACKAGE_NAME "OPENTHREAD"
|
|
|
|
/* Define to the full name and version of this package. */
|
|
#define PACKAGE_STRING "OPENTHREAD 0.01.00"
|
|
|
|
/* Define to the one symbol short name of this package. */
|
|
#define PACKAGE_TARNAME "openthread"
|
|
|
|
/* Define to the home page for this package. */
|
|
#define PACKAGE_URL "http://github.com/openthread/openthread"
|
|
|
|
/* Define to the version of this package. */
|
|
#define PACKAGE_VERSION "0.01.00"
|
|
|
|
/* Version number of package */
|
|
#define VERSION "0.01.00"
|
|
|
|
/* Platform version information */
|
|
#define PLATFORM_INFO "Windows"
|
|
|
|
// Windows Kernel only has sprintf_s
|
|
#ifdef _KERNEL_MODE
|
|
#define snprintf sprintf_s
|
|
#endif // _KERNEL_MODE
|
|
|
|
// Redefine rand to random for test code
|
|
#define random rand
|
|
|
|
// Temporary !!! TODO - Remove this once we figure out the strncpy issue
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
|
|
// Disable a few warnings that we don't care about
|
|
#pragma warning(disable:4200) // nonstandard extension used: zero-sized array in struct/union
|
|
#pragma warning(disable:4201) // nonstandard extension used : nameless struct/union
|
|
#pragma warning(disable:4291) // no matching operator delete found
|
|
#pragma warning(disable:4815) // zero-sized array in stack object will have no elements
|