Initial commit

Dependencies:   FastPWM

Committer:
lypinator
Date:
Wed Sep 16 01:11:49 2020 +0000
Revision:
0:bb348c97df44
Added PWM

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lypinator 0:bb348c97df44 1 /*---------------------------------------------------------------------------
lypinator 0:bb348c97df44 2 * Copyright (c) 2016, u-blox Malmö, All Rights Reserved
lypinator 0:bb348c97df44 3 * SPDX-License-Identifier: LicenseRef-PBL
lypinator 0:bb348c97df44 4 *
lypinator 0:bb348c97df44 5 * This file and the related binary are licensed under the
lypinator 0:bb348c97df44 6 * Permissive Binary License, Version 1.0 (the "License");
lypinator 0:bb348c97df44 7 * you may not use these files except in compliance with the License.
lypinator 0:bb348c97df44 8 *
lypinator 0:bb348c97df44 9 * You may obtain a copy of the License here:
lypinator 0:bb348c97df44 10 * LICENSE-permissive-binary-license-1.0.txt and at
lypinator 0:bb348c97df44 11 * https://www.mbed.com/licenses/PBL-1.0
lypinator 0:bb348c97df44 12 *
lypinator 0:bb348c97df44 13 * See the License for the specific language governing permissions and
lypinator 0:bb348c97df44 14 * limitations under the License.
lypinator 0:bb348c97df44 15 *
lypinator 0:bb348c97df44 16 * Component : Assert
lypinator 0:bb348c97df44 17 * File : cb_assert.h
lypinator 0:bb348c97df44 18 *
lypinator 0:bb348c97df44 19 * Description : ASSERT macro variations.
lypinator 0:bb348c97df44 20 *-------------------------------------------------------------------------*/
lypinator 0:bb348c97df44 21
lypinator 0:bb348c97df44 22 #ifndef _CB_ASSERT_H_
lypinator 0:bb348c97df44 23 #define _CB_ASSERT_H_
lypinator 0:bb348c97df44 24
lypinator 0:bb348c97df44 25 #include "cb_comdefs.h"
lypinator 0:bb348c97df44 26
lypinator 0:bb348c97df44 27 #ifdef __cplusplus
lypinator 0:bb348c97df44 28 extern "C" {
lypinator 0:bb348c97df44 29 #endif
lypinator 0:bb348c97df44 30
lypinator 0:bb348c97df44 31
lypinator 0:bb348c97df44 32 /*===========================================================================
lypinator 0:bb348c97df44 33 * DEFINES
lypinator 0:bb348c97df44 34 *=========================================================================*/
lypinator 0:bb348c97df44 35
lypinator 0:bb348c97df44 36 /*
lypinator 0:bb348c97df44 37 * Internal platform function declaration.
lypinator 0:bb348c97df44 38 * Shall never be called directly.
lypinator 0:bb348c97df44 39 */
lypinator 0:bb348c97df44 40
lypinator 0:bb348c97df44 41 extern void cbOS_error(cb_int32 errorCode, const cb_char *file, cb_uint32 line);
lypinator 0:bb348c97df44 42 extern void cbOS_error2(const cb_char *file, cb_uint32 line);
lypinator 0:bb348c97df44 43
lypinator 0:bb348c97df44 44 #ifndef NASSERT
lypinator 0:bb348c97df44 45
lypinator 0:bb348c97df44 46 #ifndef __CB_FILE__
lypinator 0:bb348c97df44 47 #define __CB_FILE__ __FILE__
lypinator 0:bb348c97df44 48 #endif
lypinator 0:bb348c97df44 49
lypinator 0:bb348c97df44 50 /*
lypinator 0:bb348c97df44 51 * If the condition (C) evaluates to FALSE, the registered error handler in cbOS
lypinator 0:bb348c97df44 52 * is called with file and line info before the system is reset.
lypinator 0:bb348c97df44 53 */
lypinator 0:bb348c97df44 54
lypinator 0:bb348c97df44 55 #define cb_ASSERT(C) do { if(!(C)){cbOS_error2(__CB_FILE__,__LINE__);} } while(0)
lypinator 0:bb348c97df44 56
lypinator 0:bb348c97df44 57 #define cb_ASSERTC(C) do { if(!(C)){cbOS_error2(__CB_FILE__ , __LINE__);} } while(0)
lypinator 0:bb348c97df44 58
lypinator 0:bb348c97df44 59 #define cb_ASSERT2(C, E) do { if(!(C)){cbOS_error(E, __CB_FILE__ , __LINE__);} } while(0)
lypinator 0:bb348c97df44 60
lypinator 0:bb348c97df44 61 /*
lypinator 0:bb348c97df44 62 * The registered error handler is called with the file and line info before a system reset.
lypinator 0:bb348c97df44 63 */
lypinator 0:bb348c97df44 64
lypinator 0:bb348c97df44 65 #define cb_EXIT(E) do { cbOS_error(((cb_int32)(E)), __CB_FILE__, __LINE__); } while(0)
lypinator 0:bb348c97df44 66
lypinator 0:bb348c97df44 67
lypinator 0:bb348c97df44 68 #else
lypinator 0:bb348c97df44 69
lypinator 0:bb348c97df44 70 #define cb_ASSERT(C)
lypinator 0:bb348c97df44 71
lypinator 0:bb348c97df44 72 #define cb_ASSERTC(C) do { if(!(C)){cbWD_systemReset();} } while(0) // Critical assert is never removed.
lypinator 0:bb348c97df44 73
lypinator 0:bb348c97df44 74 #define cb_ASSERT2(C, E)
lypinator 0:bb348c97df44 75
lypinator 0:bb348c97df44 76 #define cb_EXIT(E) do { cbWD_systemReset(); } while(0)
lypinator 0:bb348c97df44 77
lypinator 0:bb348c97df44 78 #endif
lypinator 0:bb348c97df44 79
lypinator 0:bb348c97df44 80
lypinator 0:bb348c97df44 81 /*===========================================================================
lypinator 0:bb348c97df44 82 * TYPES
lypinator 0:bb348c97df44 83 *=========================================================================*/
lypinator 0:bb348c97df44 84
lypinator 0:bb348c97df44 85 #ifdef __cplusplus
lypinator 0:bb348c97df44 86 }
lypinator 0:bb348c97df44 87 #endif
lypinator 0:bb348c97df44 88
lypinator 0:bb348c97df44 89 #endif /* _cb_ASSERT_H_ */
lypinator 0:bb348c97df44 90
lypinator 0:bb348c97df44 91
lypinator 0:bb348c97df44 92
lypinator 0:bb348c97df44 93
lypinator 0:bb348c97df44 94