Bmag incl gps rettelse

Dependencies:   mbed WDT MODSERIAL BME280

Committer:
gert_lauritsen
Date:
Tue Jul 09 09:54:41 2019 +0000
Branch:
MbedBMAGThrRev
Revision:
64:06b9b8ffd5a6
Parent:
61:52a6d0ffd8e5
dataline version to 4 and fw til 1.0.0.7

Who changed what in which revision?

UserRevisionLine numberNew contents of line
gert_lauritsen 61:52a6d0ffd8e5 1
gert_lauritsen 61:52a6d0ffd8e5 2 /** \addtogroup rtos */
gert_lauritsen 61:52a6d0ffd8e5 3 /** @{*/
gert_lauritsen 61:52a6d0ffd8e5 4 /* mbed Microcontroller Library
gert_lauritsen 61:52a6d0ffd8e5 5 * Copyright (c) 2006-2012 ARM Limited
gert_lauritsen 61:52a6d0ffd8e5 6 *
gert_lauritsen 61:52a6d0ffd8e5 7 * Permission is hereby granted, free of charge, to any person obtaining a copy
gert_lauritsen 61:52a6d0ffd8e5 8 * of this software and associated documentation files (the "Software"), to deal
gert_lauritsen 61:52a6d0ffd8e5 9 * in the Software without restriction, including without limitation the rights
gert_lauritsen 61:52a6d0ffd8e5 10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
gert_lauritsen 61:52a6d0ffd8e5 11 * copies of the Software, and to permit persons to whom the Software is
gert_lauritsen 61:52a6d0ffd8e5 12 * furnished to do so, subject to the following conditions:
gert_lauritsen 61:52a6d0ffd8e5 13 *
gert_lauritsen 61:52a6d0ffd8e5 14 * The above copyright notice and this permission notice shall be included in
gert_lauritsen 61:52a6d0ffd8e5 15 * all copies or substantial portions of the Software.
gert_lauritsen 61:52a6d0ffd8e5 16 *
gert_lauritsen 61:52a6d0ffd8e5 17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
gert_lauritsen 61:52a6d0ffd8e5 18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
gert_lauritsen 61:52a6d0ffd8e5 19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
gert_lauritsen 61:52a6d0ffd8e5 20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
gert_lauritsen 61:52a6d0ffd8e5 21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
gert_lauritsen 61:52a6d0ffd8e5 22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
gert_lauritsen 61:52a6d0ffd8e5 23 * SOFTWARE.
gert_lauritsen 61:52a6d0ffd8e5 24 */
gert_lauritsen 61:52a6d0ffd8e5 25 #ifndef RTOS_IDLE_H
gert_lauritsen 61:52a6d0ffd8e5 26 #define RTOS_IDLE_H
gert_lauritsen 61:52a6d0ffd8e5 27
gert_lauritsen 61:52a6d0ffd8e5 28 #include <stddef.h>
gert_lauritsen 61:52a6d0ffd8e5 29
gert_lauritsen 61:52a6d0ffd8e5 30 #ifdef __cplusplus
gert_lauritsen 61:52a6d0ffd8e5 31 extern "C" {
gert_lauritsen 61:52a6d0ffd8e5 32 #endif
gert_lauritsen 61:52a6d0ffd8e5 33
gert_lauritsen 61:52a6d0ffd8e5 34 void rtos_attach_idle_hook(void (*fptr)(void));
gert_lauritsen 61:52a6d0ffd8e5 35
gert_lauritsen 61:52a6d0ffd8e5 36 #ifdef __cplusplus
gert_lauritsen 61:52a6d0ffd8e5 37 }
gert_lauritsen 61:52a6d0ffd8e5 38 #endif
gert_lauritsen 61:52a6d0ffd8e5 39
gert_lauritsen 61:52a6d0ffd8e5 40 #endif
gert_lauritsen 61:52a6d0ffd8e5 41
gert_lauritsen 61:52a6d0ffd8e5 42 /** @}*/