Rahul Dahiya / Mbed OS STM32F7 Ethernet
Committer:
rahul_dahiya
Date:
Wed Jan 15 15:57:15 2020 +0530
Revision:
0:fb8047b156bb
STM32F7 LWIP

Who changed what in which revision?

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