max32630fthr quad spi , unexpected spi behavior

Committer:
boonshen
Date:
Tue Mar 13 21:12:00 2018 +0000
Revision:
0:a35c40f49345
MAX32630FTHR QuadSPI test

Who changed what in which revision?

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