PES4 / Mbed OS Queue_02
Committer:
demayer
Date:
Sat Apr 11 08:15:48 2020 +0000
Revision:
1:b36bbc1c6d27
Parent:
0:6bf0743ece18
IMU-library in .h und .cpp file aufgeteilt

Who changed what in which revision?

UserRevisionLine numberNew contents of line
demayer 0:6bf0743ece18 1 /*******************************************************************************
demayer 0:6bf0743ece18 2 * Copyright (C) 2015 Maxim Integrated Products, Inc., All Rights Reserved.
demayer 0:6bf0743ece18 3 *
demayer 0:6bf0743ece18 4 * Permission is hereby granted, free of charge, to any person obtaining a
demayer 0:6bf0743ece18 5 * copy of this software and associated documentation files (the "Software"),
demayer 0:6bf0743ece18 6 * to deal in the Software without restriction, including without limitation
demayer 0:6bf0743ece18 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
demayer 0:6bf0743ece18 8 * and/or sell copies of the Software, and to permit persons to whom the
demayer 0:6bf0743ece18 9 * Software is furnished to do so, subject to the following conditions:
demayer 0:6bf0743ece18 10 *
demayer 0:6bf0743ece18 11 * The above copyright notice and this permission notice shall be included
demayer 0:6bf0743ece18 12 * in all copies or substantial portions of the Software.
demayer 0:6bf0743ece18 13 *
demayer 0:6bf0743ece18 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
demayer 0:6bf0743ece18 15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
demayer 0:6bf0743ece18 16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
demayer 0:6bf0743ece18 17 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
demayer 0:6bf0743ece18 18 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
demayer 0:6bf0743ece18 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
demayer 0:6bf0743ece18 20 * OTHER DEALINGS IN THE SOFTWARE.
demayer 0:6bf0743ece18 21 *
demayer 0:6bf0743ece18 22 * Except as contained in this notice, the name of Maxim Integrated
demayer 0:6bf0743ece18 23 * Products, Inc. shall not be used except as stated in the Maxim Integrated
demayer 0:6bf0743ece18 24 * Products, Inc. Branding Policy.
demayer 0:6bf0743ece18 25 *
demayer 0:6bf0743ece18 26 * The mere transfer of this software does not imply any licenses
demayer 0:6bf0743ece18 27 * of trade secrets, proprietary technology, copyrights, patents,
demayer 0:6bf0743ece18 28 * trademarks, maskwork rights, or any other form of intellectual
demayer 0:6bf0743ece18 29 * property whatsoever. Maxim Integrated Products, Inc. retains all
demayer 0:6bf0743ece18 30 * ownership rights.
demayer 0:6bf0743ece18 31 *******************************************************************************
demayer 0:6bf0743ece18 32 */
demayer 0:6bf0743ece18 33
demayer 0:6bf0743ece18 34 #ifndef MBED_CMSIS_NVIC_H
demayer 0:6bf0743ece18 35 #define MBED_CMSIS_NVIC_H
demayer 0:6bf0743ece18 36
demayer 0:6bf0743ece18 37 extern void (*ramVectorTable[MXC_IRQ_COUNT])(void);
demayer 0:6bf0743ece18 38
demayer 0:6bf0743ece18 39 #define NVIC_NUM_VECTORS (MXC_IRQ_COUNT)
demayer 0:6bf0743ece18 40 #define NVIC_RAM_VECTOR_ADDRESS (ramVectorTable) // Vectors positioned at start of RAM
demayer 0:6bf0743ece18 41
demayer 0:6bf0743ece18 42 #endif /* MBED_CMSIS_NVIC_H */