GM6000 Digital Heater Controller Branch: main
SDX-1330
Assert.h
Go to the documentation of this file.
1#ifndef Cpl_System_Assert_h_
2#define Cpl_System_Assert_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "colony_config.h"
16#include "colony_map.h"
17
18#ifdef USE_CPL_SYSTEM_ASSERT_MACROS
19
20/** This macro is platform/compiler independent replacement for 'assert()'
21 function/macro. If the passed boolean expression is false (i.e. zero)
22 then the application is terminated. The specific actions that occur when
23 the application is terminated is platform specific. The 'signature' for
24 the macro/function is:
25
26 \b Prototype: void CPL_SYSTEM_ASSERT( <boolean expression> );
27
28 Note: This assert macro must be "turned on" at compile time by defining
29 the USE_CPL_SYSTEM_ASSERT_MACROS symbol.
30 */
31#define CPL_SYSTEM_ASSERT CPL_SYSTEM_ASSERT_MAP
32
33#else
34
35/// Empty macro
36#define CPL_SYSTEM_ASSERT(e)
37
38#endif // end USE_CPL_SYSTEM_ASSERT_MACROS
39
40
41#endif // end header latch
42