FFT LED Display / 4180_EditThis_copy_Demo_Test

Dependencies:   FFT

Committer:
dimitryjl23
Date:
Fri Dec 04 18:01:22 2020 +0000
Revision:
11:951bbb0385aa
Parent:
0:d6c9b09b4042
Final :)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
annieluo2 0:d6c9b09b4042 1
annieluo2 0:d6c9b09b4042 2 /** \addtogroup rtos */
annieluo2 0:d6c9b09b4042 3 /** @{*/
annieluo2 0:d6c9b09b4042 4 /*----------------------------------------------------------------------------
annieluo2 0:d6c9b09b4042 5 * CMSIS-RTOS - RTX
annieluo2 0:d6c9b09b4042 6 *----------------------------------------------------------------------------
annieluo2 0:d6c9b09b4042 7 * Name: RT_MEMBOX.H
annieluo2 0:d6c9b09b4042 8 * Purpose: Interface functions for fixed memory block management system
annieluo2 0:d6c9b09b4042 9 * Rev.: V4.79
annieluo2 0:d6c9b09b4042 10 *----------------------------------------------------------------------------
annieluo2 0:d6c9b09b4042 11 *
annieluo2 0:d6c9b09b4042 12 * Copyright (c) 1999-2009 KEIL, 2009-2015 ARM Germany GmbH
annieluo2 0:d6c9b09b4042 13 * All rights reserved.
annieluo2 0:d6c9b09b4042 14 * Redistribution and use in source and binary forms, with or without
annieluo2 0:d6c9b09b4042 15 * modification, are permitted provided that the following conditions are met:
annieluo2 0:d6c9b09b4042 16 * - Redistributions of source code must retain the above copyright
annieluo2 0:d6c9b09b4042 17 * notice, this list of conditions and the following disclaimer.
annieluo2 0:d6c9b09b4042 18 * - Redistributions in binary form must reproduce the above copyright
annieluo2 0:d6c9b09b4042 19 * notice, this list of conditions and the following disclaimer in the
annieluo2 0:d6c9b09b4042 20 * documentation and/or other materials provided with the distribution.
annieluo2 0:d6c9b09b4042 21 * - Neither the name of ARM nor the names of its contributors may be used
annieluo2 0:d6c9b09b4042 22 * to endorse or promote products derived from this software without
annieluo2 0:d6c9b09b4042 23 * specific prior written permission.
annieluo2 0:d6c9b09b4042 24 *
annieluo2 0:d6c9b09b4042 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
annieluo2 0:d6c9b09b4042 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
annieluo2 0:d6c9b09b4042 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
annieluo2 0:d6c9b09b4042 28 * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
annieluo2 0:d6c9b09b4042 29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
annieluo2 0:d6c9b09b4042 30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
annieluo2 0:d6c9b09b4042 31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
annieluo2 0:d6c9b09b4042 32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
annieluo2 0:d6c9b09b4042 33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
annieluo2 0:d6c9b09b4042 34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
annieluo2 0:d6c9b09b4042 35 * POSSIBILITY OF SUCH DAMAGE.
annieluo2 0:d6c9b09b4042 36 *---------------------------------------------------------------------------*/
annieluo2 0:d6c9b09b4042 37
annieluo2 0:d6c9b09b4042 38 /* Functions */
annieluo2 0:d6c9b09b4042 39 #define rt_init_box _init_box
annieluo2 0:d6c9b09b4042 40 #define rt_calloc_box _calloc_box
annieluo2 0:d6c9b09b4042 41 extern U32 _init_box (void *box_mem, U32 box_size, U32 blk_size);
annieluo2 0:d6c9b09b4042 42 extern void *rt_alloc_box (void *box_mem);
annieluo2 0:d6c9b09b4042 43 extern void * _calloc_box (void *box_mem);
annieluo2 0:d6c9b09b4042 44 extern U32 rt_free_box (void *box_mem, void *box);
annieluo2 0:d6c9b09b4042 45
annieluo2 0:d6c9b09b4042 46 /*----------------------------------------------------------------------------
annieluo2 0:d6c9b09b4042 47 * end of file
annieluo2 0:d6c9b09b4042 48 *---------------------------------------------------------------------------*/
annieluo2 0:d6c9b09b4042 49
annieluo2 0:d6c9b09b4042 50 /** @}*/