source: azure_iot_hub/trunk/azure_iohub/c-utility/inc/azure_c_shared_utility/optimize_size.h@ 388

Last change on this file since 388 was 388, checked in by coas-nagasima, 5 years ago

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-chdr
File size: 536 bytes
Line 
1// Copyright (c) Microsoft. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
4#ifndef OPTIMIZE_SIZE_H
5#define OPTIMIZE_SIZE_H
6
7#if (defined __MSP430FR5969__)
8 #define OPTIMIZE_RETURN_CODES
9 #define NO_VERBOSE_OUTPUT
10 #ifdef DEBUG
11 #define MINIMAL_LOGERROR
12 #else
13 #define NO_LOGGING
14 #endif
15#endif
16
17#if (defined OPTIMIZE_RETURN_CODES)
18 #define MU_FAILURE 1
19#else
20 #define MU_FAILURE __LINE__
21#endif
22
23#endif // OPTIMIZE_SIZE_H
24
Note: See TracBrowser for help on using the repository browser.