From: rtel Date: Fri, 20 Dec 2019 02:49:15 +0000 (+0000) Subject: Remove build files accidentally checked in. X-Git-Tag: V10.3.0~55 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=98747ed51129fb2dd02d10fe72748e0790c7fffa;p=freertos Remove build files accidentally checked in. Remove the CMSIS math library as it is large and not used. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2768 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/CMSIS/arm_math.h b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/CMSIS/arm_math.h deleted file mode 100644 index 16c7f1d2c..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/CMSIS/arm_math.h +++ /dev/null @@ -1,7160 +0,0 @@ -/****************************************************************************** - * @file arm_math.h - * @brief Public header file for CMSIS DSP LibraryU - * @version V1.5.3 - * @date 10. January 2018 - ******************************************************************************/ -/* - * Copyright (c) 2010-2018 Arm Limited or its affiliates. All rights reserved. - * - * SPDX-License-Identifier: Apache-2.0 - * - * Licensed under the Apache License, Version 2.0 (the License); you may - * not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an AS IS BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/** - \mainpage CMSIS DSP Software Library - * - * Introduction - * ------------ - * - * This user manual describes the CMSIS DSP software library, - * a suite of common signal processing functions for use on Cortex-M processor based devices. - * - * The library is divided into a number of functions each covering a specific category: - * - Basic math functions - * - Fast math functions - * - Complex math functions - * - Filters - * - Matrix functions - * - Transforms - * - Motor control functions - * - Statistical functions - * - Support functions - * - Interpolation functions - * - * The library has separate functions for operating on 8-bit integers, 16-bit integers, - * 32-bit integer and 32-bit floating-point values. - * - * Using the Library - * ------------ - * - * The library installer contains prebuilt versions of the libraries in the Lib folder. - * - arm_cortexM7lfdp_math.lib (Cortex-M7, Little endian, Double Precision Floating Point Unit) - * - arm_cortexM7bfdp_math.lib (Cortex-M7, Big endian, Double Precision Floating Point Unit) - * - arm_cortexM7lfsp_math.lib (Cortex-M7, Little endian, Single Precision Floating Point Unit) - * - arm_cortexM7bfsp_math.lib (Cortex-M7, Big endian and Single Precision Floating Point Unit on) - * - arm_cortexM7l_math.lib (Cortex-M7, Little endian) - * - arm_cortexM7b_math.lib (Cortex-M7, Big endian) - * - arm_cortexM4lf_math.lib (Cortex-M4, Little endian, Floating Point Unit) - * - arm_cortexM4bf_math.lib (Cortex-M4, Big endian, Floating Point Unit) - * - arm_cortexM4l_math.lib (Cortex-M4, Little endian) - * - arm_cortexM4b_math.lib (Cortex-M4, Big endian) - * - arm_cortexM3l_math.lib (Cortex-M3, Little endian) - * - arm_cortexM3b_math.lib (Cortex-M3, Big endian) - * - arm_cortexM0l_math.lib (Cortex-M0 / Cortex-M0+, Little endian) - * - arm_cortexM0b_math.lib (Cortex-M0 / Cortex-M0+, Big endian) - * - arm_ARMv8MBLl_math.lib (Armv8-M Baseline, Little endian) - * - arm_ARMv8MMLl_math.lib (Armv8-M Mainline, Little endian) - * - arm_ARMv8MMLlfsp_math.lib (Armv8-M Mainline, Little endian, Single Precision Floating Point Unit) - * - arm_ARMv8MMLld_math.lib (Armv8-M Mainline, Little endian, DSP instructions) - * - arm_ARMv8MMLldfsp_math.lib (Armv8-M Mainline, Little endian, DSP instructions, Single Precision Floating Point Unit) - * - * The library functions are declared in the public file arm_math.h which is placed in the Include folder. - * Simply include this file and link the appropriate library in the application and begin calling the library functions. The Library supports single - * public header file arm_math.h for Cortex-M cores with little endian and big endian. Same header file will be used for floating point unit(FPU) variants. - * Define the appropriate preprocessor macro ARM_MATH_CM7 or ARM_MATH_CM4 or ARM_MATH_CM3 or - * ARM_MATH_CM0 or ARM_MATH_CM0PLUS depending on the target processor in the application. - * For Armv8-M cores define preprocessor macro ARM_MATH_ARMV8MBL or ARM_MATH_ARMV8MML. - * Set preprocessor macro __DSP_PRESENT if Armv8-M Mainline core supports DSP instructions. - * - * - * Examples - * -------- - * - * The library ships with a number of examples which demonstrate how to use the library functions. - * - * Toolchain Support - * ------------ - * - * The library has been developed and tested with MDK version 5.14.0.0 - * The library is being tested in GCC and IAR toolchains and updates on this activity will be made available shortly. - * - * Building the Library - * ------------ - * - * The library installer contains a project file to rebuild libraries on MDK toolchain in the CMSIS\\DSP_Lib\\Source\\ARM folder. - * - arm_cortexM_math.uvprojx - * - * - * The libraries can be built by opening the arm_cortexM_math.uvprojx project in MDK-ARM, selecting a specific target, and defining the optional preprocessor macros detailed above. - * - * Preprocessor Macros - * ------------ - * - * Each library project have different preprocessor macros. - * - * - UNALIGNED_SUPPORT_DISABLE: - * - * Define macro UNALIGNED_SUPPORT_DISABLE, If the silicon does not support unaligned memory access - * - * - ARM_MATH_BIG_ENDIAN: - * - * Define macro ARM_MATH_BIG_ENDIAN to build the library for big endian targets. By default library builds for little endian targets. - * - * - ARM_MATH_MATRIX_CHECK: - * - * Define macro ARM_MATH_MATRIX_CHECK for checking on the input and output sizes of matrices - * - * - ARM_MATH_ROUNDING: - * - * Define macro ARM_MATH_ROUNDING for rounding on support functions - * - * - ARM_MATH_CMx: - * - * Define macro ARM_MATH_CM4 for building the library on Cortex-M4 target, ARM_MATH_CM3 for building library on Cortex-M3 target - * and ARM_MATH_CM0 for building library on Cortex-M0 target, ARM_MATH_CM0PLUS for building library on Cortex-M0+ target, and - * ARM_MATH_CM7 for building the library on cortex-M7. - * - * - ARM_MATH_ARMV8MxL: - * - * Define macro ARM_MATH_ARMV8MBL for building the library on Armv8-M Baseline target, ARM_MATH_ARMV8MML for building library - * on Armv8-M Mainline target. - * - * - __FPU_PRESENT: - * - * Initialize macro __FPU_PRESENT = 1 when building on FPU supported Targets. Enable this macro for floating point libraries. - * - * - __DSP_PRESENT: - * - * Initialize macro __DSP_PRESENT = 1 when Armv8-M Mainline core supports DSP instructions. - * - *
- * CMSIS-DSP in ARM::CMSIS Pack - * ----------------------------- - * - * The following files relevant to CMSIS-DSP are present in the ARM::CMSIS Pack directories: - * |File/Folder |Content | - * |------------------------------|------------------------------------------------------------------------| - * |\b CMSIS\\Documentation\\DSP | This documentation | - * |\b CMSIS\\DSP_Lib | Software license agreement (license.txt) | - * |\b CMSIS\\DSP_Lib\\Examples | Example projects demonstrating the usage of the library functions | - * |\b CMSIS\\DSP_Lib\\Source | Source files for rebuilding the library | - * - *
- * Revision History of CMSIS-DSP - * ------------ - * Please refer to \ref ChangeLog_pg. - * - * Copyright Notice - * ------------ - * - * Copyright (C) 2010-2015 Arm Limited. All rights reserved. - */ - - -/** - * @defgroup groupMath Basic Math Functions - */ - -/** - * @defgroup groupFastMath Fast Math Functions - * This set of functions provides a fast approximation to sine, cosine, and square root. - * As compared to most of the other functions in the CMSIS math library, the fast math functions - * operate on individual values and not arrays. - * There are separate functions for Q15, Q31, and floating-point data. - * - */ - -/** - * @defgroup groupCmplxMath Complex Math Functions - * This set of functions operates on complex data vectors. - * The data in the complex arrays is stored in an interleaved fashion - * (real, imag, real, imag, ...). - * In the API functions, the number of samples in a complex array refers - * to the number of complex values; the array contains twice this number of - * real values. - */ - -/** - * @defgroup groupFilters Filtering Functions - */ - -/** - * @defgroup groupMatrix Matrix Functions - * - * This set of functions provides basic matrix math operations. - * The functions operate on matrix data structures. For example, - * the type - * definition for the floating-point matrix structure is shown - * below: - *
- *     typedef struct
- *     {
- *       uint16_t numRows;     // number of rows of the matrix.
- *       uint16_t numCols;     // number of columns of the matrix.
- *       float32_t *pData;     // points to the data of the matrix.
- *     } arm_matrix_instance_f32;
- * 
- * There are similar definitions for Q15 and Q31 data types. - * - * The structure specifies the size of the matrix and then points to - * an array of data. The array is of size numRows X numCols - * and the values are arranged in row order. That is, the - * matrix element (i, j) is stored at: - *
- *     pData[i*numCols + j]
- * 
- * - * \par Init Functions - * There is an associated initialization function for each type of matrix - * data structure. - * The initialization function sets the values of the internal structure fields. - * Refer to the function arm_mat_init_f32(), arm_mat_init_q31() - * and arm_mat_init_q15() for floating-point, Q31 and Q15 types, respectively. - * - * \par - * Use of the initialization function is optional. However, if initialization function is used - * then the instance structure cannot be placed into a const data section. - * To place the instance structure in a const data - * section, manually initialize the data structure. For example: - *
- * arm_matrix_instance_f32 S = {nRows, nColumns, pData};
- * arm_matrix_instance_q31 S = {nRows, nColumns, pData};
- * arm_matrix_instance_q15 S = {nRows, nColumns, pData};
- * 
- * where nRows specifies the number of rows, nColumns - * specifies the number of columns, and pData points to the - * data array. - * - * \par Size Checking - * By default all of the matrix functions perform size checking on the input and - * output matrices. For example, the matrix addition function verifies that the - * two input matrices and the output matrix all have the same number of rows and - * columns. If the size check fails the functions return: - *
- *     ARM_MATH_SIZE_MISMATCH
- * 
- * Otherwise the functions return - *
- *     ARM_MATH_SUCCESS
- * 
- * There is some overhead associated with this matrix size checking. - * The matrix size checking is enabled via the \#define - *
- *     ARM_MATH_MATRIX_CHECK
- * 
- * within the library project settings. By default this macro is defined - * and size checking is enabled. By changing the project settings and - * undefining this macro size checking is eliminated and the functions - * run a bit faster. With size checking disabled the functions always - * return ARM_MATH_SUCCESS. - */ - -/** - * @defgroup groupTransforms Transform Functions - */ - -/** - * @defgroup groupController Controller Functions - */ - -/** - * @defgroup groupStats Statistics Functions - */ -/** - * @defgroup groupSupport Support Functions - */ - -/** - * @defgroup groupInterpolation Interpolation Functions - * These functions perform 1- and 2-dimensional interpolation of data. - * Linear interpolation is used for 1-dimensional data and - * bilinear interpolation is used for 2-dimensional data. - */ - -/** - * @defgroup groupExamples Examples - */ -#ifndef _ARM_MATH_H -#define _ARM_MATH_H - -/* Compiler specific diagnostic adjustment */ -#if defined ( __CC_ARM ) - -#elif defined ( __ARMCC_VERSION ) && ( __ARMCC_VERSION >= 6010050 ) - -#elif defined ( __GNUC__ ) -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wsign-conversion" -#pragma GCC diagnostic ignored "-Wconversion" -#pragma GCC diagnostic ignored "-Wunused-parameter" - -#elif defined ( __ICCARM__ ) - -#elif defined ( __TI_ARM__ ) - -#elif defined ( __CSMC__ ) - -#elif defined ( __TASKING__ ) - -#else - #error Unknown compiler -#endif - - -#define __CMSIS_GENERIC /* disable NVIC and Systick functions */ - -#if defined(ARM_MATH_CM7) - #include "core_cm7.h" - #define ARM_MATH_DSP -#elif defined (ARM_MATH_CM4) - #include "core_cm4.h" - #define ARM_MATH_DSP -#elif defined (ARM_MATH_CM33) - #include "core_cm33.h" - #define ARM_MATH_DSP -#elif defined (ARM_MATH_CM3) - #include "core_cm3.h" -#elif defined (ARM_MATH_CM0) - #include "core_cm0.h" - #define ARM_MATH_CM0_FAMILY -#elif defined (ARM_MATH_CM0PLUS) - #include "core_cm0plus.h" - #define ARM_MATH_CM0_FAMILY -#elif defined (ARM_MATH_ARMV8MBL) - #include "core_armv8mbl.h" - #define ARM_MATH_CM0_FAMILY -#elif defined (ARM_MATH_ARMV8MML) - #include "core_armv8mml.h" - #if (defined (__DSP_PRESENT) && (__DSP_PRESENT == 1)) - #define ARM_MATH_DSP - #endif -#else - #error "Define according the used Cortex core ARM_MATH_CM7, ARM_MATH_CM4, ARM_MATH_CM3, ARM_MATH_CM0PLUS, ARM_MATH_CM0, ARM_MATH_ARMV8MBL, ARM_MATH_ARMV8MML" -#endif - -#undef __CMSIS_GENERIC /* enable NVIC and Systick functions */ -#include "string.h" -#include "math.h" -#ifdef __cplusplus -extern "C" -{ -#endif - - - /** - * @brief Macros required for reciprocal calculation in Normalized LMS - */ - -#define DELTA_Q31 (0x100) -#define DELTA_Q15 0x5 -#define INDEX_MASK 0x0000003F -#ifndef PI - #define PI 3.14159265358979f -#endif - - /** - * @brief Macros required for SINE and COSINE Fast math approximations - */ - -#define FAST_MATH_TABLE_SIZE 512 -#define FAST_MATH_Q31_SHIFT (32 - 10) -#define FAST_MATH_Q15_SHIFT (16 - 10) -#define CONTROLLER_Q31_SHIFT (32 - 9) -#define TABLE_SPACING_Q31 0x400000 -#define TABLE_SPACING_Q15 0x80 - - /** - * @brief Macros required for SINE and COSINE Controller functions - */ - /* 1.31(q31) Fixed value of 2/360 */ - /* -1 to +1 is divided into 360 values so total spacing is (2/360) */ -#define INPUT_SPACING 0xB60B61 - - /** - * @brief Macro for Unaligned Support - */ -#ifndef UNALIGNED_SUPPORT_DISABLE - #define ALIGN4 -#else - #if defined (__GNUC__) - #define ALIGN4 __attribute__((aligned(4))) - #else - #define ALIGN4 __align(4) - #endif -#endif /* #ifndef UNALIGNED_SUPPORT_DISABLE */ - - /** - * @brief Error status returned by some functions in the library. - */ - - typedef enum - { - ARM_MATH_SUCCESS = 0, /**< No error */ - ARM_MATH_ARGUMENT_ERROR = -1, /**< One or more arguments are incorrect */ - ARM_MATH_LENGTH_ERROR = -2, /**< Length of data buffer is incorrect */ - ARM_MATH_SIZE_MISMATCH = -3, /**< Size of matrices is not compatible with the operation. */ - ARM_MATH_NANINF = -4, /**< Not-a-number (NaN) or infinity is generated */ - ARM_MATH_SINGULAR = -5, /**< Generated by matrix inversion if the input matrix is singular and cannot be inverted. */ - ARM_MATH_TEST_FAILURE = -6 /**< Test Failed */ - } arm_status; - - /** - * @brief 8-bit fractional data type in 1.7 format. - */ - typedef int8_t q7_t; - - /** - * @brief 16-bit fractional data type in 1.15 format. - */ - typedef int16_t q15_t; - - /** - * @brief 32-bit fractional data type in 1.31 format. - */ - typedef int32_t q31_t; - - /** - * @brief 64-bit fractional data type in 1.63 format. - */ - typedef int64_t q63_t; - - /** - * @brief 32-bit floating-point type definition. - */ - typedef float float32_t; - - /** - * @brief 64-bit floating-point type definition. - */ - typedef double float64_t; - - /** - * @brief definition to read/write two 16 bit values. - */ -#if defined ( __CC_ARM ) - #define __SIMD32_TYPE int32_t __packed - #define CMSIS_UNUSED __attribute__((unused)) - #define CMSIS_INLINE __attribute__((always_inline)) - -#elif defined ( __ARMCC_VERSION ) && ( __ARMCC_VERSION >= 6010050 ) - #define __SIMD32_TYPE int32_t - #define CMSIS_UNUSED __attribute__((unused)) - #define CMSIS_INLINE __attribute__((always_inline)) - -#elif defined ( __GNUC__ ) - #define __SIMD32_TYPE int32_t - #define CMSIS_UNUSED __attribute__((unused)) - #define CMSIS_INLINE __attribute__((always_inline)) - -#elif defined ( __ICCARM__ ) - #define __SIMD32_TYPE int32_t __packed - #define CMSIS_UNUSED - #define CMSIS_INLINE - -#elif defined ( __TI_ARM__ ) - #define __SIMD32_TYPE int32_t - #define CMSIS_UNUSED __attribute__((unused)) - #define CMSIS_INLINE - -#elif defined ( __CSMC__ ) - #define __SIMD32_TYPE int32_t - #define CMSIS_UNUSED - #define CMSIS_INLINE - -#elif defined ( __TASKING__ ) - #define __SIMD32_TYPE __unaligned int32_t - #define CMSIS_UNUSED - #define CMSIS_INLINE - -#else - #error Unknown compiler -#endif - -#define __SIMD32(addr) (*(__SIMD32_TYPE **) & (addr)) -#define __SIMD32_CONST(addr) ((__SIMD32_TYPE *)(addr)) -#define _SIMD32_OFFSET(addr) (*(__SIMD32_TYPE *) (addr)) -#define __SIMD64(addr) (*(int64_t **) & (addr)) - -#if !defined (ARM_MATH_DSP) - /** - * @brief definition to pack two 16 bit values. - */ -#define __PKHBT(ARG1, ARG2, ARG3) ( (((int32_t)(ARG1) << 0) & (int32_t)0x0000FFFF) | \ - (((int32_t)(ARG2) << ARG3) & (int32_t)0xFFFF0000) ) -#define __PKHTB(ARG1, ARG2, ARG3) ( (((int32_t)(ARG1) << 0) & (int32_t)0xFFFF0000) | \ - (((int32_t)(ARG2) >> ARG3) & (int32_t)0x0000FFFF) ) - -#endif /* !defined (ARM_MATH_DSP) */ - - /** - * @brief definition to pack four 8 bit values. - */ -#ifndef ARM_MATH_BIG_ENDIAN - -#define __PACKq7(v0,v1,v2,v3) ( (((int32_t)(v0) << 0) & (int32_t)0x000000FF) | \ - (((int32_t)(v1) << 8) & (int32_t)0x0000FF00) | \ - (((int32_t)(v2) << 16) & (int32_t)0x00FF0000) | \ - (((int32_t)(v3) << 24) & (int32_t)0xFF000000) ) -#else - -#define __PACKq7(v0,v1,v2,v3) ( (((int32_t)(v3) << 0) & (int32_t)0x000000FF) | \ - (((int32_t)(v2) << 8) & (int32_t)0x0000FF00) | \ - (((int32_t)(v1) << 16) & (int32_t)0x00FF0000) | \ - (((int32_t)(v0) << 24) & (int32_t)0xFF000000) ) - -#endif - - - /** - * @brief Clips Q63 to Q31 values. - */ - CMSIS_INLINE __STATIC_INLINE q31_t clip_q63_to_q31( - q63_t x) - { - return ((q31_t) (x >> 32) != ((q31_t) x >> 31)) ? - ((0x7FFFFFFF ^ ((q31_t) (x >> 63)))) : (q31_t) x; - } - - /** - * @brief Clips Q63 to Q15 values. - */ - CMSIS_INLINE __STATIC_INLINE q15_t clip_q63_to_q15( - q63_t x) - { - return ((q31_t) (x >> 32) != ((q31_t) x >> 31)) ? - ((0x7FFF ^ ((q15_t) (x >> 63)))) : (q15_t) (x >> 15); - } - - /** - * @brief Clips Q31 to Q7 values. - */ - CMSIS_INLINE __STATIC_INLINE q7_t clip_q31_to_q7( - q31_t x) - { - return ((q31_t) (x >> 24) != ((q31_t) x >> 23)) ? - ((0x7F ^ ((q7_t) (x >> 31)))) : (q7_t) x; - } - - /** - * @brief Clips Q31 to Q15 values. - */ - CMSIS_INLINE __STATIC_INLINE q15_t clip_q31_to_q15( - q31_t x) - { - return ((q31_t) (x >> 16) != ((q31_t) x >> 15)) ? - ((0x7FFF ^ ((q15_t) (x >> 31)))) : (q15_t) x; - } - - /** - * @brief Multiplies 32 X 64 and returns 32 bit result in 2.30 format. - */ - - CMSIS_INLINE __STATIC_INLINE q63_t mult32x64( - q63_t x, - q31_t y) - { - return ((((q63_t) (x & 0x00000000FFFFFFFF) * y) >> 32) + - (((q63_t) (x >> 32) * y))); - } - - /** - * @brief Function to Calculates 1/in (reciprocal) value of Q31 Data type. - */ - - CMSIS_INLINE __STATIC_INLINE uint32_t arm_recip_q31( - q31_t in, - q31_t * dst, - q31_t * pRecipTable) - { - q31_t out; - uint32_t tempVal; - uint32_t index, i; - uint32_t signBits; - - if (in > 0) - { - signBits = ((uint32_t) (__CLZ( in) - 1)); - } - else - { - signBits = ((uint32_t) (__CLZ(-in) - 1)); - } - - /* Convert input sample to 1.31 format */ - in = (in << signBits); - - /* calculation of index for initial approximated Val */ - index = (uint32_t)(in >> 24); - index = (index & INDEX_MASK); - - /* 1.31 with exp 1 */ - out = pRecipTable[index]; - - /* calculation of reciprocal value */ - /* running approximation for two iterations */ - for (i = 0U; i < 2U; i++) - { - tempVal = (uint32_t) (((q63_t) in * out) >> 31); - tempVal = 0x7FFFFFFFu - tempVal; - /* 1.31 with exp 1 */ - /* out = (q31_t) (((q63_t) out * tempVal) >> 30); */ - out = clip_q63_to_q31(((q63_t) out * tempVal) >> 30); - } - - /* write output */ - *dst = out; - - /* return num of signbits of out = 1/in value */ - return (signBits + 1U); - } - - - /** - * @brief Function to Calculates 1/in (reciprocal) value of Q15 Data type. - */ - CMSIS_INLINE __STATIC_INLINE uint32_t arm_recip_q15( - q15_t in, - q15_t * dst, - q15_t * pRecipTable) - { - q15_t out = 0; - uint32_t tempVal = 0; - uint32_t index = 0, i = 0; - uint32_t signBits = 0; - - if (in > 0) - { - signBits = ((uint32_t)(__CLZ( in) - 17)); - } - else - { - signBits = ((uint32_t)(__CLZ(-in) - 17)); - } - - /* Convert input sample to 1.15 format */ - in = (in << signBits); - - /* calculation of index for initial approximated Val */ - index = (uint32_t)(in >> 8); - index = (index & INDEX_MASK); - - /* 1.15 with exp 1 */ - out = pRecipTable[index]; - - /* calculation of reciprocal value */ - /* running approximation for two iterations */ - for (i = 0U; i < 2U; i++) - { - tempVal = (uint32_t) (((q31_t) in * out) >> 15); - tempVal = 0x7FFFu - tempVal; - /* 1.15 with exp 1 */ - out = (q15_t) (((q31_t) out * tempVal) >> 14); - /* out = clip_q31_to_q15(((q31_t) out * tempVal) >> 14); */ - } - - /* write output */ - *dst = out; - - /* return num of signbits of out = 1/in value */ - return (signBits + 1); - } - - -/* - * @brief C custom defined intrinsic function for M3 and M0 processors - */ -#if !defined (ARM_MATH_DSP) - - /* - * @brief C custom defined QADD8 for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __QADD8( - uint32_t x, - uint32_t y) - { - q31_t r, s, t, u; - - r = __SSAT(((((q31_t)x << 24) >> 24) + (((q31_t)y << 24) >> 24)), 8) & (int32_t)0x000000FF; - s = __SSAT(((((q31_t)x << 16) >> 24) + (((q31_t)y << 16) >> 24)), 8) & (int32_t)0x000000FF; - t = __SSAT(((((q31_t)x << 8) >> 24) + (((q31_t)y << 8) >> 24)), 8) & (int32_t)0x000000FF; - u = __SSAT(((((q31_t)x ) >> 24) + (((q31_t)y ) >> 24)), 8) & (int32_t)0x000000FF; - - return ((uint32_t)((u << 24) | (t << 16) | (s << 8) | (r ))); - } - - - /* - * @brief C custom defined QSUB8 for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __QSUB8( - uint32_t x, - uint32_t y) - { - q31_t r, s, t, u; - - r = __SSAT(((((q31_t)x << 24) >> 24) - (((q31_t)y << 24) >> 24)), 8) & (int32_t)0x000000FF; - s = __SSAT(((((q31_t)x << 16) >> 24) - (((q31_t)y << 16) >> 24)), 8) & (int32_t)0x000000FF; - t = __SSAT(((((q31_t)x << 8) >> 24) - (((q31_t)y << 8) >> 24)), 8) & (int32_t)0x000000FF; - u = __SSAT(((((q31_t)x ) >> 24) - (((q31_t)y ) >> 24)), 8) & (int32_t)0x000000FF; - - return ((uint32_t)((u << 24) | (t << 16) | (s << 8) | (r ))); - } - - - /* - * @brief C custom defined QADD16 for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __QADD16( - uint32_t x, - uint32_t y) - { -/* q31_t r, s; without initialisation 'arm_offset_q15 test' fails but 'intrinsic' tests pass! for armCC */ - q31_t r = 0, s = 0; - - r = __SSAT(((((q31_t)x << 16) >> 16) + (((q31_t)y << 16) >> 16)), 16) & (int32_t)0x0000FFFF; - s = __SSAT(((((q31_t)x ) >> 16) + (((q31_t)y ) >> 16)), 16) & (int32_t)0x0000FFFF; - - return ((uint32_t)((s << 16) | (r ))); - } - - - /* - * @brief C custom defined SHADD16 for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __SHADD16( - uint32_t x, - uint32_t y) - { - q31_t r, s; - - r = (((((q31_t)x << 16) >> 16) + (((q31_t)y << 16) >> 16)) >> 1) & (int32_t)0x0000FFFF; - s = (((((q31_t)x ) >> 16) + (((q31_t)y ) >> 16)) >> 1) & (int32_t)0x0000FFFF; - - return ((uint32_t)((s << 16) | (r ))); - } - - - /* - * @brief C custom defined QSUB16 for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __QSUB16( - uint32_t x, - uint32_t y) - { - q31_t r, s; - - r = __SSAT(((((q31_t)x << 16) >> 16) - (((q31_t)y << 16) >> 16)), 16) & (int32_t)0x0000FFFF; - s = __SSAT(((((q31_t)x ) >> 16) - (((q31_t)y ) >> 16)), 16) & (int32_t)0x0000FFFF; - - return ((uint32_t)((s << 16) | (r ))); - } - - - /* - * @brief C custom defined SHSUB16 for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __SHSUB16( - uint32_t x, - uint32_t y) - { - q31_t r, s; - - r = (((((q31_t)x << 16) >> 16) - (((q31_t)y << 16) >> 16)) >> 1) & (int32_t)0x0000FFFF; - s = (((((q31_t)x ) >> 16) - (((q31_t)y ) >> 16)) >> 1) & (int32_t)0x0000FFFF; - - return ((uint32_t)((s << 16) | (r ))); - } - - - /* - * @brief C custom defined QASX for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __QASX( - uint32_t x, - uint32_t y) - { - q31_t r, s; - - r = __SSAT(((((q31_t)x << 16) >> 16) - (((q31_t)y ) >> 16)), 16) & (int32_t)0x0000FFFF; - s = __SSAT(((((q31_t)x ) >> 16) + (((q31_t)y << 16) >> 16)), 16) & (int32_t)0x0000FFFF; - - return ((uint32_t)((s << 16) | (r ))); - } - - - /* - * @brief C custom defined SHASX for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __SHASX( - uint32_t x, - uint32_t y) - { - q31_t r, s; - - r = (((((q31_t)x << 16) >> 16) - (((q31_t)y ) >> 16)) >> 1) & (int32_t)0x0000FFFF; - s = (((((q31_t)x ) >> 16) + (((q31_t)y << 16) >> 16)) >> 1) & (int32_t)0x0000FFFF; - - return ((uint32_t)((s << 16) | (r ))); - } - - - /* - * @brief C custom defined QSAX for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __QSAX( - uint32_t x, - uint32_t y) - { - q31_t r, s; - - r = __SSAT(((((q31_t)x << 16) >> 16) + (((q31_t)y ) >> 16)), 16) & (int32_t)0x0000FFFF; - s = __SSAT(((((q31_t)x ) >> 16) - (((q31_t)y << 16) >> 16)), 16) & (int32_t)0x0000FFFF; - - return ((uint32_t)((s << 16) | (r ))); - } - - - /* - * @brief C custom defined SHSAX for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __SHSAX( - uint32_t x, - uint32_t y) - { - q31_t r, s; - - r = (((((q31_t)x << 16) >> 16) + (((q31_t)y ) >> 16)) >> 1) & (int32_t)0x0000FFFF; - s = (((((q31_t)x ) >> 16) - (((q31_t)y << 16) >> 16)) >> 1) & (int32_t)0x0000FFFF; - - return ((uint32_t)((s << 16) | (r ))); - } - - - /* - * @brief C custom defined SMUSDX for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __SMUSDX( - uint32_t x, - uint32_t y) - { - return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y ) >> 16)) - - ((((q31_t)x ) >> 16) * (((q31_t)y << 16) >> 16)) )); - } - - /* - * @brief C custom defined SMUADX for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __SMUADX( - uint32_t x, - uint32_t y) - { - return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y ) >> 16)) + - ((((q31_t)x ) >> 16) * (((q31_t)y << 16) >> 16)) )); - } - - - /* - * @brief C custom defined QADD for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE int32_t __QADD( - int32_t x, - int32_t y) - { - return ((int32_t)(clip_q63_to_q31((q63_t)x + (q31_t)y))); - } - - - /* - * @brief C custom defined QSUB for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE int32_t __QSUB( - int32_t x, - int32_t y) - { - return ((int32_t)(clip_q63_to_q31((q63_t)x - (q31_t)y))); - } - - - /* - * @brief C custom defined SMLAD for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __SMLAD( - uint32_t x, - uint32_t y, - uint32_t sum) - { - return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y << 16) >> 16)) + - ((((q31_t)x ) >> 16) * (((q31_t)y ) >> 16)) + - ( ((q31_t)sum ) ) )); - } - - - /* - * @brief C custom defined SMLADX for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __SMLADX( - uint32_t x, - uint32_t y, - uint32_t sum) - { - return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y ) >> 16)) + - ((((q31_t)x ) >> 16) * (((q31_t)y << 16) >> 16)) + - ( ((q31_t)sum ) ) )); - } - - - /* - * @brief C custom defined SMLSDX for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __SMLSDX( - uint32_t x, - uint32_t y, - uint32_t sum) - { - return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y ) >> 16)) - - ((((q31_t)x ) >> 16) * (((q31_t)y << 16) >> 16)) + - ( ((q31_t)sum ) ) )); - } - - - /* - * @brief C custom defined SMLALD for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint64_t __SMLALD( - uint32_t x, - uint32_t y, - uint64_t sum) - { -/* return (sum + ((q15_t) (x >> 16) * (q15_t) (y >> 16)) + ((q15_t) x * (q15_t) y)); */ - return ((uint64_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y << 16) >> 16)) + - ((((q31_t)x ) >> 16) * (((q31_t)y ) >> 16)) + - ( ((q63_t)sum ) ) )); - } - - - /* - * @brief C custom defined SMLALDX for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint64_t __SMLALDX( - uint32_t x, - uint32_t y, - uint64_t sum) - { -/* return (sum + ((q15_t) (x >> 16) * (q15_t) y)) + ((q15_t) x * (q15_t) (y >> 16)); */ - return ((uint64_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y ) >> 16)) + - ((((q31_t)x ) >> 16) * (((q31_t)y << 16) >> 16)) + - ( ((q63_t)sum ) ) )); - } - - - /* - * @brief C custom defined SMUAD for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __SMUAD( - uint32_t x, - uint32_t y) - { - return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y << 16) >> 16)) + - ((((q31_t)x ) >> 16) * (((q31_t)y ) >> 16)) )); - } - - - /* - * @brief C custom defined SMUSD for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __SMUSD( - uint32_t x, - uint32_t y) - { - return ((uint32_t)(((((q31_t)x << 16) >> 16) * (((q31_t)y << 16) >> 16)) - - ((((q31_t)x ) >> 16) * (((q31_t)y ) >> 16)) )); - } - - - /* - * @brief C custom defined SXTB16 for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE uint32_t __SXTB16( - uint32_t x) - { - return ((uint32_t)(((((q31_t)x << 24) >> 24) & (q31_t)0x0000FFFF) | - ((((q31_t)x << 8) >> 8) & (q31_t)0xFFFF0000) )); - } - - /* - * @brief C custom defined SMMLA for M3 and M0 processors - */ - CMSIS_INLINE __STATIC_INLINE int32_t __SMMLA( - int32_t x, - int32_t y, - int32_t sum) - { - return (sum + (int32_t) (((int64_t) x * y) >> 32)); - } - -#endif /* !defined (ARM_MATH_DSP) */ - - - /** - * @brief Instance structure for the Q7 FIR filter. - */ - typedef struct - { - uint16_t numTaps; /**< number of filter coefficients in the filter. */ - q7_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ - q7_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ - } arm_fir_instance_q7; - - /** - * @brief Instance structure for the Q15 FIR filter. - */ - typedef struct - { - uint16_t numTaps; /**< number of filter coefficients in the filter. */ - q15_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ - q15_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ - } arm_fir_instance_q15; - - /** - * @brief Instance structure for the Q31 FIR filter. - */ - typedef struct - { - uint16_t numTaps; /**< number of filter coefficients in the filter. */ - q31_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ - q31_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ - } arm_fir_instance_q31; - - /** - * @brief Instance structure for the floating-point FIR filter. - */ - typedef struct - { - uint16_t numTaps; /**< number of filter coefficients in the filter. */ - float32_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ - float32_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ - } arm_fir_instance_f32; - - - /** - * @brief Processing function for the Q7 FIR filter. - * @param[in] S points to an instance of the Q7 FIR filter structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_fir_q7( - const arm_fir_instance_q7 * S, - q7_t * pSrc, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q7 FIR filter. - * @param[in,out] S points to an instance of the Q7 FIR structure. - * @param[in] numTaps Number of filter coefficients in the filter. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] blockSize number of samples that are processed. - */ - void arm_fir_init_q7( - arm_fir_instance_q7 * S, - uint16_t numTaps, - q7_t * pCoeffs, - q7_t * pState, - uint32_t blockSize); - - - /** - * @brief Processing function for the Q15 FIR filter. - * @param[in] S points to an instance of the Q15 FIR structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_fir_q15( - const arm_fir_instance_q15 * S, - q15_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Processing function for the fast Q15 FIR filter for Cortex-M3 and Cortex-M4. - * @param[in] S points to an instance of the Q15 FIR filter structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_fir_fast_q15( - const arm_fir_instance_q15 * S, - q15_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q15 FIR filter. - * @param[in,out] S points to an instance of the Q15 FIR filter structure. - * @param[in] numTaps Number of filter coefficients in the filter. Must be even and greater than or equal to 4. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] blockSize number of samples that are processed at a time. - * @return The function returns ARM_MATH_SUCCESS if initialization was successful or ARM_MATH_ARGUMENT_ERROR if - * numTaps is not a supported value. - */ - arm_status arm_fir_init_q15( - arm_fir_instance_q15 * S, - uint16_t numTaps, - q15_t * pCoeffs, - q15_t * pState, - uint32_t blockSize); - - - /** - * @brief Processing function for the Q31 FIR filter. - * @param[in] S points to an instance of the Q31 FIR filter structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_fir_q31( - const arm_fir_instance_q31 * S, - q31_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Processing function for the fast Q31 FIR filter for Cortex-M3 and Cortex-M4. - * @param[in] S points to an instance of the Q31 FIR structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_fir_fast_q31( - const arm_fir_instance_q31 * S, - q31_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q31 FIR filter. - * @param[in,out] S points to an instance of the Q31 FIR structure. - * @param[in] numTaps Number of filter coefficients in the filter. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] blockSize number of samples that are processed at a time. - */ - void arm_fir_init_q31( - arm_fir_instance_q31 * S, - uint16_t numTaps, - q31_t * pCoeffs, - q31_t * pState, - uint32_t blockSize); - - - /** - * @brief Processing function for the floating-point FIR filter. - * @param[in] S points to an instance of the floating-point FIR structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_fir_f32( - const arm_fir_instance_f32 * S, - float32_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the floating-point FIR filter. - * @param[in,out] S points to an instance of the floating-point FIR filter structure. - * @param[in] numTaps Number of filter coefficients in the filter. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] blockSize number of samples that are processed at a time. - */ - void arm_fir_init_f32( - arm_fir_instance_f32 * S, - uint16_t numTaps, - float32_t * pCoeffs, - float32_t * pState, - uint32_t blockSize); - - - /** - * @brief Instance structure for the Q15 Biquad cascade filter. - */ - typedef struct - { - int8_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ - q15_t *pState; /**< Points to the array of state coefficients. The array is of length 4*numStages. */ - q15_t *pCoeffs; /**< Points to the array of coefficients. The array is of length 5*numStages. */ - int8_t postShift; /**< Additional shift, in bits, applied to each output sample. */ - } arm_biquad_casd_df1_inst_q15; - - /** - * @brief Instance structure for the Q31 Biquad cascade filter. - */ - typedef struct - { - uint32_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ - q31_t *pState; /**< Points to the array of state coefficients. The array is of length 4*numStages. */ - q31_t *pCoeffs; /**< Points to the array of coefficients. The array is of length 5*numStages. */ - uint8_t postShift; /**< Additional shift, in bits, applied to each output sample. */ - } arm_biquad_casd_df1_inst_q31; - - /** - * @brief Instance structure for the floating-point Biquad cascade filter. - */ - typedef struct - { - uint32_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ - float32_t *pState; /**< Points to the array of state coefficients. The array is of length 4*numStages. */ - float32_t *pCoeffs; /**< Points to the array of coefficients. The array is of length 5*numStages. */ - } arm_biquad_casd_df1_inst_f32; - - - /** - * @brief Processing function for the Q15 Biquad cascade filter. - * @param[in] S points to an instance of the Q15 Biquad cascade structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_biquad_cascade_df1_q15( - const arm_biquad_casd_df1_inst_q15 * S, - q15_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q15 Biquad cascade filter. - * @param[in,out] S points to an instance of the Q15 Biquad cascade structure. - * @param[in] numStages number of 2nd order stages in the filter. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] postShift Shift to be applied to the output. Varies according to the coefficients format - */ - void arm_biquad_cascade_df1_init_q15( - arm_biquad_casd_df1_inst_q15 * S, - uint8_t numStages, - q15_t * pCoeffs, - q15_t * pState, - int8_t postShift); - - - /** - * @brief Fast but less precise processing function for the Q15 Biquad cascade filter for Cortex-M3 and Cortex-M4. - * @param[in] S points to an instance of the Q15 Biquad cascade structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_biquad_cascade_df1_fast_q15( - const arm_biquad_casd_df1_inst_q15 * S, - q15_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Processing function for the Q31 Biquad cascade filter - * @param[in] S points to an instance of the Q31 Biquad cascade structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_biquad_cascade_df1_q31( - const arm_biquad_casd_df1_inst_q31 * S, - q31_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Fast but less precise processing function for the Q31 Biquad cascade filter for Cortex-M3 and Cortex-M4. - * @param[in] S points to an instance of the Q31 Biquad cascade structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_biquad_cascade_df1_fast_q31( - const arm_biquad_casd_df1_inst_q31 * S, - q31_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q31 Biquad cascade filter. - * @param[in,out] S points to an instance of the Q31 Biquad cascade structure. - * @param[in] numStages number of 2nd order stages in the filter. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] postShift Shift to be applied to the output. Varies according to the coefficients format - */ - void arm_biquad_cascade_df1_init_q31( - arm_biquad_casd_df1_inst_q31 * S, - uint8_t numStages, - q31_t * pCoeffs, - q31_t * pState, - int8_t postShift); - - - /** - * @brief Processing function for the floating-point Biquad cascade filter. - * @param[in] S points to an instance of the floating-point Biquad cascade structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_biquad_cascade_df1_f32( - const arm_biquad_casd_df1_inst_f32 * S, - float32_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the floating-point Biquad cascade filter. - * @param[in,out] S points to an instance of the floating-point Biquad cascade structure. - * @param[in] numStages number of 2nd order stages in the filter. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - */ - void arm_biquad_cascade_df1_init_f32( - arm_biquad_casd_df1_inst_f32 * S, - uint8_t numStages, - float32_t * pCoeffs, - float32_t * pState); - - - /** - * @brief Instance structure for the floating-point matrix structure. - */ - typedef struct - { - uint16_t numRows; /**< number of rows of the matrix. */ - uint16_t numCols; /**< number of columns of the matrix. */ - float32_t *pData; /**< points to the data of the matrix. */ - } arm_matrix_instance_f32; - - - /** - * @brief Instance structure for the floating-point matrix structure. - */ - typedef struct - { - uint16_t numRows; /**< number of rows of the matrix. */ - uint16_t numCols; /**< number of columns of the matrix. */ - float64_t *pData; /**< points to the data of the matrix. */ - } arm_matrix_instance_f64; - - /** - * @brief Instance structure for the Q15 matrix structure. - */ - typedef struct - { - uint16_t numRows; /**< number of rows of the matrix. */ - uint16_t numCols; /**< number of columns of the matrix. */ - q15_t *pData; /**< points to the data of the matrix. */ - } arm_matrix_instance_q15; - - /** - * @brief Instance structure for the Q31 matrix structure. - */ - typedef struct - { - uint16_t numRows; /**< number of rows of the matrix. */ - uint16_t numCols; /**< number of columns of the matrix. */ - q31_t *pData; /**< points to the data of the matrix. */ - } arm_matrix_instance_q31; - - - /** - * @brief Floating-point matrix addition. - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_add_f32( - const arm_matrix_instance_f32 * pSrcA, - const arm_matrix_instance_f32 * pSrcB, - arm_matrix_instance_f32 * pDst); - - - /** - * @brief Q15 matrix addition. - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_add_q15( - const arm_matrix_instance_q15 * pSrcA, - const arm_matrix_instance_q15 * pSrcB, - arm_matrix_instance_q15 * pDst); - - - /** - * @brief Q31 matrix addition. - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_add_q31( - const arm_matrix_instance_q31 * pSrcA, - const arm_matrix_instance_q31 * pSrcB, - arm_matrix_instance_q31 * pDst); - - - /** - * @brief Floating-point, complex, matrix multiplication. - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_cmplx_mult_f32( - const arm_matrix_instance_f32 * pSrcA, - const arm_matrix_instance_f32 * pSrcB, - arm_matrix_instance_f32 * pDst); - - - /** - * @brief Q15, complex, matrix multiplication. - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_cmplx_mult_q15( - const arm_matrix_instance_q15 * pSrcA, - const arm_matrix_instance_q15 * pSrcB, - arm_matrix_instance_q15 * pDst, - q15_t * pScratch); - - - /** - * @brief Q31, complex, matrix multiplication. - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_cmplx_mult_q31( - const arm_matrix_instance_q31 * pSrcA, - const arm_matrix_instance_q31 * pSrcB, - arm_matrix_instance_q31 * pDst); - - - /** - * @brief Floating-point matrix transpose. - * @param[in] pSrc points to the input matrix - * @param[out] pDst points to the output matrix - * @return The function returns either ARM_MATH_SIZE_MISMATCH - * or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_trans_f32( - const arm_matrix_instance_f32 * pSrc, - arm_matrix_instance_f32 * pDst); - - - /** - * @brief Q15 matrix transpose. - * @param[in] pSrc points to the input matrix - * @param[out] pDst points to the output matrix - * @return The function returns either ARM_MATH_SIZE_MISMATCH - * or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_trans_q15( - const arm_matrix_instance_q15 * pSrc, - arm_matrix_instance_q15 * pDst); - - - /** - * @brief Q31 matrix transpose. - * @param[in] pSrc points to the input matrix - * @param[out] pDst points to the output matrix - * @return The function returns either ARM_MATH_SIZE_MISMATCH - * or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_trans_q31( - const arm_matrix_instance_q31 * pSrc, - arm_matrix_instance_q31 * pDst); - - - /** - * @brief Floating-point matrix multiplication - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_mult_f32( - const arm_matrix_instance_f32 * pSrcA, - const arm_matrix_instance_f32 * pSrcB, - arm_matrix_instance_f32 * pDst); - - - /** - * @brief Q15 matrix multiplication - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @param[in] pState points to the array for storing intermediate results - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_mult_q15( - const arm_matrix_instance_q15 * pSrcA, - const arm_matrix_instance_q15 * pSrcB, - arm_matrix_instance_q15 * pDst, - q15_t * pState); - - - /** - * @brief Q15 matrix multiplication (fast variant) for Cortex-M3 and Cortex-M4 - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @param[in] pState points to the array for storing intermediate results - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_mult_fast_q15( - const arm_matrix_instance_q15 * pSrcA, - const arm_matrix_instance_q15 * pSrcB, - arm_matrix_instance_q15 * pDst, - q15_t * pState); - - - /** - * @brief Q31 matrix multiplication - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_mult_q31( - const arm_matrix_instance_q31 * pSrcA, - const arm_matrix_instance_q31 * pSrcB, - arm_matrix_instance_q31 * pDst); - - - /** - * @brief Q31 matrix multiplication (fast variant) for Cortex-M3 and Cortex-M4 - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_mult_fast_q31( - const arm_matrix_instance_q31 * pSrcA, - const arm_matrix_instance_q31 * pSrcB, - arm_matrix_instance_q31 * pDst); - - - /** - * @brief Floating-point matrix subtraction - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_sub_f32( - const arm_matrix_instance_f32 * pSrcA, - const arm_matrix_instance_f32 * pSrcB, - arm_matrix_instance_f32 * pDst); - - - /** - * @brief Q15 matrix subtraction - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_sub_q15( - const arm_matrix_instance_q15 * pSrcA, - const arm_matrix_instance_q15 * pSrcB, - arm_matrix_instance_q15 * pDst); - - - /** - * @brief Q31 matrix subtraction - * @param[in] pSrcA points to the first input matrix structure - * @param[in] pSrcB points to the second input matrix structure - * @param[out] pDst points to output matrix structure - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_sub_q31( - const arm_matrix_instance_q31 * pSrcA, - const arm_matrix_instance_q31 * pSrcB, - arm_matrix_instance_q31 * pDst); - - - /** - * @brief Floating-point matrix scaling. - * @param[in] pSrc points to the input matrix - * @param[in] scale scale factor - * @param[out] pDst points to the output matrix - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_scale_f32( - const arm_matrix_instance_f32 * pSrc, - float32_t scale, - arm_matrix_instance_f32 * pDst); - - - /** - * @brief Q15 matrix scaling. - * @param[in] pSrc points to input matrix - * @param[in] scaleFract fractional portion of the scale factor - * @param[in] shift number of bits to shift the result by - * @param[out] pDst points to output matrix - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_scale_q15( - const arm_matrix_instance_q15 * pSrc, - q15_t scaleFract, - int32_t shift, - arm_matrix_instance_q15 * pDst); - - - /** - * @brief Q31 matrix scaling. - * @param[in] pSrc points to input matrix - * @param[in] scaleFract fractional portion of the scale factor - * @param[in] shift number of bits to shift the result by - * @param[out] pDst points to output matrix structure - * @return The function returns either - * ARM_MATH_SIZE_MISMATCH or ARM_MATH_SUCCESS based on the outcome of size checking. - */ - arm_status arm_mat_scale_q31( - const arm_matrix_instance_q31 * pSrc, - q31_t scaleFract, - int32_t shift, - arm_matrix_instance_q31 * pDst); - - - /** - * @brief Q31 matrix initialization. - * @param[in,out] S points to an instance of the floating-point matrix structure. - * @param[in] nRows number of rows in the matrix. - * @param[in] nColumns number of columns in the matrix. - * @param[in] pData points to the matrix data array. - */ - void arm_mat_init_q31( - arm_matrix_instance_q31 * S, - uint16_t nRows, - uint16_t nColumns, - q31_t * pData); - - - /** - * @brief Q15 matrix initialization. - * @param[in,out] S points to an instance of the floating-point matrix structure. - * @param[in] nRows number of rows in the matrix. - * @param[in] nColumns number of columns in the matrix. - * @param[in] pData points to the matrix data array. - */ - void arm_mat_init_q15( - arm_matrix_instance_q15 * S, - uint16_t nRows, - uint16_t nColumns, - q15_t * pData); - - - /** - * @brief Floating-point matrix initialization. - * @param[in,out] S points to an instance of the floating-point matrix structure. - * @param[in] nRows number of rows in the matrix. - * @param[in] nColumns number of columns in the matrix. - * @param[in] pData points to the matrix data array. - */ - void arm_mat_init_f32( - arm_matrix_instance_f32 * S, - uint16_t nRows, - uint16_t nColumns, - float32_t * pData); - - - - /** - * @brief Instance structure for the Q15 PID Control. - */ - typedef struct - { - q15_t A0; /**< The derived gain, A0 = Kp + Ki + Kd . */ -#if !defined (ARM_MATH_DSP) - q15_t A1; - q15_t A2; -#else - q31_t A1; /**< The derived gain A1 = -Kp - 2Kd | Kd.*/ -#endif - q15_t state[3]; /**< The state array of length 3. */ - q15_t Kp; /**< The proportional gain. */ - q15_t Ki; /**< The integral gain. */ - q15_t Kd; /**< The derivative gain. */ - } arm_pid_instance_q15; - - /** - * @brief Instance structure for the Q31 PID Control. - */ - typedef struct - { - q31_t A0; /**< The derived gain, A0 = Kp + Ki + Kd . */ - q31_t A1; /**< The derived gain, A1 = -Kp - 2Kd. */ - q31_t A2; /**< The derived gain, A2 = Kd . */ - q31_t state[3]; /**< The state array of length 3. */ - q31_t Kp; /**< The proportional gain. */ - q31_t Ki; /**< The integral gain. */ - q31_t Kd; /**< The derivative gain. */ - } arm_pid_instance_q31; - - /** - * @brief Instance structure for the floating-point PID Control. - */ - typedef struct - { - float32_t A0; /**< The derived gain, A0 = Kp + Ki + Kd . */ - float32_t A1; /**< The derived gain, A1 = -Kp - 2Kd. */ - float32_t A2; /**< The derived gain, A2 = Kd . */ - float32_t state[3]; /**< The state array of length 3. */ - float32_t Kp; /**< The proportional gain. */ - float32_t Ki; /**< The integral gain. */ - float32_t Kd; /**< The derivative gain. */ - } arm_pid_instance_f32; - - - - /** - * @brief Initialization function for the floating-point PID Control. - * @param[in,out] S points to an instance of the PID structure. - * @param[in] resetStateFlag flag to reset the state. 0 = no change in state 1 = reset the state. - */ - void arm_pid_init_f32( - arm_pid_instance_f32 * S, - int32_t resetStateFlag); - - - /** - * @brief Reset function for the floating-point PID Control. - * @param[in,out] S is an instance of the floating-point PID Control structure - */ - void arm_pid_reset_f32( - arm_pid_instance_f32 * S); - - - /** - * @brief Initialization function for the Q31 PID Control. - * @param[in,out] S points to an instance of the Q15 PID structure. - * @param[in] resetStateFlag flag to reset the state. 0 = no change in state 1 = reset the state. - */ - void arm_pid_init_q31( - arm_pid_instance_q31 * S, - int32_t resetStateFlag); - - - /** - * @brief Reset function for the Q31 PID Control. - * @param[in,out] S points to an instance of the Q31 PID Control structure - */ - - void arm_pid_reset_q31( - arm_pid_instance_q31 * S); - - - /** - * @brief Initialization function for the Q15 PID Control. - * @param[in,out] S points to an instance of the Q15 PID structure. - * @param[in] resetStateFlag flag to reset the state. 0 = no change in state 1 = reset the state. - */ - void arm_pid_init_q15( - arm_pid_instance_q15 * S, - int32_t resetStateFlag); - - - /** - * @brief Reset function for the Q15 PID Control. - * @param[in,out] S points to an instance of the q15 PID Control structure - */ - void arm_pid_reset_q15( - arm_pid_instance_q15 * S); - - - /** - * @brief Instance structure for the floating-point Linear Interpolate function. - */ - typedef struct - { - uint32_t nValues; /**< nValues */ - float32_t x1; /**< x1 */ - float32_t xSpacing; /**< xSpacing */ - float32_t *pYData; /**< pointer to the table of Y values */ - } arm_linear_interp_instance_f32; - - /** - * @brief Instance structure for the floating-point bilinear interpolation function. - */ - typedef struct - { - uint16_t numRows; /**< number of rows in the data table. */ - uint16_t numCols; /**< number of columns in the data table. */ - float32_t *pData; /**< points to the data table. */ - } arm_bilinear_interp_instance_f32; - - /** - * @brief Instance structure for the Q31 bilinear interpolation function. - */ - typedef struct - { - uint16_t numRows; /**< number of rows in the data table. */ - uint16_t numCols; /**< number of columns in the data table. */ - q31_t *pData; /**< points to the data table. */ - } arm_bilinear_interp_instance_q31; - - /** - * @brief Instance structure for the Q15 bilinear interpolation function. - */ - typedef struct - { - uint16_t numRows; /**< number of rows in the data table. */ - uint16_t numCols; /**< number of columns in the data table. */ - q15_t *pData; /**< points to the data table. */ - } arm_bilinear_interp_instance_q15; - - /** - * @brief Instance structure for the Q15 bilinear interpolation function. - */ - typedef struct - { - uint16_t numRows; /**< number of rows in the data table. */ - uint16_t numCols; /**< number of columns in the data table. */ - q7_t *pData; /**< points to the data table. */ - } arm_bilinear_interp_instance_q7; - - - /** - * @brief Q7 vector multiplication. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in each vector - */ - void arm_mult_q7( - q7_t * pSrcA, - q7_t * pSrcB, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @brief Q15 vector multiplication. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in each vector - */ - void arm_mult_q15( - q15_t * pSrcA, - q15_t * pSrcB, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Q31 vector multiplication. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in each vector - */ - void arm_mult_q31( - q31_t * pSrcA, - q31_t * pSrcB, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Floating-point vector multiplication. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in each vector - */ - void arm_mult_f32( - float32_t * pSrcA, - float32_t * pSrcB, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Instance structure for the Q15 CFFT/CIFFT function. - */ - typedef struct - { - uint16_t fftLen; /**< length of the FFT. */ - uint8_t ifftFlag; /**< flag that selects forward (ifftFlag=0) or inverse (ifftFlag=1) transform. */ - uint8_t bitReverseFlag; /**< flag that enables (bitReverseFlag=1) or disables (bitReverseFlag=0) bit reversal of output. */ - q15_t *pTwiddle; /**< points to the Sin twiddle factor table. */ - uint16_t *pBitRevTable; /**< points to the bit reversal table. */ - uint16_t twidCoefModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ - uint16_t bitRevFactor; /**< bit reversal modifier that supports different size FFTs with the same bit reversal table. */ - } arm_cfft_radix2_instance_q15; - -/* Deprecated */ - arm_status arm_cfft_radix2_init_q15( - arm_cfft_radix2_instance_q15 * S, - uint16_t fftLen, - uint8_t ifftFlag, - uint8_t bitReverseFlag); - -/* Deprecated */ - void arm_cfft_radix2_q15( - const arm_cfft_radix2_instance_q15 * S, - q15_t * pSrc); - - - /** - * @brief Instance structure for the Q15 CFFT/CIFFT function. - */ - typedef struct - { - uint16_t fftLen; /**< length of the FFT. */ - uint8_t ifftFlag; /**< flag that selects forward (ifftFlag=0) or inverse (ifftFlag=1) transform. */ - uint8_t bitReverseFlag; /**< flag that enables (bitReverseFlag=1) or disables (bitReverseFlag=0) bit reversal of output. */ - q15_t *pTwiddle; /**< points to the twiddle factor table. */ - uint16_t *pBitRevTable; /**< points to the bit reversal table. */ - uint16_t twidCoefModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ - uint16_t bitRevFactor; /**< bit reversal modifier that supports different size FFTs with the same bit reversal table. */ - } arm_cfft_radix4_instance_q15; - -/* Deprecated */ - arm_status arm_cfft_radix4_init_q15( - arm_cfft_radix4_instance_q15 * S, - uint16_t fftLen, - uint8_t ifftFlag, - uint8_t bitReverseFlag); - -/* Deprecated */ - void arm_cfft_radix4_q15( - const arm_cfft_radix4_instance_q15 * S, - q15_t * pSrc); - - /** - * @brief Instance structure for the Radix-2 Q31 CFFT/CIFFT function. - */ - typedef struct - { - uint16_t fftLen; /**< length of the FFT. */ - uint8_t ifftFlag; /**< flag that selects forward (ifftFlag=0) or inverse (ifftFlag=1) transform. */ - uint8_t bitReverseFlag; /**< flag that enables (bitReverseFlag=1) or disables (bitReverseFlag=0) bit reversal of output. */ - q31_t *pTwiddle; /**< points to the Twiddle factor table. */ - uint16_t *pBitRevTable; /**< points to the bit reversal table. */ - uint16_t twidCoefModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ - uint16_t bitRevFactor; /**< bit reversal modifier that supports different size FFTs with the same bit reversal table. */ - } arm_cfft_radix2_instance_q31; - -/* Deprecated */ - arm_status arm_cfft_radix2_init_q31( - arm_cfft_radix2_instance_q31 * S, - uint16_t fftLen, - uint8_t ifftFlag, - uint8_t bitReverseFlag); - -/* Deprecated */ - void arm_cfft_radix2_q31( - const arm_cfft_radix2_instance_q31 * S, - q31_t * pSrc); - - /** - * @brief Instance structure for the Q31 CFFT/CIFFT function. - */ - typedef struct - { - uint16_t fftLen; /**< length of the FFT. */ - uint8_t ifftFlag; /**< flag that selects forward (ifftFlag=0) or inverse (ifftFlag=1) transform. */ - uint8_t bitReverseFlag; /**< flag that enables (bitReverseFlag=1) or disables (bitReverseFlag=0) bit reversal of output. */ - q31_t *pTwiddle; /**< points to the twiddle factor table. */ - uint16_t *pBitRevTable; /**< points to the bit reversal table. */ - uint16_t twidCoefModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ - uint16_t bitRevFactor; /**< bit reversal modifier that supports different size FFTs with the same bit reversal table. */ - } arm_cfft_radix4_instance_q31; - -/* Deprecated */ - void arm_cfft_radix4_q31( - const arm_cfft_radix4_instance_q31 * S, - q31_t * pSrc); - -/* Deprecated */ - arm_status arm_cfft_radix4_init_q31( - arm_cfft_radix4_instance_q31 * S, - uint16_t fftLen, - uint8_t ifftFlag, - uint8_t bitReverseFlag); - - /** - * @brief Instance structure for the floating-point CFFT/CIFFT function. - */ - typedef struct - { - uint16_t fftLen; /**< length of the FFT. */ - uint8_t ifftFlag; /**< flag that selects forward (ifftFlag=0) or inverse (ifftFlag=1) transform. */ - uint8_t bitReverseFlag; /**< flag that enables (bitReverseFlag=1) or disables (bitReverseFlag=0) bit reversal of output. */ - float32_t *pTwiddle; /**< points to the Twiddle factor table. */ - uint16_t *pBitRevTable; /**< points to the bit reversal table. */ - uint16_t twidCoefModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ - uint16_t bitRevFactor; /**< bit reversal modifier that supports different size FFTs with the same bit reversal table. */ - float32_t onebyfftLen; /**< value of 1/fftLen. */ - } arm_cfft_radix2_instance_f32; - -/* Deprecated */ - arm_status arm_cfft_radix2_init_f32( - arm_cfft_radix2_instance_f32 * S, - uint16_t fftLen, - uint8_t ifftFlag, - uint8_t bitReverseFlag); - -/* Deprecated */ - void arm_cfft_radix2_f32( - const arm_cfft_radix2_instance_f32 * S, - float32_t * pSrc); - - /** - * @brief Instance structure for the floating-point CFFT/CIFFT function. - */ - typedef struct - { - uint16_t fftLen; /**< length of the FFT. */ - uint8_t ifftFlag; /**< flag that selects forward (ifftFlag=0) or inverse (ifftFlag=1) transform. */ - uint8_t bitReverseFlag; /**< flag that enables (bitReverseFlag=1) or disables (bitReverseFlag=0) bit reversal of output. */ - float32_t *pTwiddle; /**< points to the Twiddle factor table. */ - uint16_t *pBitRevTable; /**< points to the bit reversal table. */ - uint16_t twidCoefModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ - uint16_t bitRevFactor; /**< bit reversal modifier that supports different size FFTs with the same bit reversal table. */ - float32_t onebyfftLen; /**< value of 1/fftLen. */ - } arm_cfft_radix4_instance_f32; - -/* Deprecated */ - arm_status arm_cfft_radix4_init_f32( - arm_cfft_radix4_instance_f32 * S, - uint16_t fftLen, - uint8_t ifftFlag, - uint8_t bitReverseFlag); - -/* Deprecated */ - void arm_cfft_radix4_f32( - const arm_cfft_radix4_instance_f32 * S, - float32_t * pSrc); - - /** - * @brief Instance structure for the fixed-point CFFT/CIFFT function. - */ - typedef struct - { - uint16_t fftLen; /**< length of the FFT. */ - const q15_t *pTwiddle; /**< points to the Twiddle factor table. */ - const uint16_t *pBitRevTable; /**< points to the bit reversal table. */ - uint16_t bitRevLength; /**< bit reversal table length. */ - } arm_cfft_instance_q15; - -void arm_cfft_q15( - const arm_cfft_instance_q15 * S, - q15_t * p1, - uint8_t ifftFlag, - uint8_t bitReverseFlag); - - /** - * @brief Instance structure for the fixed-point CFFT/CIFFT function. - */ - typedef struct - { - uint16_t fftLen; /**< length of the FFT. */ - const q31_t *pTwiddle; /**< points to the Twiddle factor table. */ - const uint16_t *pBitRevTable; /**< points to the bit reversal table. */ - uint16_t bitRevLength; /**< bit reversal table length. */ - } arm_cfft_instance_q31; - -void arm_cfft_q31( - const arm_cfft_instance_q31 * S, - q31_t * p1, - uint8_t ifftFlag, - uint8_t bitReverseFlag); - - /** - * @brief Instance structure for the floating-point CFFT/CIFFT function. - */ - typedef struct - { - uint16_t fftLen; /**< length of the FFT. */ - const float32_t *pTwiddle; /**< points to the Twiddle factor table. */ - const uint16_t *pBitRevTable; /**< points to the bit reversal table. */ - uint16_t bitRevLength; /**< bit reversal table length. */ - } arm_cfft_instance_f32; - - void arm_cfft_f32( - const arm_cfft_instance_f32 * S, - float32_t * p1, - uint8_t ifftFlag, - uint8_t bitReverseFlag); - - /** - * @brief Instance structure for the Q15 RFFT/RIFFT function. - */ - typedef struct - { - uint32_t fftLenReal; /**< length of the real FFT. */ - uint8_t ifftFlagR; /**< flag that selects forward (ifftFlagR=0) or inverse (ifftFlagR=1) transform. */ - uint8_t bitReverseFlagR; /**< flag that enables (bitReverseFlagR=1) or disables (bitReverseFlagR=0) bit reversal of output. */ - uint32_t twidCoefRModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ - q15_t *pTwiddleAReal; /**< points to the real twiddle factor table. */ - q15_t *pTwiddleBReal; /**< points to the imag twiddle factor table. */ - const arm_cfft_instance_q15 *pCfft; /**< points to the complex FFT instance. */ - } arm_rfft_instance_q15; - - arm_status arm_rfft_init_q15( - arm_rfft_instance_q15 * S, - uint32_t fftLenReal, - uint32_t ifftFlagR, - uint32_t bitReverseFlag); - - void arm_rfft_q15( - const arm_rfft_instance_q15 * S, - q15_t * pSrc, - q15_t * pDst); - - /** - * @brief Instance structure for the Q31 RFFT/RIFFT function. - */ - typedef struct - { - uint32_t fftLenReal; /**< length of the real FFT. */ - uint8_t ifftFlagR; /**< flag that selects forward (ifftFlagR=0) or inverse (ifftFlagR=1) transform. */ - uint8_t bitReverseFlagR; /**< flag that enables (bitReverseFlagR=1) or disables (bitReverseFlagR=0) bit reversal of output. */ - uint32_t twidCoefRModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ - q31_t *pTwiddleAReal; /**< points to the real twiddle factor table. */ - q31_t *pTwiddleBReal; /**< points to the imag twiddle factor table. */ - const arm_cfft_instance_q31 *pCfft; /**< points to the complex FFT instance. */ - } arm_rfft_instance_q31; - - arm_status arm_rfft_init_q31( - arm_rfft_instance_q31 * S, - uint32_t fftLenReal, - uint32_t ifftFlagR, - uint32_t bitReverseFlag); - - void arm_rfft_q31( - const arm_rfft_instance_q31 * S, - q31_t * pSrc, - q31_t * pDst); - - /** - * @brief Instance structure for the floating-point RFFT/RIFFT function. - */ - typedef struct - { - uint32_t fftLenReal; /**< length of the real FFT. */ - uint16_t fftLenBy2; /**< length of the complex FFT. */ - uint8_t ifftFlagR; /**< flag that selects forward (ifftFlagR=0) or inverse (ifftFlagR=1) transform. */ - uint8_t bitReverseFlagR; /**< flag that enables (bitReverseFlagR=1) or disables (bitReverseFlagR=0) bit reversal of output. */ - uint32_t twidCoefRModifier; /**< twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. */ - float32_t *pTwiddleAReal; /**< points to the real twiddle factor table. */ - float32_t *pTwiddleBReal; /**< points to the imag twiddle factor table. */ - arm_cfft_radix4_instance_f32 *pCfft; /**< points to the complex FFT instance. */ - } arm_rfft_instance_f32; - - arm_status arm_rfft_init_f32( - arm_rfft_instance_f32 * S, - arm_cfft_radix4_instance_f32 * S_CFFT, - uint32_t fftLenReal, - uint32_t ifftFlagR, - uint32_t bitReverseFlag); - - void arm_rfft_f32( - const arm_rfft_instance_f32 * S, - float32_t * pSrc, - float32_t * pDst); - - /** - * @brief Instance structure for the floating-point RFFT/RIFFT function. - */ -typedef struct - { - arm_cfft_instance_f32 Sint; /**< Internal CFFT structure. */ - uint16_t fftLenRFFT; /**< length of the real sequence */ - float32_t * pTwiddleRFFT; /**< Twiddle factors real stage */ - } arm_rfft_fast_instance_f32 ; - -arm_status arm_rfft_fast_init_f32 ( - arm_rfft_fast_instance_f32 * S, - uint16_t fftLen); - -void arm_rfft_fast_f32( - arm_rfft_fast_instance_f32 * S, - float32_t * p, float32_t * pOut, - uint8_t ifftFlag); - - /** - * @brief Instance structure for the floating-point DCT4/IDCT4 function. - */ - typedef struct - { - uint16_t N; /**< length of the DCT4. */ - uint16_t Nby2; /**< half of the length of the DCT4. */ - float32_t normalize; /**< normalizing factor. */ - float32_t *pTwiddle; /**< points to the twiddle factor table. */ - float32_t *pCosFactor; /**< points to the cosFactor table. */ - arm_rfft_instance_f32 *pRfft; /**< points to the real FFT instance. */ - arm_cfft_radix4_instance_f32 *pCfft; /**< points to the complex FFT instance. */ - } arm_dct4_instance_f32; - - - /** - * @brief Initialization function for the floating-point DCT4/IDCT4. - * @param[in,out] S points to an instance of floating-point DCT4/IDCT4 structure. - * @param[in] S_RFFT points to an instance of floating-point RFFT/RIFFT structure. - * @param[in] S_CFFT points to an instance of floating-point CFFT/CIFFT structure. - * @param[in] N length of the DCT4. - * @param[in] Nby2 half of the length of the DCT4. - * @param[in] normalize normalizing factor. - * @return arm_status function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_ARGUMENT_ERROR if fftLenReal is not a supported transform length. - */ - arm_status arm_dct4_init_f32( - arm_dct4_instance_f32 * S, - arm_rfft_instance_f32 * S_RFFT, - arm_cfft_radix4_instance_f32 * S_CFFT, - uint16_t N, - uint16_t Nby2, - float32_t normalize); - - - /** - * @brief Processing function for the floating-point DCT4/IDCT4. - * @param[in] S points to an instance of the floating-point DCT4/IDCT4 structure. - * @param[in] pState points to state buffer. - * @param[in,out] pInlineBuffer points to the in-place input and output buffer. - */ - void arm_dct4_f32( - const arm_dct4_instance_f32 * S, - float32_t * pState, - float32_t * pInlineBuffer); - - - /** - * @brief Instance structure for the Q31 DCT4/IDCT4 function. - */ - typedef struct - { - uint16_t N; /**< length of the DCT4. */ - uint16_t Nby2; /**< half of the length of the DCT4. */ - q31_t normalize; /**< normalizing factor. */ - q31_t *pTwiddle; /**< points to the twiddle factor table. */ - q31_t *pCosFactor; /**< points to the cosFactor table. */ - arm_rfft_instance_q31 *pRfft; /**< points to the real FFT instance. */ - arm_cfft_radix4_instance_q31 *pCfft; /**< points to the complex FFT instance. */ - } arm_dct4_instance_q31; - - - /** - * @brief Initialization function for the Q31 DCT4/IDCT4. - * @param[in,out] S points to an instance of Q31 DCT4/IDCT4 structure. - * @param[in] S_RFFT points to an instance of Q31 RFFT/RIFFT structure - * @param[in] S_CFFT points to an instance of Q31 CFFT/CIFFT structure - * @param[in] N length of the DCT4. - * @param[in] Nby2 half of the length of the DCT4. - * @param[in] normalize normalizing factor. - * @return arm_status function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_ARGUMENT_ERROR if N is not a supported transform length. - */ - arm_status arm_dct4_init_q31( - arm_dct4_instance_q31 * S, - arm_rfft_instance_q31 * S_RFFT, - arm_cfft_radix4_instance_q31 * S_CFFT, - uint16_t N, - uint16_t Nby2, - q31_t normalize); - - - /** - * @brief Processing function for the Q31 DCT4/IDCT4. - * @param[in] S points to an instance of the Q31 DCT4 structure. - * @param[in] pState points to state buffer. - * @param[in,out] pInlineBuffer points to the in-place input and output buffer. - */ - void arm_dct4_q31( - const arm_dct4_instance_q31 * S, - q31_t * pState, - q31_t * pInlineBuffer); - - - /** - * @brief Instance structure for the Q15 DCT4/IDCT4 function. - */ - typedef struct - { - uint16_t N; /**< length of the DCT4. */ - uint16_t Nby2; /**< half of the length of the DCT4. */ - q15_t normalize; /**< normalizing factor. */ - q15_t *pTwiddle; /**< points to the twiddle factor table. */ - q15_t *pCosFactor; /**< points to the cosFactor table. */ - arm_rfft_instance_q15 *pRfft; /**< points to the real FFT instance. */ - arm_cfft_radix4_instance_q15 *pCfft; /**< points to the complex FFT instance. */ - } arm_dct4_instance_q15; - - - /** - * @brief Initialization function for the Q15 DCT4/IDCT4. - * @param[in,out] S points to an instance of Q15 DCT4/IDCT4 structure. - * @param[in] S_RFFT points to an instance of Q15 RFFT/RIFFT structure. - * @param[in] S_CFFT points to an instance of Q15 CFFT/CIFFT structure. - * @param[in] N length of the DCT4. - * @param[in] Nby2 half of the length of the DCT4. - * @param[in] normalize normalizing factor. - * @return arm_status function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_ARGUMENT_ERROR if N is not a supported transform length. - */ - arm_status arm_dct4_init_q15( - arm_dct4_instance_q15 * S, - arm_rfft_instance_q15 * S_RFFT, - arm_cfft_radix4_instance_q15 * S_CFFT, - uint16_t N, - uint16_t Nby2, - q15_t normalize); - - - /** - * @brief Processing function for the Q15 DCT4/IDCT4. - * @param[in] S points to an instance of the Q15 DCT4 structure. - * @param[in] pState points to state buffer. - * @param[in,out] pInlineBuffer points to the in-place input and output buffer. - */ - void arm_dct4_q15( - const arm_dct4_instance_q15 * S, - q15_t * pState, - q15_t * pInlineBuffer); - - - /** - * @brief Floating-point vector addition. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in each vector - */ - void arm_add_f32( - float32_t * pSrcA, - float32_t * pSrcB, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Q7 vector addition. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in each vector - */ - void arm_add_q7( - q7_t * pSrcA, - q7_t * pSrcB, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @brief Q15 vector addition. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in each vector - */ - void arm_add_q15( - q15_t * pSrcA, - q15_t * pSrcB, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Q31 vector addition. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in each vector - */ - void arm_add_q31( - q31_t * pSrcA, - q31_t * pSrcB, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Floating-point vector subtraction. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in each vector - */ - void arm_sub_f32( - float32_t * pSrcA, - float32_t * pSrcB, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Q7 vector subtraction. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in each vector - */ - void arm_sub_q7( - q7_t * pSrcA, - q7_t * pSrcB, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @brief Q15 vector subtraction. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in each vector - */ - void arm_sub_q15( - q15_t * pSrcA, - q15_t * pSrcB, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Q31 vector subtraction. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in each vector - */ - void arm_sub_q31( - q31_t * pSrcA, - q31_t * pSrcB, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Multiplies a floating-point vector by a scalar. - * @param[in] pSrc points to the input vector - * @param[in] scale scale factor to be applied - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_scale_f32( - float32_t * pSrc, - float32_t scale, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Multiplies a Q7 vector by a scalar. - * @param[in] pSrc points to the input vector - * @param[in] scaleFract fractional portion of the scale value - * @param[in] shift number of bits to shift the result by - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_scale_q7( - q7_t * pSrc, - q7_t scaleFract, - int8_t shift, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @brief Multiplies a Q15 vector by a scalar. - * @param[in] pSrc points to the input vector - * @param[in] scaleFract fractional portion of the scale value - * @param[in] shift number of bits to shift the result by - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_scale_q15( - q15_t * pSrc, - q15_t scaleFract, - int8_t shift, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Multiplies a Q31 vector by a scalar. - * @param[in] pSrc points to the input vector - * @param[in] scaleFract fractional portion of the scale value - * @param[in] shift number of bits to shift the result by - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_scale_q31( - q31_t * pSrc, - q31_t scaleFract, - int8_t shift, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Q7 vector absolute value. - * @param[in] pSrc points to the input buffer - * @param[out] pDst points to the output buffer - * @param[in] blockSize number of samples in each vector - */ - void arm_abs_q7( - q7_t * pSrc, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @brief Floating-point vector absolute value. - * @param[in] pSrc points to the input buffer - * @param[out] pDst points to the output buffer - * @param[in] blockSize number of samples in each vector - */ - void arm_abs_f32( - float32_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Q15 vector absolute value. - * @param[in] pSrc points to the input buffer - * @param[out] pDst points to the output buffer - * @param[in] blockSize number of samples in each vector - */ - void arm_abs_q15( - q15_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Q31 vector absolute value. - * @param[in] pSrc points to the input buffer - * @param[out] pDst points to the output buffer - * @param[in] blockSize number of samples in each vector - */ - void arm_abs_q31( - q31_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Dot product of floating-point vectors. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[in] blockSize number of samples in each vector - * @param[out] result output result returned here - */ - void arm_dot_prod_f32( - float32_t * pSrcA, - float32_t * pSrcB, - uint32_t blockSize, - float32_t * result); - - - /** - * @brief Dot product of Q7 vectors. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[in] blockSize number of samples in each vector - * @param[out] result output result returned here - */ - void arm_dot_prod_q7( - q7_t * pSrcA, - q7_t * pSrcB, - uint32_t blockSize, - q31_t * result); - - - /** - * @brief Dot product of Q15 vectors. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[in] blockSize number of samples in each vector - * @param[out] result output result returned here - */ - void arm_dot_prod_q15( - q15_t * pSrcA, - q15_t * pSrcB, - uint32_t blockSize, - q63_t * result); - - - /** - * @brief Dot product of Q31 vectors. - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[in] blockSize number of samples in each vector - * @param[out] result output result returned here - */ - void arm_dot_prod_q31( - q31_t * pSrcA, - q31_t * pSrcB, - uint32_t blockSize, - q63_t * result); - - - /** - * @brief Shifts the elements of a Q7 vector a specified number of bits. - * @param[in] pSrc points to the input vector - * @param[in] shiftBits number of bits to shift. A positive value shifts left; a negative value shifts right. - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_shift_q7( - q7_t * pSrc, - int8_t shiftBits, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @brief Shifts the elements of a Q15 vector a specified number of bits. - * @param[in] pSrc points to the input vector - * @param[in] shiftBits number of bits to shift. A positive value shifts left; a negative value shifts right. - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_shift_q15( - q15_t * pSrc, - int8_t shiftBits, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Shifts the elements of a Q31 vector a specified number of bits. - * @param[in] pSrc points to the input vector - * @param[in] shiftBits number of bits to shift. A positive value shifts left; a negative value shifts right. - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_shift_q31( - q31_t * pSrc, - int8_t shiftBits, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Adds a constant offset to a floating-point vector. - * @param[in] pSrc points to the input vector - * @param[in] offset is the offset to be added - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_offset_f32( - float32_t * pSrc, - float32_t offset, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Adds a constant offset to a Q7 vector. - * @param[in] pSrc points to the input vector - * @param[in] offset is the offset to be added - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_offset_q7( - q7_t * pSrc, - q7_t offset, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @brief Adds a constant offset to a Q15 vector. - * @param[in] pSrc points to the input vector - * @param[in] offset is the offset to be added - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_offset_q15( - q15_t * pSrc, - q15_t offset, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Adds a constant offset to a Q31 vector. - * @param[in] pSrc points to the input vector - * @param[in] offset is the offset to be added - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_offset_q31( - q31_t * pSrc, - q31_t offset, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Negates the elements of a floating-point vector. - * @param[in] pSrc points to the input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_negate_f32( - float32_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Negates the elements of a Q7 vector. - * @param[in] pSrc points to the input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_negate_q7( - q7_t * pSrc, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @brief Negates the elements of a Q15 vector. - * @param[in] pSrc points to the input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_negate_q15( - q15_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Negates the elements of a Q31 vector. - * @param[in] pSrc points to the input vector - * @param[out] pDst points to the output vector - * @param[in] blockSize number of samples in the vector - */ - void arm_negate_q31( - q31_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Copies the elements of a floating-point vector. - * @param[in] pSrc input pointer - * @param[out] pDst output pointer - * @param[in] blockSize number of samples to process - */ - void arm_copy_f32( - float32_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Copies the elements of a Q7 vector. - * @param[in] pSrc input pointer - * @param[out] pDst output pointer - * @param[in] blockSize number of samples to process - */ - void arm_copy_q7( - q7_t * pSrc, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @brief Copies the elements of a Q15 vector. - * @param[in] pSrc input pointer - * @param[out] pDst output pointer - * @param[in] blockSize number of samples to process - */ - void arm_copy_q15( - q15_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Copies the elements of a Q31 vector. - * @param[in] pSrc input pointer - * @param[out] pDst output pointer - * @param[in] blockSize number of samples to process - */ - void arm_copy_q31( - q31_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Fills a constant value into a floating-point vector. - * @param[in] value input value to be filled - * @param[out] pDst output pointer - * @param[in] blockSize number of samples to process - */ - void arm_fill_f32( - float32_t value, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Fills a constant value into a Q7 vector. - * @param[in] value input value to be filled - * @param[out] pDst output pointer - * @param[in] blockSize number of samples to process - */ - void arm_fill_q7( - q7_t value, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @brief Fills a constant value into a Q15 vector. - * @param[in] value input value to be filled - * @param[out] pDst output pointer - * @param[in] blockSize number of samples to process - */ - void arm_fill_q15( - q15_t value, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Fills a constant value into a Q31 vector. - * @param[in] value input value to be filled - * @param[out] pDst output pointer - * @param[in] blockSize number of samples to process - */ - void arm_fill_q31( - q31_t value, - q31_t * pDst, - uint32_t blockSize); - - -/** - * @brief Convolution of floating-point sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the location where the output result is written. Length srcALen+srcBLen-1. - */ - void arm_conv_f32( - float32_t * pSrcA, - uint32_t srcALen, - float32_t * pSrcB, - uint32_t srcBLen, - float32_t * pDst); - - - /** - * @brief Convolution of Q15 sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. - * @param[in] pScratch1 points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. - * @param[in] pScratch2 points to scratch buffer of size min(srcALen, srcBLen). - */ - void arm_conv_opt_q15( - q15_t * pSrcA, - uint32_t srcALen, - q15_t * pSrcB, - uint32_t srcBLen, - q15_t * pDst, - q15_t * pScratch1, - q15_t * pScratch2); - - -/** - * @brief Convolution of Q15 sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the location where the output result is written. Length srcALen+srcBLen-1. - */ - void arm_conv_q15( - q15_t * pSrcA, - uint32_t srcALen, - q15_t * pSrcB, - uint32_t srcBLen, - q15_t * pDst); - - - /** - * @brief Convolution of Q15 sequences (fast version) for Cortex-M3 and Cortex-M4 - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. - */ - void arm_conv_fast_q15( - q15_t * pSrcA, - uint32_t srcALen, - q15_t * pSrcB, - uint32_t srcBLen, - q15_t * pDst); - - - /** - * @brief Convolution of Q15 sequences (fast version) for Cortex-M3 and Cortex-M4 - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. - * @param[in] pScratch1 points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. - * @param[in] pScratch2 points to scratch buffer of size min(srcALen, srcBLen). - */ - void arm_conv_fast_opt_q15( - q15_t * pSrcA, - uint32_t srcALen, - q15_t * pSrcB, - uint32_t srcBLen, - q15_t * pDst, - q15_t * pScratch1, - q15_t * pScratch2); - - - /** - * @brief Convolution of Q31 sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. - */ - void arm_conv_q31( - q31_t * pSrcA, - uint32_t srcALen, - q31_t * pSrcB, - uint32_t srcBLen, - q31_t * pDst); - - - /** - * @brief Convolution of Q31 sequences (fast version) for Cortex-M3 and Cortex-M4 - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. - */ - void arm_conv_fast_q31( - q31_t * pSrcA, - uint32_t srcALen, - q31_t * pSrcB, - uint32_t srcBLen, - q31_t * pDst); - - - /** - * @brief Convolution of Q7 sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. - * @param[in] pScratch1 points to scratch buffer(of type q15_t) of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. - * @param[in] pScratch2 points to scratch buffer (of type q15_t) of size min(srcALen, srcBLen). - */ - void arm_conv_opt_q7( - q7_t * pSrcA, - uint32_t srcALen, - q7_t * pSrcB, - uint32_t srcBLen, - q7_t * pDst, - q15_t * pScratch1, - q15_t * pScratch2); - - - /** - * @brief Convolution of Q7 sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length srcALen+srcBLen-1. - */ - void arm_conv_q7( - q7_t * pSrcA, - uint32_t srcALen, - q7_t * pSrcB, - uint32_t srcBLen, - q7_t * pDst); - - - /** - * @brief Partial convolution of floating-point sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data - * @param[in] firstIndex is the first output sample to start with. - * @param[in] numPoints is the number of output points to be computed. - * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. - */ - arm_status arm_conv_partial_f32( - float32_t * pSrcA, - uint32_t srcALen, - float32_t * pSrcB, - uint32_t srcBLen, - float32_t * pDst, - uint32_t firstIndex, - uint32_t numPoints); - - - /** - * @brief Partial convolution of Q15 sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data - * @param[in] firstIndex is the first output sample to start with. - * @param[in] numPoints is the number of output points to be computed. - * @param[in] pScratch1 points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. - * @param[in] pScratch2 points to scratch buffer of size min(srcALen, srcBLen). - * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. - */ - arm_status arm_conv_partial_opt_q15( - q15_t * pSrcA, - uint32_t srcALen, - q15_t * pSrcB, - uint32_t srcBLen, - q15_t * pDst, - uint32_t firstIndex, - uint32_t numPoints, - q15_t * pScratch1, - q15_t * pScratch2); - - - /** - * @brief Partial convolution of Q15 sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data - * @param[in] firstIndex is the first output sample to start with. - * @param[in] numPoints is the number of output points to be computed. - * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. - */ - arm_status arm_conv_partial_q15( - q15_t * pSrcA, - uint32_t srcALen, - q15_t * pSrcB, - uint32_t srcBLen, - q15_t * pDst, - uint32_t firstIndex, - uint32_t numPoints); - - - /** - * @brief Partial convolution of Q15 sequences (fast version) for Cortex-M3 and Cortex-M4 - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data - * @param[in] firstIndex is the first output sample to start with. - * @param[in] numPoints is the number of output points to be computed. - * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. - */ - arm_status arm_conv_partial_fast_q15( - q15_t * pSrcA, - uint32_t srcALen, - q15_t * pSrcB, - uint32_t srcBLen, - q15_t * pDst, - uint32_t firstIndex, - uint32_t numPoints); - - - /** - * @brief Partial convolution of Q15 sequences (fast version) for Cortex-M3 and Cortex-M4 - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data - * @param[in] firstIndex is the first output sample to start with. - * @param[in] numPoints is the number of output points to be computed. - * @param[in] pScratch1 points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. - * @param[in] pScratch2 points to scratch buffer of size min(srcALen, srcBLen). - * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. - */ - arm_status arm_conv_partial_fast_opt_q15( - q15_t * pSrcA, - uint32_t srcALen, - q15_t * pSrcB, - uint32_t srcBLen, - q15_t * pDst, - uint32_t firstIndex, - uint32_t numPoints, - q15_t * pScratch1, - q15_t * pScratch2); - - - /** - * @brief Partial convolution of Q31 sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data - * @param[in] firstIndex is the first output sample to start with. - * @param[in] numPoints is the number of output points to be computed. - * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. - */ - arm_status arm_conv_partial_q31( - q31_t * pSrcA, - uint32_t srcALen, - q31_t * pSrcB, - uint32_t srcBLen, - q31_t * pDst, - uint32_t firstIndex, - uint32_t numPoints); - - - /** - * @brief Partial convolution of Q31 sequences (fast version) for Cortex-M3 and Cortex-M4 - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data - * @param[in] firstIndex is the first output sample to start with. - * @param[in] numPoints is the number of output points to be computed. - * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. - */ - arm_status arm_conv_partial_fast_q31( - q31_t * pSrcA, - uint32_t srcALen, - q31_t * pSrcB, - uint32_t srcBLen, - q31_t * pDst, - uint32_t firstIndex, - uint32_t numPoints); - - - /** - * @brief Partial convolution of Q7 sequences - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data - * @param[in] firstIndex is the first output sample to start with. - * @param[in] numPoints is the number of output points to be computed. - * @param[in] pScratch1 points to scratch buffer(of type q15_t) of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. - * @param[in] pScratch2 points to scratch buffer (of type q15_t) of size min(srcALen, srcBLen). - * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. - */ - arm_status arm_conv_partial_opt_q7( - q7_t * pSrcA, - uint32_t srcALen, - q7_t * pSrcB, - uint32_t srcBLen, - q7_t * pDst, - uint32_t firstIndex, - uint32_t numPoints, - q15_t * pScratch1, - q15_t * pScratch2); - - -/** - * @brief Partial convolution of Q7 sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data - * @param[in] firstIndex is the first output sample to start with. - * @param[in] numPoints is the number of output points to be computed. - * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. - */ - arm_status arm_conv_partial_q7( - q7_t * pSrcA, - uint32_t srcALen, - q7_t * pSrcB, - uint32_t srcBLen, - q7_t * pDst, - uint32_t firstIndex, - uint32_t numPoints); - - - /** - * @brief Instance structure for the Q15 FIR decimator. - */ - typedef struct - { - uint8_t M; /**< decimation factor. */ - uint16_t numTaps; /**< number of coefficients in the filter. */ - q15_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ - q15_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ - } arm_fir_decimate_instance_q15; - - /** - * @brief Instance structure for the Q31 FIR decimator. - */ - typedef struct - { - uint8_t M; /**< decimation factor. */ - uint16_t numTaps; /**< number of coefficients in the filter. */ - q31_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ - q31_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ - } arm_fir_decimate_instance_q31; - - /** - * @brief Instance structure for the floating-point FIR decimator. - */ - typedef struct - { - uint8_t M; /**< decimation factor. */ - uint16_t numTaps; /**< number of coefficients in the filter. */ - float32_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ - float32_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ - } arm_fir_decimate_instance_f32; - - - /** - * @brief Processing function for the floating-point FIR decimator. - * @param[in] S points to an instance of the floating-point FIR decimator structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] blockSize number of input samples to process per call. - */ - void arm_fir_decimate_f32( - const arm_fir_decimate_instance_f32 * S, - float32_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the floating-point FIR decimator. - * @param[in,out] S points to an instance of the floating-point FIR decimator structure. - * @param[in] numTaps number of coefficients in the filter. - * @param[in] M decimation factor. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] blockSize number of input samples to process per call. - * @return The function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_LENGTH_ERROR if - * blockSize is not a multiple of M. - */ - arm_status arm_fir_decimate_init_f32( - arm_fir_decimate_instance_f32 * S, - uint16_t numTaps, - uint8_t M, - float32_t * pCoeffs, - float32_t * pState, - uint32_t blockSize); - - - /** - * @brief Processing function for the Q15 FIR decimator. - * @param[in] S points to an instance of the Q15 FIR decimator structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] blockSize number of input samples to process per call. - */ - void arm_fir_decimate_q15( - const arm_fir_decimate_instance_q15 * S, - q15_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Processing function for the Q15 FIR decimator (fast variant) for Cortex-M3 and Cortex-M4. - * @param[in] S points to an instance of the Q15 FIR decimator structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] blockSize number of input samples to process per call. - */ - void arm_fir_decimate_fast_q15( - const arm_fir_decimate_instance_q15 * S, - q15_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q15 FIR decimator. - * @param[in,out] S points to an instance of the Q15 FIR decimator structure. - * @param[in] numTaps number of coefficients in the filter. - * @param[in] M decimation factor. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] blockSize number of input samples to process per call. - * @return The function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_LENGTH_ERROR if - * blockSize is not a multiple of M. - */ - arm_status arm_fir_decimate_init_q15( - arm_fir_decimate_instance_q15 * S, - uint16_t numTaps, - uint8_t M, - q15_t * pCoeffs, - q15_t * pState, - uint32_t blockSize); - - - /** - * @brief Processing function for the Q31 FIR decimator. - * @param[in] S points to an instance of the Q31 FIR decimator structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] blockSize number of input samples to process per call. - */ - void arm_fir_decimate_q31( - const arm_fir_decimate_instance_q31 * S, - q31_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - /** - * @brief Processing function for the Q31 FIR decimator (fast variant) for Cortex-M3 and Cortex-M4. - * @param[in] S points to an instance of the Q31 FIR decimator structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] blockSize number of input samples to process per call. - */ - void arm_fir_decimate_fast_q31( - arm_fir_decimate_instance_q31 * S, - q31_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q31 FIR decimator. - * @param[in,out] S points to an instance of the Q31 FIR decimator structure. - * @param[in] numTaps number of coefficients in the filter. - * @param[in] M decimation factor. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] blockSize number of input samples to process per call. - * @return The function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_LENGTH_ERROR if - * blockSize is not a multiple of M. - */ - arm_status arm_fir_decimate_init_q31( - arm_fir_decimate_instance_q31 * S, - uint16_t numTaps, - uint8_t M, - q31_t * pCoeffs, - q31_t * pState, - uint32_t blockSize); - - - /** - * @brief Instance structure for the Q15 FIR interpolator. - */ - typedef struct - { - uint8_t L; /**< upsample factor. */ - uint16_t phaseLength; /**< length of each polyphase filter component. */ - q15_t *pCoeffs; /**< points to the coefficient array. The array is of length L*phaseLength. */ - q15_t *pState; /**< points to the state variable array. The array is of length blockSize+phaseLength-1. */ - } arm_fir_interpolate_instance_q15; - - /** - * @brief Instance structure for the Q31 FIR interpolator. - */ - typedef struct - { - uint8_t L; /**< upsample factor. */ - uint16_t phaseLength; /**< length of each polyphase filter component. */ - q31_t *pCoeffs; /**< points to the coefficient array. The array is of length L*phaseLength. */ - q31_t *pState; /**< points to the state variable array. The array is of length blockSize+phaseLength-1. */ - } arm_fir_interpolate_instance_q31; - - /** - * @brief Instance structure for the floating-point FIR interpolator. - */ - typedef struct - { - uint8_t L; /**< upsample factor. */ - uint16_t phaseLength; /**< length of each polyphase filter component. */ - float32_t *pCoeffs; /**< points to the coefficient array. The array is of length L*phaseLength. */ - float32_t *pState; /**< points to the state variable array. The array is of length phaseLength+numTaps-1. */ - } arm_fir_interpolate_instance_f32; - - - /** - * @brief Processing function for the Q15 FIR interpolator. - * @param[in] S points to an instance of the Q15 FIR interpolator structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of input samples to process per call. - */ - void arm_fir_interpolate_q15( - const arm_fir_interpolate_instance_q15 * S, - q15_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q15 FIR interpolator. - * @param[in,out] S points to an instance of the Q15 FIR interpolator structure. - * @param[in] L upsample factor. - * @param[in] numTaps number of filter coefficients in the filter. - * @param[in] pCoeffs points to the filter coefficient buffer. - * @param[in] pState points to the state buffer. - * @param[in] blockSize number of input samples to process per call. - * @return The function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_LENGTH_ERROR if - * the filter length numTaps is not a multiple of the interpolation factor L. - */ - arm_status arm_fir_interpolate_init_q15( - arm_fir_interpolate_instance_q15 * S, - uint8_t L, - uint16_t numTaps, - q15_t * pCoeffs, - q15_t * pState, - uint32_t blockSize); - - - /** - * @brief Processing function for the Q31 FIR interpolator. - * @param[in] S points to an instance of the Q15 FIR interpolator structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of input samples to process per call. - */ - void arm_fir_interpolate_q31( - const arm_fir_interpolate_instance_q31 * S, - q31_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q31 FIR interpolator. - * @param[in,out] S points to an instance of the Q31 FIR interpolator structure. - * @param[in] L upsample factor. - * @param[in] numTaps number of filter coefficients in the filter. - * @param[in] pCoeffs points to the filter coefficient buffer. - * @param[in] pState points to the state buffer. - * @param[in] blockSize number of input samples to process per call. - * @return The function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_LENGTH_ERROR if - * the filter length numTaps is not a multiple of the interpolation factor L. - */ - arm_status arm_fir_interpolate_init_q31( - arm_fir_interpolate_instance_q31 * S, - uint8_t L, - uint16_t numTaps, - q31_t * pCoeffs, - q31_t * pState, - uint32_t blockSize); - - - /** - * @brief Processing function for the floating-point FIR interpolator. - * @param[in] S points to an instance of the floating-point FIR interpolator structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of input samples to process per call. - */ - void arm_fir_interpolate_f32( - const arm_fir_interpolate_instance_f32 * S, - float32_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the floating-point FIR interpolator. - * @param[in,out] S points to an instance of the floating-point FIR interpolator structure. - * @param[in] L upsample factor. - * @param[in] numTaps number of filter coefficients in the filter. - * @param[in] pCoeffs points to the filter coefficient buffer. - * @param[in] pState points to the state buffer. - * @param[in] blockSize number of input samples to process per call. - * @return The function returns ARM_MATH_SUCCESS if initialization is successful or ARM_MATH_LENGTH_ERROR if - * the filter length numTaps is not a multiple of the interpolation factor L. - */ - arm_status arm_fir_interpolate_init_f32( - arm_fir_interpolate_instance_f32 * S, - uint8_t L, - uint16_t numTaps, - float32_t * pCoeffs, - float32_t * pState, - uint32_t blockSize); - - - /** - * @brief Instance structure for the high precision Q31 Biquad cascade filter. - */ - typedef struct - { - uint8_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ - q63_t *pState; /**< points to the array of state coefficients. The array is of length 4*numStages. */ - q31_t *pCoeffs; /**< points to the array of coefficients. The array is of length 5*numStages. */ - uint8_t postShift; /**< additional shift, in bits, applied to each output sample. */ - } arm_biquad_cas_df1_32x64_ins_q31; - - - /** - * @param[in] S points to an instance of the high precision Q31 Biquad cascade filter structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] blockSize number of samples to process. - */ - void arm_biquad_cas_df1_32x64_q31( - const arm_biquad_cas_df1_32x64_ins_q31 * S, - q31_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @param[in,out] S points to an instance of the high precision Q31 Biquad cascade filter structure. - * @param[in] numStages number of 2nd order stages in the filter. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] postShift shift to be applied to the output. Varies according to the coefficients format - */ - void arm_biquad_cas_df1_32x64_init_q31( - arm_biquad_cas_df1_32x64_ins_q31 * S, - uint8_t numStages, - q31_t * pCoeffs, - q63_t * pState, - uint8_t postShift); - - - /** - * @brief Instance structure for the floating-point transposed direct form II Biquad cascade filter. - */ - typedef struct - { - uint8_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ - float32_t *pState; /**< points to the array of state coefficients. The array is of length 2*numStages. */ - float32_t *pCoeffs; /**< points to the array of coefficients. The array is of length 5*numStages. */ - } arm_biquad_cascade_df2T_instance_f32; - - /** - * @brief Instance structure for the floating-point transposed direct form II Biquad cascade filter. - */ - typedef struct - { - uint8_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ - float32_t *pState; /**< points to the array of state coefficients. The array is of length 4*numStages. */ - float32_t *pCoeffs; /**< points to the array of coefficients. The array is of length 5*numStages. */ - } arm_biquad_cascade_stereo_df2T_instance_f32; - - /** - * @brief Instance structure for the floating-point transposed direct form II Biquad cascade filter. - */ - typedef struct - { - uint8_t numStages; /**< number of 2nd order stages in the filter. Overall order is 2*numStages. */ - float64_t *pState; /**< points to the array of state coefficients. The array is of length 2*numStages. */ - float64_t *pCoeffs; /**< points to the array of coefficients. The array is of length 5*numStages. */ - } arm_biquad_cascade_df2T_instance_f64; - - - /** - * @brief Processing function for the floating-point transposed direct form II Biquad cascade filter. - * @param[in] S points to an instance of the filter data structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] blockSize number of samples to process. - */ - void arm_biquad_cascade_df2T_f32( - const arm_biquad_cascade_df2T_instance_f32 * S, - float32_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Processing function for the floating-point transposed direct form II Biquad cascade filter. 2 channels - * @param[in] S points to an instance of the filter data structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] blockSize number of samples to process. - */ - void arm_biquad_cascade_stereo_df2T_f32( - const arm_biquad_cascade_stereo_df2T_instance_f32 * S, - float32_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Processing function for the floating-point transposed direct form II Biquad cascade filter. - * @param[in] S points to an instance of the filter data structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] blockSize number of samples to process. - */ - void arm_biquad_cascade_df2T_f64( - const arm_biquad_cascade_df2T_instance_f64 * S, - float64_t * pSrc, - float64_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the floating-point transposed direct form II Biquad cascade filter. - * @param[in,out] S points to an instance of the filter data structure. - * @param[in] numStages number of 2nd order stages in the filter. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - */ - void arm_biquad_cascade_df2T_init_f32( - arm_biquad_cascade_df2T_instance_f32 * S, - uint8_t numStages, - float32_t * pCoeffs, - float32_t * pState); - - - /** - * @brief Initialization function for the floating-point transposed direct form II Biquad cascade filter. - * @param[in,out] S points to an instance of the filter data structure. - * @param[in] numStages number of 2nd order stages in the filter. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - */ - void arm_biquad_cascade_stereo_df2T_init_f32( - arm_biquad_cascade_stereo_df2T_instance_f32 * S, - uint8_t numStages, - float32_t * pCoeffs, - float32_t * pState); - - - /** - * @brief Initialization function for the floating-point transposed direct form II Biquad cascade filter. - * @param[in,out] S points to an instance of the filter data structure. - * @param[in] numStages number of 2nd order stages in the filter. - * @param[in] pCoeffs points to the filter coefficients. - * @param[in] pState points to the state buffer. - */ - void arm_biquad_cascade_df2T_init_f64( - arm_biquad_cascade_df2T_instance_f64 * S, - uint8_t numStages, - float64_t * pCoeffs, - float64_t * pState); - - - /** - * @brief Instance structure for the Q15 FIR lattice filter. - */ - typedef struct - { - uint16_t numStages; /**< number of filter stages. */ - q15_t *pState; /**< points to the state variable array. The array is of length numStages. */ - q15_t *pCoeffs; /**< points to the coefficient array. The array is of length numStages. */ - } arm_fir_lattice_instance_q15; - - /** - * @brief Instance structure for the Q31 FIR lattice filter. - */ - typedef struct - { - uint16_t numStages; /**< number of filter stages. */ - q31_t *pState; /**< points to the state variable array. The array is of length numStages. */ - q31_t *pCoeffs; /**< points to the coefficient array. The array is of length numStages. */ - } arm_fir_lattice_instance_q31; - - /** - * @brief Instance structure for the floating-point FIR lattice filter. - */ - typedef struct - { - uint16_t numStages; /**< number of filter stages. */ - float32_t *pState; /**< points to the state variable array. The array is of length numStages. */ - float32_t *pCoeffs; /**< points to the coefficient array. The array is of length numStages. */ - } arm_fir_lattice_instance_f32; - - - /** - * @brief Initialization function for the Q15 FIR lattice filter. - * @param[in] S points to an instance of the Q15 FIR lattice structure. - * @param[in] numStages number of filter stages. - * @param[in] pCoeffs points to the coefficient buffer. The array is of length numStages. - * @param[in] pState points to the state buffer. The array is of length numStages. - */ - void arm_fir_lattice_init_q15( - arm_fir_lattice_instance_q15 * S, - uint16_t numStages, - q15_t * pCoeffs, - q15_t * pState); - - - /** - * @brief Processing function for the Q15 FIR lattice filter. - * @param[in] S points to an instance of the Q15 FIR lattice structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_fir_lattice_q15( - const arm_fir_lattice_instance_q15 * S, - q15_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q31 FIR lattice filter. - * @param[in] S points to an instance of the Q31 FIR lattice structure. - * @param[in] numStages number of filter stages. - * @param[in] pCoeffs points to the coefficient buffer. The array is of length numStages. - * @param[in] pState points to the state buffer. The array is of length numStages. - */ - void arm_fir_lattice_init_q31( - arm_fir_lattice_instance_q31 * S, - uint16_t numStages, - q31_t * pCoeffs, - q31_t * pState); - - - /** - * @brief Processing function for the Q31 FIR lattice filter. - * @param[in] S points to an instance of the Q31 FIR lattice structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] blockSize number of samples to process. - */ - void arm_fir_lattice_q31( - const arm_fir_lattice_instance_q31 * S, - q31_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - -/** - * @brief Initialization function for the floating-point FIR lattice filter. - * @param[in] S points to an instance of the floating-point FIR lattice structure. - * @param[in] numStages number of filter stages. - * @param[in] pCoeffs points to the coefficient buffer. The array is of length numStages. - * @param[in] pState points to the state buffer. The array is of length numStages. - */ - void arm_fir_lattice_init_f32( - arm_fir_lattice_instance_f32 * S, - uint16_t numStages, - float32_t * pCoeffs, - float32_t * pState); - - - /** - * @brief Processing function for the floating-point FIR lattice filter. - * @param[in] S points to an instance of the floating-point FIR lattice structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] blockSize number of samples to process. - */ - void arm_fir_lattice_f32( - const arm_fir_lattice_instance_f32 * S, - float32_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Instance structure for the Q15 IIR lattice filter. - */ - typedef struct - { - uint16_t numStages; /**< number of stages in the filter. */ - q15_t *pState; /**< points to the state variable array. The array is of length numStages+blockSize. */ - q15_t *pkCoeffs; /**< points to the reflection coefficient array. The array is of length numStages. */ - q15_t *pvCoeffs; /**< points to the ladder coefficient array. The array is of length numStages+1. */ - } arm_iir_lattice_instance_q15; - - /** - * @brief Instance structure for the Q31 IIR lattice filter. - */ - typedef struct - { - uint16_t numStages; /**< number of stages in the filter. */ - q31_t *pState; /**< points to the state variable array. The array is of length numStages+blockSize. */ - q31_t *pkCoeffs; /**< points to the reflection coefficient array. The array is of length numStages. */ - q31_t *pvCoeffs; /**< points to the ladder coefficient array. The array is of length numStages+1. */ - } arm_iir_lattice_instance_q31; - - /** - * @brief Instance structure for the floating-point IIR lattice filter. - */ - typedef struct - { - uint16_t numStages; /**< number of stages in the filter. */ - float32_t *pState; /**< points to the state variable array. The array is of length numStages+blockSize. */ - float32_t *pkCoeffs; /**< points to the reflection coefficient array. The array is of length numStages. */ - float32_t *pvCoeffs; /**< points to the ladder coefficient array. The array is of length numStages+1. */ - } arm_iir_lattice_instance_f32; - - - /** - * @brief Processing function for the floating-point IIR lattice filter. - * @param[in] S points to an instance of the floating-point IIR lattice structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_iir_lattice_f32( - const arm_iir_lattice_instance_f32 * S, - float32_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the floating-point IIR lattice filter. - * @param[in] S points to an instance of the floating-point IIR lattice structure. - * @param[in] numStages number of stages in the filter. - * @param[in] pkCoeffs points to the reflection coefficient buffer. The array is of length numStages. - * @param[in] pvCoeffs points to the ladder coefficient buffer. The array is of length numStages+1. - * @param[in] pState points to the state buffer. The array is of length numStages+blockSize-1. - * @param[in] blockSize number of samples to process. - */ - void arm_iir_lattice_init_f32( - arm_iir_lattice_instance_f32 * S, - uint16_t numStages, - float32_t * pkCoeffs, - float32_t * pvCoeffs, - float32_t * pState, - uint32_t blockSize); - - - /** - * @brief Processing function for the Q31 IIR lattice filter. - * @param[in] S points to an instance of the Q31 IIR lattice structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_iir_lattice_q31( - const arm_iir_lattice_instance_q31 * S, - q31_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q31 IIR lattice filter. - * @param[in] S points to an instance of the Q31 IIR lattice structure. - * @param[in] numStages number of stages in the filter. - * @param[in] pkCoeffs points to the reflection coefficient buffer. The array is of length numStages. - * @param[in] pvCoeffs points to the ladder coefficient buffer. The array is of length numStages+1. - * @param[in] pState points to the state buffer. The array is of length numStages+blockSize. - * @param[in] blockSize number of samples to process. - */ - void arm_iir_lattice_init_q31( - arm_iir_lattice_instance_q31 * S, - uint16_t numStages, - q31_t * pkCoeffs, - q31_t * pvCoeffs, - q31_t * pState, - uint32_t blockSize); - - - /** - * @brief Processing function for the Q15 IIR lattice filter. - * @param[in] S points to an instance of the Q15 IIR lattice structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data. - * @param[in] blockSize number of samples to process. - */ - void arm_iir_lattice_q15( - const arm_iir_lattice_instance_q15 * S, - q15_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - -/** - * @brief Initialization function for the Q15 IIR lattice filter. - * @param[in] S points to an instance of the fixed-point Q15 IIR lattice structure. - * @param[in] numStages number of stages in the filter. - * @param[in] pkCoeffs points to reflection coefficient buffer. The array is of length numStages. - * @param[in] pvCoeffs points to ladder coefficient buffer. The array is of length numStages+1. - * @param[in] pState points to state buffer. The array is of length numStages+blockSize. - * @param[in] blockSize number of samples to process per call. - */ - void arm_iir_lattice_init_q15( - arm_iir_lattice_instance_q15 * S, - uint16_t numStages, - q15_t * pkCoeffs, - q15_t * pvCoeffs, - q15_t * pState, - uint32_t blockSize); - - - /** - * @brief Instance structure for the floating-point LMS filter. - */ - typedef struct - { - uint16_t numTaps; /**< number of coefficients in the filter. */ - float32_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ - float32_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ - float32_t mu; /**< step size that controls filter coefficient updates. */ - } arm_lms_instance_f32; - - - /** - * @brief Processing function for floating-point LMS filter. - * @param[in] S points to an instance of the floating-point LMS filter structure. - * @param[in] pSrc points to the block of input data. - * @param[in] pRef points to the block of reference data. - * @param[out] pOut points to the block of output data. - * @param[out] pErr points to the block of error data. - * @param[in] blockSize number of samples to process. - */ - void arm_lms_f32( - const arm_lms_instance_f32 * S, - float32_t * pSrc, - float32_t * pRef, - float32_t * pOut, - float32_t * pErr, - uint32_t blockSize); - - - /** - * @brief Initialization function for floating-point LMS filter. - * @param[in] S points to an instance of the floating-point LMS filter structure. - * @param[in] numTaps number of filter coefficients. - * @param[in] pCoeffs points to the coefficient buffer. - * @param[in] pState points to state buffer. - * @param[in] mu step size that controls filter coefficient updates. - * @param[in] blockSize number of samples to process. - */ - void arm_lms_init_f32( - arm_lms_instance_f32 * S, - uint16_t numTaps, - float32_t * pCoeffs, - float32_t * pState, - float32_t mu, - uint32_t blockSize); - - - /** - * @brief Instance structure for the Q15 LMS filter. - */ - typedef struct - { - uint16_t numTaps; /**< number of coefficients in the filter. */ - q15_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ - q15_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ - q15_t mu; /**< step size that controls filter coefficient updates. */ - uint32_t postShift; /**< bit shift applied to coefficients. */ - } arm_lms_instance_q15; - - - /** - * @brief Initialization function for the Q15 LMS filter. - * @param[in] S points to an instance of the Q15 LMS filter structure. - * @param[in] numTaps number of filter coefficients. - * @param[in] pCoeffs points to the coefficient buffer. - * @param[in] pState points to the state buffer. - * @param[in] mu step size that controls filter coefficient updates. - * @param[in] blockSize number of samples to process. - * @param[in] postShift bit shift applied to coefficients. - */ - void arm_lms_init_q15( - arm_lms_instance_q15 * S, - uint16_t numTaps, - q15_t * pCoeffs, - q15_t * pState, - q15_t mu, - uint32_t blockSize, - uint32_t postShift); - - - /** - * @brief Processing function for Q15 LMS filter. - * @param[in] S points to an instance of the Q15 LMS filter structure. - * @param[in] pSrc points to the block of input data. - * @param[in] pRef points to the block of reference data. - * @param[out] pOut points to the block of output data. - * @param[out] pErr points to the block of error data. - * @param[in] blockSize number of samples to process. - */ - void arm_lms_q15( - const arm_lms_instance_q15 * S, - q15_t * pSrc, - q15_t * pRef, - q15_t * pOut, - q15_t * pErr, - uint32_t blockSize); - - - /** - * @brief Instance structure for the Q31 LMS filter. - */ - typedef struct - { - uint16_t numTaps; /**< number of coefficients in the filter. */ - q31_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ - q31_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ - q31_t mu; /**< step size that controls filter coefficient updates. */ - uint32_t postShift; /**< bit shift applied to coefficients. */ - } arm_lms_instance_q31; - - - /** - * @brief Processing function for Q31 LMS filter. - * @param[in] S points to an instance of the Q15 LMS filter structure. - * @param[in] pSrc points to the block of input data. - * @param[in] pRef points to the block of reference data. - * @param[out] pOut points to the block of output data. - * @param[out] pErr points to the block of error data. - * @param[in] blockSize number of samples to process. - */ - void arm_lms_q31( - const arm_lms_instance_q31 * S, - q31_t * pSrc, - q31_t * pRef, - q31_t * pOut, - q31_t * pErr, - uint32_t blockSize); - - - /** - * @brief Initialization function for Q31 LMS filter. - * @param[in] S points to an instance of the Q31 LMS filter structure. - * @param[in] numTaps number of filter coefficients. - * @param[in] pCoeffs points to coefficient buffer. - * @param[in] pState points to state buffer. - * @param[in] mu step size that controls filter coefficient updates. - * @param[in] blockSize number of samples to process. - * @param[in] postShift bit shift applied to coefficients. - */ - void arm_lms_init_q31( - arm_lms_instance_q31 * S, - uint16_t numTaps, - q31_t * pCoeffs, - q31_t * pState, - q31_t mu, - uint32_t blockSize, - uint32_t postShift); - - - /** - * @brief Instance structure for the floating-point normalized LMS filter. - */ - typedef struct - { - uint16_t numTaps; /**< number of coefficients in the filter. */ - float32_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ - float32_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ - float32_t mu; /**< step size that control filter coefficient updates. */ - float32_t energy; /**< saves previous frame energy. */ - float32_t x0; /**< saves previous input sample. */ - } arm_lms_norm_instance_f32; - - - /** - * @brief Processing function for floating-point normalized LMS filter. - * @param[in] S points to an instance of the floating-point normalized LMS filter structure. - * @param[in] pSrc points to the block of input data. - * @param[in] pRef points to the block of reference data. - * @param[out] pOut points to the block of output data. - * @param[out] pErr points to the block of error data. - * @param[in] blockSize number of samples to process. - */ - void arm_lms_norm_f32( - arm_lms_norm_instance_f32 * S, - float32_t * pSrc, - float32_t * pRef, - float32_t * pOut, - float32_t * pErr, - uint32_t blockSize); - - - /** - * @brief Initialization function for floating-point normalized LMS filter. - * @param[in] S points to an instance of the floating-point LMS filter structure. - * @param[in] numTaps number of filter coefficients. - * @param[in] pCoeffs points to coefficient buffer. - * @param[in] pState points to state buffer. - * @param[in] mu step size that controls filter coefficient updates. - * @param[in] blockSize number of samples to process. - */ - void arm_lms_norm_init_f32( - arm_lms_norm_instance_f32 * S, - uint16_t numTaps, - float32_t * pCoeffs, - float32_t * pState, - float32_t mu, - uint32_t blockSize); - - - /** - * @brief Instance structure for the Q31 normalized LMS filter. - */ - typedef struct - { - uint16_t numTaps; /**< number of coefficients in the filter. */ - q31_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ - q31_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ - q31_t mu; /**< step size that controls filter coefficient updates. */ - uint8_t postShift; /**< bit shift applied to coefficients. */ - q31_t *recipTable; /**< points to the reciprocal initial value table. */ - q31_t energy; /**< saves previous frame energy. */ - q31_t x0; /**< saves previous input sample. */ - } arm_lms_norm_instance_q31; - - - /** - * @brief Processing function for Q31 normalized LMS filter. - * @param[in] S points to an instance of the Q31 normalized LMS filter structure. - * @param[in] pSrc points to the block of input data. - * @param[in] pRef points to the block of reference data. - * @param[out] pOut points to the block of output data. - * @param[out] pErr points to the block of error data. - * @param[in] blockSize number of samples to process. - */ - void arm_lms_norm_q31( - arm_lms_norm_instance_q31 * S, - q31_t * pSrc, - q31_t * pRef, - q31_t * pOut, - q31_t * pErr, - uint32_t blockSize); - - - /** - * @brief Initialization function for Q31 normalized LMS filter. - * @param[in] S points to an instance of the Q31 normalized LMS filter structure. - * @param[in] numTaps number of filter coefficients. - * @param[in] pCoeffs points to coefficient buffer. - * @param[in] pState points to state buffer. - * @param[in] mu step size that controls filter coefficient updates. - * @param[in] blockSize number of samples to process. - * @param[in] postShift bit shift applied to coefficients. - */ - void arm_lms_norm_init_q31( - arm_lms_norm_instance_q31 * S, - uint16_t numTaps, - q31_t * pCoeffs, - q31_t * pState, - q31_t mu, - uint32_t blockSize, - uint8_t postShift); - - - /** - * @brief Instance structure for the Q15 normalized LMS filter. - */ - typedef struct - { - uint16_t numTaps; /**< Number of coefficients in the filter. */ - q15_t *pState; /**< points to the state variable array. The array is of length numTaps+blockSize-1. */ - q15_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps. */ - q15_t mu; /**< step size that controls filter coefficient updates. */ - uint8_t postShift; /**< bit shift applied to coefficients. */ - q15_t *recipTable; /**< Points to the reciprocal initial value table. */ - q15_t energy; /**< saves previous frame energy. */ - q15_t x0; /**< saves previous input sample. */ - } arm_lms_norm_instance_q15; - - - /** - * @brief Processing function for Q15 normalized LMS filter. - * @param[in] S points to an instance of the Q15 normalized LMS filter structure. - * @param[in] pSrc points to the block of input data. - * @param[in] pRef points to the block of reference data. - * @param[out] pOut points to the block of output data. - * @param[out] pErr points to the block of error data. - * @param[in] blockSize number of samples to process. - */ - void arm_lms_norm_q15( - arm_lms_norm_instance_q15 * S, - q15_t * pSrc, - q15_t * pRef, - q15_t * pOut, - q15_t * pErr, - uint32_t blockSize); - - - /** - * @brief Initialization function for Q15 normalized LMS filter. - * @param[in] S points to an instance of the Q15 normalized LMS filter structure. - * @param[in] numTaps number of filter coefficients. - * @param[in] pCoeffs points to coefficient buffer. - * @param[in] pState points to state buffer. - * @param[in] mu step size that controls filter coefficient updates. - * @param[in] blockSize number of samples to process. - * @param[in] postShift bit shift applied to coefficients. - */ - void arm_lms_norm_init_q15( - arm_lms_norm_instance_q15 * S, - uint16_t numTaps, - q15_t * pCoeffs, - q15_t * pState, - q15_t mu, - uint32_t blockSize, - uint8_t postShift); - - - /** - * @brief Correlation of floating-point sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. - */ - void arm_correlate_f32( - float32_t * pSrcA, - uint32_t srcALen, - float32_t * pSrcB, - uint32_t srcBLen, - float32_t * pDst); - - - /** - * @brief Correlation of Q15 sequences - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. - * @param[in] pScratch points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. - */ - void arm_correlate_opt_q15( - q15_t * pSrcA, - uint32_t srcALen, - q15_t * pSrcB, - uint32_t srcBLen, - q15_t * pDst, - q15_t * pScratch); - - - /** - * @brief Correlation of Q15 sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. - */ - - void arm_correlate_q15( - q15_t * pSrcA, - uint32_t srcALen, - q15_t * pSrcB, - uint32_t srcBLen, - q15_t * pDst); - - - /** - * @brief Correlation of Q15 sequences (fast version) for Cortex-M3 and Cortex-M4. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. - */ - - void arm_correlate_fast_q15( - q15_t * pSrcA, - uint32_t srcALen, - q15_t * pSrcB, - uint32_t srcBLen, - q15_t * pDst); - - - /** - * @brief Correlation of Q15 sequences (fast version) for Cortex-M3 and Cortex-M4. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. - * @param[in] pScratch points to scratch buffer of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. - */ - void arm_correlate_fast_opt_q15( - q15_t * pSrcA, - uint32_t srcALen, - q15_t * pSrcB, - uint32_t srcBLen, - q15_t * pDst, - q15_t * pScratch); - - - /** - * @brief Correlation of Q31 sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. - */ - void arm_correlate_q31( - q31_t * pSrcA, - uint32_t srcALen, - q31_t * pSrcB, - uint32_t srcBLen, - q31_t * pDst); - - - /** - * @brief Correlation of Q31 sequences (fast version) for Cortex-M3 and Cortex-M4 - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. - */ - void arm_correlate_fast_q31( - q31_t * pSrcA, - uint32_t srcALen, - q31_t * pSrcB, - uint32_t srcBLen, - q31_t * pDst); - - - /** - * @brief Correlation of Q7 sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. - * @param[in] pScratch1 points to scratch buffer(of type q15_t) of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. - * @param[in] pScratch2 points to scratch buffer (of type q15_t) of size min(srcALen, srcBLen). - */ - void arm_correlate_opt_q7( - q7_t * pSrcA, - uint32_t srcALen, - q7_t * pSrcB, - uint32_t srcBLen, - q7_t * pDst, - q15_t * pScratch1, - q15_t * pScratch2); - - - /** - * @brief Correlation of Q7 sequences. - * @param[in] pSrcA points to the first input sequence. - * @param[in] srcALen length of the first input sequence. - * @param[in] pSrcB points to the second input sequence. - * @param[in] srcBLen length of the second input sequence. - * @param[out] pDst points to the block of output data Length 2 * max(srcALen, srcBLen) - 1. - */ - void arm_correlate_q7( - q7_t * pSrcA, - uint32_t srcALen, - q7_t * pSrcB, - uint32_t srcBLen, - q7_t * pDst); - - - /** - * @brief Instance structure for the floating-point sparse FIR filter. - */ - typedef struct - { - uint16_t numTaps; /**< number of coefficients in the filter. */ - uint16_t stateIndex; /**< state buffer index. Points to the oldest sample in the state buffer. */ - float32_t *pState; /**< points to the state buffer array. The array is of length maxDelay+blockSize-1. */ - float32_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ - uint16_t maxDelay; /**< maximum offset specified by the pTapDelay array. */ - int32_t *pTapDelay; /**< points to the array of delay values. The array is of length numTaps. */ - } arm_fir_sparse_instance_f32; - - /** - * @brief Instance structure for the Q31 sparse FIR filter. - */ - typedef struct - { - uint16_t numTaps; /**< number of coefficients in the filter. */ - uint16_t stateIndex; /**< state buffer index. Points to the oldest sample in the state buffer. */ - q31_t *pState; /**< points to the state buffer array. The array is of length maxDelay+blockSize-1. */ - q31_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ - uint16_t maxDelay; /**< maximum offset specified by the pTapDelay array. */ - int32_t *pTapDelay; /**< points to the array of delay values. The array is of length numTaps. */ - } arm_fir_sparse_instance_q31; - - /** - * @brief Instance structure for the Q15 sparse FIR filter. - */ - typedef struct - { - uint16_t numTaps; /**< number of coefficients in the filter. */ - uint16_t stateIndex; /**< state buffer index. Points to the oldest sample in the state buffer. */ - q15_t *pState; /**< points to the state buffer array. The array is of length maxDelay+blockSize-1. */ - q15_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ - uint16_t maxDelay; /**< maximum offset specified by the pTapDelay array. */ - int32_t *pTapDelay; /**< points to the array of delay values. The array is of length numTaps. */ - } arm_fir_sparse_instance_q15; - - /** - * @brief Instance structure for the Q7 sparse FIR filter. - */ - typedef struct - { - uint16_t numTaps; /**< number of coefficients in the filter. */ - uint16_t stateIndex; /**< state buffer index. Points to the oldest sample in the state buffer. */ - q7_t *pState; /**< points to the state buffer array. The array is of length maxDelay+blockSize-1. */ - q7_t *pCoeffs; /**< points to the coefficient array. The array is of length numTaps.*/ - uint16_t maxDelay; /**< maximum offset specified by the pTapDelay array. */ - int32_t *pTapDelay; /**< points to the array of delay values. The array is of length numTaps. */ - } arm_fir_sparse_instance_q7; - - - /** - * @brief Processing function for the floating-point sparse FIR filter. - * @param[in] S points to an instance of the floating-point sparse FIR structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] pScratchIn points to a temporary buffer of size blockSize. - * @param[in] blockSize number of input samples to process per call. - */ - void arm_fir_sparse_f32( - arm_fir_sparse_instance_f32 * S, - float32_t * pSrc, - float32_t * pDst, - float32_t * pScratchIn, - uint32_t blockSize); - - - /** - * @brief Initialization function for the floating-point sparse FIR filter. - * @param[in,out] S points to an instance of the floating-point sparse FIR structure. - * @param[in] numTaps number of nonzero coefficients in the filter. - * @param[in] pCoeffs points to the array of filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] pTapDelay points to the array of offset times. - * @param[in] maxDelay maximum offset time supported. - * @param[in] blockSize number of samples that will be processed per block. - */ - void arm_fir_sparse_init_f32( - arm_fir_sparse_instance_f32 * S, - uint16_t numTaps, - float32_t * pCoeffs, - float32_t * pState, - int32_t * pTapDelay, - uint16_t maxDelay, - uint32_t blockSize); - - - /** - * @brief Processing function for the Q31 sparse FIR filter. - * @param[in] S points to an instance of the Q31 sparse FIR structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] pScratchIn points to a temporary buffer of size blockSize. - * @param[in] blockSize number of input samples to process per call. - */ - void arm_fir_sparse_q31( - arm_fir_sparse_instance_q31 * S, - q31_t * pSrc, - q31_t * pDst, - q31_t * pScratchIn, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q31 sparse FIR filter. - * @param[in,out] S points to an instance of the Q31 sparse FIR structure. - * @param[in] numTaps number of nonzero coefficients in the filter. - * @param[in] pCoeffs points to the array of filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] pTapDelay points to the array of offset times. - * @param[in] maxDelay maximum offset time supported. - * @param[in] blockSize number of samples that will be processed per block. - */ - void arm_fir_sparse_init_q31( - arm_fir_sparse_instance_q31 * S, - uint16_t numTaps, - q31_t * pCoeffs, - q31_t * pState, - int32_t * pTapDelay, - uint16_t maxDelay, - uint32_t blockSize); - - - /** - * @brief Processing function for the Q15 sparse FIR filter. - * @param[in] S points to an instance of the Q15 sparse FIR structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] pScratchIn points to a temporary buffer of size blockSize. - * @param[in] pScratchOut points to a temporary buffer of size blockSize. - * @param[in] blockSize number of input samples to process per call. - */ - void arm_fir_sparse_q15( - arm_fir_sparse_instance_q15 * S, - q15_t * pSrc, - q15_t * pDst, - q15_t * pScratchIn, - q31_t * pScratchOut, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q15 sparse FIR filter. - * @param[in,out] S points to an instance of the Q15 sparse FIR structure. - * @param[in] numTaps number of nonzero coefficients in the filter. - * @param[in] pCoeffs points to the array of filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] pTapDelay points to the array of offset times. - * @param[in] maxDelay maximum offset time supported. - * @param[in] blockSize number of samples that will be processed per block. - */ - void arm_fir_sparse_init_q15( - arm_fir_sparse_instance_q15 * S, - uint16_t numTaps, - q15_t * pCoeffs, - q15_t * pState, - int32_t * pTapDelay, - uint16_t maxDelay, - uint32_t blockSize); - - - /** - * @brief Processing function for the Q7 sparse FIR filter. - * @param[in] S points to an instance of the Q7 sparse FIR structure. - * @param[in] pSrc points to the block of input data. - * @param[out] pDst points to the block of output data - * @param[in] pScratchIn points to a temporary buffer of size blockSize. - * @param[in] pScratchOut points to a temporary buffer of size blockSize. - * @param[in] blockSize number of input samples to process per call. - */ - void arm_fir_sparse_q7( - arm_fir_sparse_instance_q7 * S, - q7_t * pSrc, - q7_t * pDst, - q7_t * pScratchIn, - q31_t * pScratchOut, - uint32_t blockSize); - - - /** - * @brief Initialization function for the Q7 sparse FIR filter. - * @param[in,out] S points to an instance of the Q7 sparse FIR structure. - * @param[in] numTaps number of nonzero coefficients in the filter. - * @param[in] pCoeffs points to the array of filter coefficients. - * @param[in] pState points to the state buffer. - * @param[in] pTapDelay points to the array of offset times. - * @param[in] maxDelay maximum offset time supported. - * @param[in] blockSize number of samples that will be processed per block. - */ - void arm_fir_sparse_init_q7( - arm_fir_sparse_instance_q7 * S, - uint16_t numTaps, - q7_t * pCoeffs, - q7_t * pState, - int32_t * pTapDelay, - uint16_t maxDelay, - uint32_t blockSize); - - - /** - * @brief Floating-point sin_cos function. - * @param[in] theta input value in degrees - * @param[out] pSinVal points to the processed sine output. - * @param[out] pCosVal points to the processed cos output. - */ - void arm_sin_cos_f32( - float32_t theta, - float32_t * pSinVal, - float32_t * pCosVal); - - - /** - * @brief Q31 sin_cos function. - * @param[in] theta scaled input value in degrees - * @param[out] pSinVal points to the processed sine output. - * @param[out] pCosVal points to the processed cosine output. - */ - void arm_sin_cos_q31( - q31_t theta, - q31_t * pSinVal, - q31_t * pCosVal); - - - /** - * @brief Floating-point complex conjugate. - * @param[in] pSrc points to the input vector - * @param[out] pDst points to the output vector - * @param[in] numSamples number of complex samples in each vector - */ - void arm_cmplx_conj_f32( - float32_t * pSrc, - float32_t * pDst, - uint32_t numSamples); - - /** - * @brief Q31 complex conjugate. - * @param[in] pSrc points to the input vector - * @param[out] pDst points to the output vector - * @param[in] numSamples number of complex samples in each vector - */ - void arm_cmplx_conj_q31( - q31_t * pSrc, - q31_t * pDst, - uint32_t numSamples); - - - /** - * @brief Q15 complex conjugate. - * @param[in] pSrc points to the input vector - * @param[out] pDst points to the output vector - * @param[in] numSamples number of complex samples in each vector - */ - void arm_cmplx_conj_q15( - q15_t * pSrc, - q15_t * pDst, - uint32_t numSamples); - - - /** - * @brief Floating-point complex magnitude squared - * @param[in] pSrc points to the complex input vector - * @param[out] pDst points to the real output vector - * @param[in] numSamples number of complex samples in the input vector - */ - void arm_cmplx_mag_squared_f32( - float32_t * pSrc, - float32_t * pDst, - uint32_t numSamples); - - - /** - * @brief Q31 complex magnitude squared - * @param[in] pSrc points to the complex input vector - * @param[out] pDst points to the real output vector - * @param[in] numSamples number of complex samples in the input vector - */ - void arm_cmplx_mag_squared_q31( - q31_t * pSrc, - q31_t * pDst, - uint32_t numSamples); - - - /** - * @brief Q15 complex magnitude squared - * @param[in] pSrc points to the complex input vector - * @param[out] pDst points to the real output vector - * @param[in] numSamples number of complex samples in the input vector - */ - void arm_cmplx_mag_squared_q15( - q15_t * pSrc, - q15_t * pDst, - uint32_t numSamples); - - - /** - * @ingroup groupController - */ - - /** - * @defgroup PID PID Motor Control - * - * A Proportional Integral Derivative (PID) controller is a generic feedback control - * loop mechanism widely used in industrial control systems. - * A PID controller is the most commonly used type of feedback controller. - * - * This set of functions implements (PID) controllers - * for Q15, Q31, and floating-point data types. The functions operate on a single sample - * of data and each call to the function returns a single processed value. - * S points to an instance of the PID control data structure. in - * is the input sample value. The functions return the output value. - * - * \par Algorithm: - *
-   *    y[n] = y[n-1] + A0 * x[n] + A1 * x[n-1] + A2 * x[n-2]
-   *    A0 = Kp + Ki + Kd
-   *    A1 = (-Kp ) - (2 * Kd )
-   *    A2 = Kd  
- * - * \par - * where \c Kp is proportional constant, \c Ki is Integral constant and \c Kd is Derivative constant - * - * \par - * \image html PID.gif "Proportional Integral Derivative Controller" - * - * \par - * The PID controller calculates an "error" value as the difference between - * the measured output and the reference input. - * The controller attempts to minimize the error by adjusting the process control inputs. - * The proportional value determines the reaction to the current error, - * the integral value determines the reaction based on the sum of recent errors, - * and the derivative value determines the reaction based on the rate at which the error has been changing. - * - * \par Instance Structure - * The Gains A0, A1, A2 and state variables for a PID controller are stored together in an instance data structure. - * A separate instance structure must be defined for each PID Controller. - * There are separate instance structure declarations for each of the 3 supported data types. - * - * \par Reset Functions - * There is also an associated reset function for each data type which clears the state array. - * - * \par Initialization Functions - * There is also an associated initialization function for each data type. - * The initialization function performs the following operations: - * - Initializes the Gains A0, A1, A2 from Kp,Ki, Kd gains. - * - Zeros out the values in the state buffer. - * - * \par - * Instance structure cannot be placed into a const data section and it is recommended to use the initialization function. - * - * \par Fixed-Point Behavior - * Care must be taken when using the fixed-point versions of the PID Controller functions. - * In particular, the overflow and saturation behavior of the accumulator used in each function must be considered. - * Refer to the function specific documentation below for usage guidelines. - */ - - /** - * @addtogroup PID - * @{ - */ - - /** - * @brief Process function for the floating-point PID Control. - * @param[in,out] S is an instance of the floating-point PID Control structure - * @param[in] in input sample to process - * @return out processed output sample. - */ - CMSIS_INLINE __STATIC_INLINE float32_t arm_pid_f32( - arm_pid_instance_f32 * S, - float32_t in) - { - float32_t out; - - /* y[n] = y[n-1] + A0 * x[n] + A1 * x[n-1] + A2 * x[n-2] */ - out = (S->A0 * in) + - (S->A1 * S->state[0]) + (S->A2 * S->state[1]) + (S->state[2]); - - /* Update state */ - S->state[1] = S->state[0]; - S->state[0] = in; - S->state[2] = out; - - /* return to application */ - return (out); - - } - - /** - * @brief Process function for the Q31 PID Control. - * @param[in,out] S points to an instance of the Q31 PID Control structure - * @param[in] in input sample to process - * @return out processed output sample. - * - * Scaling and Overflow Behavior: - * \par - * The function is implemented using an internal 64-bit accumulator. - * The accumulator has a 2.62 format and maintains full precision of the intermediate multiplication results but provides only a single guard bit. - * Thus, if the accumulator result overflows it wraps around rather than clip. - * In order to avoid overflows completely the input signal must be scaled down by 2 bits as there are four additions. - * After all multiply-accumulates are performed, the 2.62 accumulator is truncated to 1.32 format and then saturated to 1.31 format. - */ - CMSIS_INLINE __STATIC_INLINE q31_t arm_pid_q31( - arm_pid_instance_q31 * S, - q31_t in) - { - q63_t acc; - q31_t out; - - /* acc = A0 * x[n] */ - acc = (q63_t) S->A0 * in; - - /* acc += A1 * x[n-1] */ - acc += (q63_t) S->A1 * S->state[0]; - - /* acc += A2 * x[n-2] */ - acc += (q63_t) S->A2 * S->state[1]; - - /* convert output to 1.31 format to add y[n-1] */ - out = (q31_t) (acc >> 31U); - - /* out += y[n-1] */ - out += S->state[2]; - - /* Update state */ - S->state[1] = S->state[0]; - S->state[0] = in; - S->state[2] = out; - - /* return to application */ - return (out); - } - - - /** - * @brief Process function for the Q15 PID Control. - * @param[in,out] S points to an instance of the Q15 PID Control structure - * @param[in] in input sample to process - * @return out processed output sample. - * - * Scaling and Overflow Behavior: - * \par - * The function is implemented using a 64-bit internal accumulator. - * Both Gains and state variables are represented in 1.15 format and multiplications yield a 2.30 result. - * The 2.30 intermediate results are accumulated in a 64-bit accumulator in 34.30 format. - * There is no risk of internal overflow with this approach and the full precision of intermediate multiplications is preserved. - * After all additions have been performed, the accumulator is truncated to 34.15 format by discarding low 15 bits. - * Lastly, the accumulator is saturated to yield a result in 1.15 format. - */ - CMSIS_INLINE __STATIC_INLINE q15_t arm_pid_q15( - arm_pid_instance_q15 * S, - q15_t in) - { - q63_t acc; - q15_t out; - -#if defined (ARM_MATH_DSP) - __SIMD32_TYPE *vstate; - - /* Implementation of PID controller */ - - /* acc = A0 * x[n] */ - acc = (q31_t) __SMUAD((uint32_t)S->A0, (uint32_t)in); - - /* acc += A1 * x[n-1] + A2 * x[n-2] */ - vstate = __SIMD32_CONST(S->state); - acc = (q63_t)__SMLALD((uint32_t)S->A1, (uint32_t)*vstate, (uint64_t)acc); -#else - /* acc = A0 * x[n] */ - acc = ((q31_t) S->A0) * in; - - /* acc += A1 * x[n-1] + A2 * x[n-2] */ - acc += (q31_t) S->A1 * S->state[0]; - acc += (q31_t) S->A2 * S->state[1]; -#endif - - /* acc += y[n-1] */ - acc += (q31_t) S->state[2] << 15; - - /* saturate the output */ - out = (q15_t) (__SSAT((acc >> 15), 16)); - - /* Update state */ - S->state[1] = S->state[0]; - S->state[0] = in; - S->state[2] = out; - - /* return to application */ - return (out); - } - - /** - * @} end of PID group - */ - - - /** - * @brief Floating-point matrix inverse. - * @param[in] src points to the instance of the input floating-point matrix structure. - * @param[out] dst points to the instance of the output floating-point matrix structure. - * @return The function returns ARM_MATH_SIZE_MISMATCH, if the dimensions do not match. - * If the input matrix is singular (does not have an inverse), then the algorithm terminates and returns error status ARM_MATH_SINGULAR. - */ - arm_status arm_mat_inverse_f32( - const arm_matrix_instance_f32 * src, - arm_matrix_instance_f32 * dst); - - - /** - * @brief Floating-point matrix inverse. - * @param[in] src points to the instance of the input floating-point matrix structure. - * @param[out] dst points to the instance of the output floating-point matrix structure. - * @return The function returns ARM_MATH_SIZE_MISMATCH, if the dimensions do not match. - * If the input matrix is singular (does not have an inverse), then the algorithm terminates and returns error status ARM_MATH_SINGULAR. - */ - arm_status arm_mat_inverse_f64( - const arm_matrix_instance_f64 * src, - arm_matrix_instance_f64 * dst); - - - - /** - * @ingroup groupController - */ - - /** - * @defgroup clarke Vector Clarke Transform - * Forward Clarke transform converts the instantaneous stator phases into a two-coordinate time invariant vector. - * Generally the Clarke transform uses three-phase currents Ia, Ib and Ic to calculate currents - * in the two-phase orthogonal stator axis Ialpha and Ibeta. - * When Ialpha is superposed with Ia as shown in the figure below - * \image html clarke.gif Stator current space vector and its components in (a,b). - * and Ia + Ib + Ic = 0, in this condition Ialpha and Ibeta - * can be calculated using only Ia and Ib. - * - * The function operates on a single sample of data and each call to the function returns the processed output. - * The library provides separate functions for Q31 and floating-point data types. - * \par Algorithm - * \image html clarkeFormula.gif - * where Ia and Ib are the instantaneous stator phases and - * pIalpha and pIbeta are the two coordinates of time invariant vector. - * \par Fixed-Point Behavior - * Care must be taken when using the Q31 version of the Clarke transform. - * In particular, the overflow and saturation behavior of the accumulator used must be considered. - * Refer to the function specific documentation below for usage guidelines. - */ - - /** - * @addtogroup clarke - * @{ - */ - - /** - * - * @brief Floating-point Clarke transform - * @param[in] Ia input three-phase coordinate a - * @param[in] Ib input three-phase coordinate b - * @param[out] pIalpha points to output two-phase orthogonal vector axis alpha - * @param[out] pIbeta points to output two-phase orthogonal vector axis beta - */ - CMSIS_INLINE __STATIC_INLINE void arm_clarke_f32( - float32_t Ia, - float32_t Ib, - float32_t * pIalpha, - float32_t * pIbeta) - { - /* Calculate pIalpha using the equation, pIalpha = Ia */ - *pIalpha = Ia; - - /* Calculate pIbeta using the equation, pIbeta = (1/sqrt(3)) * Ia + (2/sqrt(3)) * Ib */ - *pIbeta = ((float32_t) 0.57735026919 * Ia + (float32_t) 1.15470053838 * Ib); - } - - - /** - * @brief Clarke transform for Q31 version - * @param[in] Ia input three-phase coordinate a - * @param[in] Ib input three-phase coordinate b - * @param[out] pIalpha points to output two-phase orthogonal vector axis alpha - * @param[out] pIbeta points to output two-phase orthogonal vector axis beta - * - * Scaling and Overflow Behavior: - * \par - * The function is implemented using an internal 32-bit accumulator. - * The accumulator maintains 1.31 format by truncating lower 31 bits of the intermediate multiplication in 2.62 format. - * There is saturation on the addition, hence there is no risk of overflow. - */ - CMSIS_INLINE __STATIC_INLINE void arm_clarke_q31( - q31_t Ia, - q31_t Ib, - q31_t * pIalpha, - q31_t * pIbeta) - { - q31_t product1, product2; /* Temporary variables used to store intermediate results */ - - /* Calculating pIalpha from Ia by equation pIalpha = Ia */ - *pIalpha = Ia; - - /* Intermediate product is calculated by (1/(sqrt(3)) * Ia) */ - product1 = (q31_t) (((q63_t) Ia * 0x24F34E8B) >> 30); - - /* Intermediate product is calculated by (2/sqrt(3) * Ib) */ - product2 = (q31_t) (((q63_t) Ib * 0x49E69D16) >> 30); - - /* pIbeta is calculated by adding the intermediate products */ - *pIbeta = __QADD(product1, product2); - } - - /** - * @} end of clarke group - */ - - /** - * @brief Converts the elements of the Q7 vector to Q31 vector. - * @param[in] pSrc input pointer - * @param[out] pDst output pointer - * @param[in] blockSize number of samples to process - */ - void arm_q7_to_q31( - q7_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - - /** - * @ingroup groupController - */ - - /** - * @defgroup inv_clarke Vector Inverse Clarke Transform - * Inverse Clarke transform converts the two-coordinate time invariant vector into instantaneous stator phases. - * - * The function operates on a single sample of data and each call to the function returns the processed output. - * The library provides separate functions for Q31 and floating-point data types. - * \par Algorithm - * \image html clarkeInvFormula.gif - * where pIa and pIb are the instantaneous stator phases and - * Ialpha and Ibeta are the two coordinates of time invariant vector. - * \par Fixed-Point Behavior - * Care must be taken when using the Q31 version of the Clarke transform. - * In particular, the overflow and saturation behavior of the accumulator used must be considered. - * Refer to the function specific documentation below for usage guidelines. - */ - - /** - * @addtogroup inv_clarke - * @{ - */ - - /** - * @brief Floating-point Inverse Clarke transform - * @param[in] Ialpha input two-phase orthogonal vector axis alpha - * @param[in] Ibeta input two-phase orthogonal vector axis beta - * @param[out] pIa points to output three-phase coordinate a - * @param[out] pIb points to output three-phase coordinate b - */ - CMSIS_INLINE __STATIC_INLINE void arm_inv_clarke_f32( - float32_t Ialpha, - float32_t Ibeta, - float32_t * pIa, - float32_t * pIb) - { - /* Calculating pIa from Ialpha by equation pIa = Ialpha */ - *pIa = Ialpha; - - /* Calculating pIb from Ialpha and Ibeta by equation pIb = -(1/2) * Ialpha + (sqrt(3)/2) * Ibeta */ - *pIb = -0.5f * Ialpha + 0.8660254039f * Ibeta; - } - - - /** - * @brief Inverse Clarke transform for Q31 version - * @param[in] Ialpha input two-phase orthogonal vector axis alpha - * @param[in] Ibeta input two-phase orthogonal vector axis beta - * @param[out] pIa points to output three-phase coordinate a - * @param[out] pIb points to output three-phase coordinate b - * - * Scaling and Overflow Behavior: - * \par - * The function is implemented using an internal 32-bit accumulator. - * The accumulator maintains 1.31 format by truncating lower 31 bits of the intermediate multiplication in 2.62 format. - * There is saturation on the subtraction, hence there is no risk of overflow. - */ - CMSIS_INLINE __STATIC_INLINE void arm_inv_clarke_q31( - q31_t Ialpha, - q31_t Ibeta, - q31_t * pIa, - q31_t * pIb) - { - q31_t product1, product2; /* Temporary variables used to store intermediate results */ - - /* Calculating pIa from Ialpha by equation pIa = Ialpha */ - *pIa = Ialpha; - - /* Intermediate product is calculated by (1/(2*sqrt(3)) * Ia) */ - product1 = (q31_t) (((q63_t) (Ialpha) * (0x40000000)) >> 31); - - /* Intermediate product is calculated by (1/sqrt(3) * pIb) */ - product2 = (q31_t) (((q63_t) (Ibeta) * (0x6ED9EBA1)) >> 31); - - /* pIb is calculated by subtracting the products */ - *pIb = __QSUB(product2, product1); - } - - /** - * @} end of inv_clarke group - */ - - /** - * @brief Converts the elements of the Q7 vector to Q15 vector. - * @param[in] pSrc input pointer - * @param[out] pDst output pointer - * @param[in] blockSize number of samples to process - */ - void arm_q7_to_q15( - q7_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - - /** - * @ingroup groupController - */ - - /** - * @defgroup park Vector Park Transform - * - * Forward Park transform converts the input two-coordinate vector to flux and torque components. - * The Park transform can be used to realize the transformation of the Ialpha and the Ibeta currents - * from the stationary to the moving reference frame and control the spatial relationship between - * the stator vector current and rotor flux vector. - * If we consider the d axis aligned with the rotor flux, the diagram below shows the - * current vector and the relationship from the two reference frames: - * \image html park.gif "Stator current space vector and its component in (a,b) and in the d,q rotating reference frame" - * - * The function operates on a single sample of data and each call to the function returns the processed output. - * The library provides separate functions for Q31 and floating-point data types. - * \par Algorithm - * \image html parkFormula.gif - * where Ialpha and Ibeta are the stator vector components, - * pId and pIq are rotor vector components and cosVal and sinVal are the - * cosine and sine values of theta (rotor flux position). - * \par Fixed-Point Behavior - * Care must be taken when using the Q31 version of the Park transform. - * In particular, the overflow and saturation behavior of the accumulator used must be considered. - * Refer to the function specific documentation below for usage guidelines. - */ - - /** - * @addtogroup park - * @{ - */ - - /** - * @brief Floating-point Park transform - * @param[in] Ialpha input two-phase vector coordinate alpha - * @param[in] Ibeta input two-phase vector coordinate beta - * @param[out] pId points to output rotor reference frame d - * @param[out] pIq points to output rotor reference frame q - * @param[in] sinVal sine value of rotation angle theta - * @param[in] cosVal cosine value of rotation angle theta - * - * The function implements the forward Park transform. - * - */ - CMSIS_INLINE __STATIC_INLINE void arm_park_f32( - float32_t Ialpha, - float32_t Ibeta, - float32_t * pId, - float32_t * pIq, - float32_t sinVal, - float32_t cosVal) - { - /* Calculate pId using the equation, pId = Ialpha * cosVal + Ibeta * sinVal */ - *pId = Ialpha * cosVal + Ibeta * sinVal; - - /* Calculate pIq using the equation, pIq = - Ialpha * sinVal + Ibeta * cosVal */ - *pIq = -Ialpha * sinVal + Ibeta * cosVal; - } - - - /** - * @brief Park transform for Q31 version - * @param[in] Ialpha input two-phase vector coordinate alpha - * @param[in] Ibeta input two-phase vector coordinate beta - * @param[out] pId points to output rotor reference frame d - * @param[out] pIq points to output rotor reference frame q - * @param[in] sinVal sine value of rotation angle theta - * @param[in] cosVal cosine value of rotation angle theta - * - * Scaling and Overflow Behavior: - * \par - * The function is implemented using an internal 32-bit accumulator. - * The accumulator maintains 1.31 format by truncating lower 31 bits of the intermediate multiplication in 2.62 format. - * There is saturation on the addition and subtraction, hence there is no risk of overflow. - */ - CMSIS_INLINE __STATIC_INLINE void arm_park_q31( - q31_t Ialpha, - q31_t Ibeta, - q31_t * pId, - q31_t * pIq, - q31_t sinVal, - q31_t cosVal) - { - q31_t product1, product2; /* Temporary variables used to store intermediate results */ - q31_t product3, product4; /* Temporary variables used to store intermediate results */ - - /* Intermediate product is calculated by (Ialpha * cosVal) */ - product1 = (q31_t) (((q63_t) (Ialpha) * (cosVal)) >> 31); - - /* Intermediate product is calculated by (Ibeta * sinVal) */ - product2 = (q31_t) (((q63_t) (Ibeta) * (sinVal)) >> 31); - - - /* Intermediate product is calculated by (Ialpha * sinVal) */ - product3 = (q31_t) (((q63_t) (Ialpha) * (sinVal)) >> 31); - - /* Intermediate product is calculated by (Ibeta * cosVal) */ - product4 = (q31_t) (((q63_t) (Ibeta) * (cosVal)) >> 31); - - /* Calculate pId by adding the two intermediate products 1 and 2 */ - *pId = __QADD(product1, product2); - - /* Calculate pIq by subtracting the two intermediate products 3 from 4 */ - *pIq = __QSUB(product4, product3); - } - - /** - * @} end of park group - */ - - /** - * @brief Converts the elements of the Q7 vector to floating-point vector. - * @param[in] pSrc is input pointer - * @param[out] pDst is output pointer - * @param[in] blockSize is the number of samples to process - */ - void arm_q7_to_float( - q7_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @ingroup groupController - */ - - /** - * @defgroup inv_park Vector Inverse Park transform - * Inverse Park transform converts the input flux and torque components to two-coordinate vector. - * - * The function operates on a single sample of data and each call to the function returns the processed output. - * The library provides separate functions for Q31 and floating-point data types. - * \par Algorithm - * \image html parkInvFormula.gif - * where pIalpha and pIbeta are the stator vector components, - * Id and Iq are rotor vector components and cosVal and sinVal are the - * cosine and sine values of theta (rotor flux position). - * \par Fixed-Point Behavior - * Care must be taken when using the Q31 version of the Park transform. - * In particular, the overflow and saturation behavior of the accumulator used must be considered. - * Refer to the function specific documentation below for usage guidelines. - */ - - /** - * @addtogroup inv_park - * @{ - */ - - /** - * @brief Floating-point Inverse Park transform - * @param[in] Id input coordinate of rotor reference frame d - * @param[in] Iq input coordinate of rotor reference frame q - * @param[out] pIalpha points to output two-phase orthogonal vector axis alpha - * @param[out] pIbeta points to output two-phase orthogonal vector axis beta - * @param[in] sinVal sine value of rotation angle theta - * @param[in] cosVal cosine value of rotation angle theta - */ - CMSIS_INLINE __STATIC_INLINE void arm_inv_park_f32( - float32_t Id, - float32_t Iq, - float32_t * pIalpha, - float32_t * pIbeta, - float32_t sinVal, - float32_t cosVal) - { - /* Calculate pIalpha using the equation, pIalpha = Id * cosVal - Iq * sinVal */ - *pIalpha = Id * cosVal - Iq * sinVal; - - /* Calculate pIbeta using the equation, pIbeta = Id * sinVal + Iq * cosVal */ - *pIbeta = Id * sinVal + Iq * cosVal; - } - - - /** - * @brief Inverse Park transform for Q31 version - * @param[in] Id input coordinate of rotor reference frame d - * @param[in] Iq input coordinate of rotor reference frame q - * @param[out] pIalpha points to output two-phase orthogonal vector axis alpha - * @param[out] pIbeta points to output two-phase orthogonal vector axis beta - * @param[in] sinVal sine value of rotation angle theta - * @param[in] cosVal cosine value of rotation angle theta - * - * Scaling and Overflow Behavior: - * \par - * The function is implemented using an internal 32-bit accumulator. - * The accumulator maintains 1.31 format by truncating lower 31 bits of the intermediate multiplication in 2.62 format. - * There is saturation on the addition, hence there is no risk of overflow. - */ - CMSIS_INLINE __STATIC_INLINE void arm_inv_park_q31( - q31_t Id, - q31_t Iq, - q31_t * pIalpha, - q31_t * pIbeta, - q31_t sinVal, - q31_t cosVal) - { - q31_t product1, product2; /* Temporary variables used to store intermediate results */ - q31_t product3, product4; /* Temporary variables used to store intermediate results */ - - /* Intermediate product is calculated by (Id * cosVal) */ - product1 = (q31_t) (((q63_t) (Id) * (cosVal)) >> 31); - - /* Intermediate product is calculated by (Iq * sinVal) */ - product2 = (q31_t) (((q63_t) (Iq) * (sinVal)) >> 31); - - - /* Intermediate product is calculated by (Id * sinVal) */ - product3 = (q31_t) (((q63_t) (Id) * (sinVal)) >> 31); - - /* Intermediate product is calculated by (Iq * cosVal) */ - product4 = (q31_t) (((q63_t) (Iq) * (cosVal)) >> 31); - - /* Calculate pIalpha by using the two intermediate products 1 and 2 */ - *pIalpha = __QSUB(product1, product2); - - /* Calculate pIbeta by using the two intermediate products 3 and 4 */ - *pIbeta = __QADD(product4, product3); - } - - /** - * @} end of Inverse park group - */ - - - /** - * @brief Converts the elements of the Q31 vector to floating-point vector. - * @param[in] pSrc is input pointer - * @param[out] pDst is output pointer - * @param[in] blockSize is the number of samples to process - */ - void arm_q31_to_float( - q31_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - /** - * @ingroup groupInterpolation - */ - - /** - * @defgroup LinearInterpolate Linear Interpolation - * - * Linear interpolation is a method of curve fitting using linear polynomials. - * Linear interpolation works by effectively drawing a straight line between two neighboring samples and returning the appropriate point along that line - * - * \par - * \image html LinearInterp.gif "Linear interpolation" - * - * \par - * A Linear Interpolate function calculates an output value(y), for the input(x) - * using linear interpolation of the input values x0, x1( nearest input values) and the output values y0 and y1(nearest output values) - * - * \par Algorithm: - *
-   *       y = y0 + (x - x0) * ((y1 - y0)/(x1-x0))
-   *       where x0, x1 are nearest values of input x
-   *             y0, y1 are nearest values to output y
-   * 
- * - * \par - * This set of functions implements Linear interpolation process - * for Q7, Q15, Q31, and floating-point data types. The functions operate on a single - * sample of data and each call to the function returns a single processed value. - * S points to an instance of the Linear Interpolate function data structure. - * x is the input sample value. The functions returns the output value. - * - * \par - * if x is outside of the table boundary, Linear interpolation returns first value of the table - * if x is below input range and returns last value of table if x is above range. - */ - - /** - * @addtogroup LinearInterpolate - * @{ - */ - - /** - * @brief Process function for the floating-point Linear Interpolation Function. - * @param[in,out] S is an instance of the floating-point Linear Interpolation structure - * @param[in] x input sample to process - * @return y processed output sample. - * - */ - CMSIS_INLINE __STATIC_INLINE float32_t arm_linear_interp_f32( - arm_linear_interp_instance_f32 * S, - float32_t x) - { - float32_t y; - float32_t x0, x1; /* Nearest input values */ - float32_t y0, y1; /* Nearest output values */ - float32_t xSpacing = S->xSpacing; /* spacing between input values */ - int32_t i; /* Index variable */ - float32_t *pYData = S->pYData; /* pointer to output table */ - - /* Calculation of index */ - i = (int32_t) ((x - S->x1) / xSpacing); - - if (i < 0) - { - /* Iniatilize output for below specified range as least output value of table */ - y = pYData[0]; - } - else if ((uint32_t)i >= S->nValues) - { - /* Iniatilize output for above specified range as last output value of table */ - y = pYData[S->nValues - 1]; - } - else - { - /* Calculation of nearest input values */ - x0 = S->x1 + i * xSpacing; - x1 = S->x1 + (i + 1) * xSpacing; - - /* Read of nearest output values */ - y0 = pYData[i]; - y1 = pYData[i + 1]; - - /* Calculation of output */ - y = y0 + (x - x0) * ((y1 - y0) / (x1 - x0)); - - } - - /* returns output value */ - return (y); - } - - - /** - * - * @brief Process function for the Q31 Linear Interpolation Function. - * @param[in] pYData pointer to Q31 Linear Interpolation table - * @param[in] x input sample to process - * @param[in] nValues number of table values - * @return y processed output sample. - * - * \par - * Input sample x is in 12.20 format which contains 12 bits for table index and 20 bits for fractional part. - * This function can support maximum of table size 2^12. - * - */ - CMSIS_INLINE __STATIC_INLINE q31_t arm_linear_interp_q31( - q31_t * pYData, - q31_t x, - uint32_t nValues) - { - q31_t y; /* output */ - q31_t y0, y1; /* Nearest output values */ - q31_t fract; /* fractional part */ - int32_t index; /* Index to read nearest output values */ - - /* Input is in 12.20 format */ - /* 12 bits for the table index */ - /* Index value calculation */ - index = ((x & (q31_t)0xFFF00000) >> 20); - - if (index >= (int32_t)(nValues - 1)) - { - return (pYData[nValues - 1]); - } - else if (index < 0) - { - return (pYData[0]); - } - else - { - /* 20 bits for the fractional part */ - /* shift left by 11 to keep fract in 1.31 format */ - fract = (x & 0x000FFFFF) << 11; - - /* Read two nearest output values from the index in 1.31(q31) format */ - y0 = pYData[index]; - y1 = pYData[index + 1]; - - /* Calculation of y0 * (1-fract) and y is in 2.30 format */ - y = ((q31_t) ((q63_t) y0 * (0x7FFFFFFF - fract) >> 32)); - - /* Calculation of y0 * (1-fract) + y1 *fract and y is in 2.30 format */ - y += ((q31_t) (((q63_t) y1 * fract) >> 32)); - - /* Convert y to 1.31 format */ - return (y << 1U); - } - } - - - /** - * - * @brief Process function for the Q15 Linear Interpolation Function. - * @param[in] pYData pointer to Q15 Linear Interpolation table - * @param[in] x input sample to process - * @param[in] nValues number of table values - * @return y processed output sample. - * - * \par - * Input sample x is in 12.20 format which contains 12 bits for table index and 20 bits for fractional part. - * This function can support maximum of table size 2^12. - * - */ - CMSIS_INLINE __STATIC_INLINE q15_t arm_linear_interp_q15( - q15_t * pYData, - q31_t x, - uint32_t nValues) - { - q63_t y; /* output */ - q15_t y0, y1; /* Nearest output values */ - q31_t fract; /* fractional part */ - int32_t index; /* Index to read nearest output values */ - - /* Input is in 12.20 format */ - /* 12 bits for the table index */ - /* Index value calculation */ - index = ((x & (int32_t)0xFFF00000) >> 20); - - if (index >= (int32_t)(nValues - 1)) - { - return (pYData[nValues - 1]); - } - else if (index < 0) - { - return (pYData[0]); - } - else - { - /* 20 bits for the fractional part */ - /* fract is in 12.20 format */ - fract = (x & 0x000FFFFF); - - /* Read two nearest output values from the index */ - y0 = pYData[index]; - y1 = pYData[index + 1]; - - /* Calculation of y0 * (1-fract) and y is in 13.35 format */ - y = ((q63_t) y0 * (0xFFFFF - fract)); - - /* Calculation of (y0 * (1-fract) + y1 * fract) and y is in 13.35 format */ - y += ((q63_t) y1 * (fract)); - - /* convert y to 1.15 format */ - return (q15_t) (y >> 20); - } - } - - - /** - * - * @brief Process function for the Q7 Linear Interpolation Function. - * @param[in] pYData pointer to Q7 Linear Interpolation table - * @param[in] x input sample to process - * @param[in] nValues number of table values - * @return y processed output sample. - * - * \par - * Input sample x is in 12.20 format which contains 12 bits for table index and 20 bits for fractional part. - * This function can support maximum of table size 2^12. - */ - CMSIS_INLINE __STATIC_INLINE q7_t arm_linear_interp_q7( - q7_t * pYData, - q31_t x, - uint32_t nValues) - { - q31_t y; /* output */ - q7_t y0, y1; /* Nearest output values */ - q31_t fract; /* fractional part */ - uint32_t index; /* Index to read nearest output values */ - - /* Input is in 12.20 format */ - /* 12 bits for the table index */ - /* Index value calculation */ - if (x < 0) - { - return (pYData[0]); - } - index = (x >> 20) & 0xfff; - - if (index >= (nValues - 1)) - { - return (pYData[nValues - 1]); - } - else - { - /* 20 bits for the fractional part */ - /* fract is in 12.20 format */ - fract = (x & 0x000FFFFF); - - /* Read two nearest output values from the index and are in 1.7(q7) format */ - y0 = pYData[index]; - y1 = pYData[index + 1]; - - /* Calculation of y0 * (1-fract ) and y is in 13.27(q27) format */ - y = ((y0 * (0xFFFFF - fract))); - - /* Calculation of y1 * fract + y0 * (1-fract) and y is in 13.27(q27) format */ - y += (y1 * fract); - - /* convert y to 1.7(q7) format */ - return (q7_t) (y >> 20); - } - } - - /** - * @} end of LinearInterpolate group - */ - - /** - * @brief Fast approximation to the trigonometric sine function for floating-point data. - * @param[in] x input value in radians. - * @return sin(x). - */ - float32_t arm_sin_f32( - float32_t x); - - - /** - * @brief Fast approximation to the trigonometric sine function for Q31 data. - * @param[in] x Scaled input value in radians. - * @return sin(x). - */ - q31_t arm_sin_q31( - q31_t x); - - - /** - * @brief Fast approximation to the trigonometric sine function for Q15 data. - * @param[in] x Scaled input value in radians. - * @return sin(x). - */ - q15_t arm_sin_q15( - q15_t x); - - - /** - * @brief Fast approximation to the trigonometric cosine function for floating-point data. - * @param[in] x input value in radians. - * @return cos(x). - */ - float32_t arm_cos_f32( - float32_t x); - - - /** - * @brief Fast approximation to the trigonometric cosine function for Q31 data. - * @param[in] x Scaled input value in radians. - * @return cos(x). - */ - q31_t arm_cos_q31( - q31_t x); - - - /** - * @brief Fast approximation to the trigonometric cosine function for Q15 data. - * @param[in] x Scaled input value in radians. - * @return cos(x). - */ - q15_t arm_cos_q15( - q15_t x); - - - /** - * @ingroup groupFastMath - */ - - - /** - * @defgroup SQRT Square Root - * - * Computes the square root of a number. - * There are separate functions for Q15, Q31, and floating-point data types. - * The square root function is computed using the Newton-Raphson algorithm. - * This is an iterative algorithm of the form: - *
-   *      x1 = x0 - f(x0)/f'(x0)
-   * 
- * where x1 is the current estimate, - * x0 is the previous estimate, and - * f'(x0) is the derivative of f() evaluated at x0. - * For the square root function, the algorithm reduces to: - *
-   *     x0 = in/2                         [initial guess]
-   *     x1 = 1/2 * ( x0 + in / x0)        [each iteration]
-   * 
- */ - - - /** - * @addtogroup SQRT - * @{ - */ - - /** - * @brief Floating-point square root function. - * @param[in] in input value. - * @param[out] pOut square root of input value. - * @return The function returns ARM_MATH_SUCCESS if input value is positive value or ARM_MATH_ARGUMENT_ERROR if - * in is negative value and returns zero output for negative values. - */ - CMSIS_INLINE __STATIC_INLINE arm_status arm_sqrt_f32( - float32_t in, - float32_t * pOut) - { - if (in >= 0.0f) - { - -#if (__FPU_USED == 1) && defined ( __CC_ARM ) - *pOut = __sqrtf(in); -#elif (__FPU_USED == 1) && (defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050)) - *pOut = __builtin_sqrtf(in); -#elif (__FPU_USED == 1) && defined(__GNUC__) - *pOut = __builtin_sqrtf(in); -#elif (__FPU_USED == 1) && defined ( __ICCARM__ ) && (__VER__ >= 6040000) - __ASM("VSQRT.F32 %0,%1" : "=t"(*pOut) : "t"(in)); -#else - *pOut = sqrtf(in); -#endif - - return (ARM_MATH_SUCCESS); - } - else - { - *pOut = 0.0f; - return (ARM_MATH_ARGUMENT_ERROR); - } - } - - - /** - * @brief Q31 square root function. - * @param[in] in input value. The range of the input value is [0 +1) or 0x00000000 to 0x7FFFFFFF. - * @param[out] pOut square root of input value. - * @return The function returns ARM_MATH_SUCCESS if input value is positive value or ARM_MATH_ARGUMENT_ERROR if - * in is negative value and returns zero output for negative values. - */ - arm_status arm_sqrt_q31( - q31_t in, - q31_t * pOut); - - - /** - * @brief Q15 square root function. - * @param[in] in input value. The range of the input value is [0 +1) or 0x0000 to 0x7FFF. - * @param[out] pOut square root of input value. - * @return The function returns ARM_MATH_SUCCESS if input value is positive value or ARM_MATH_ARGUMENT_ERROR if - * in is negative value and returns zero output for negative values. - */ - arm_status arm_sqrt_q15( - q15_t in, - q15_t * pOut); - - /** - * @} end of SQRT group - */ - - - /** - * @brief floating-point Circular write function. - */ - CMSIS_INLINE __STATIC_INLINE void arm_circularWrite_f32( - int32_t * circBuffer, - int32_t L, - uint16_t * writeOffset, - int32_t bufferInc, - const int32_t * src, - int32_t srcInc, - uint32_t blockSize) - { - uint32_t i = 0U; - int32_t wOffset; - - /* Copy the value of Index pointer that points - * to the current location where the input samples to be copied */ - wOffset = *writeOffset; - - /* Loop over the blockSize */ - i = blockSize; - - while (i > 0U) - { - /* copy the input sample to the circular buffer */ - circBuffer[wOffset] = *src; - - /* Update the input pointer */ - src += srcInc; - - /* Circularly update wOffset. Watch out for positive and negative value */ - wOffset += bufferInc; - if (wOffset >= L) - wOffset -= L; - - /* Decrement the loop counter */ - i--; - } - - /* Update the index pointer */ - *writeOffset = (uint16_t)wOffset; - } - - - - /** - * @brief floating-point Circular Read function. - */ - CMSIS_INLINE __STATIC_INLINE void arm_circularRead_f32( - int32_t * circBuffer, - int32_t L, - int32_t * readOffset, - int32_t bufferInc, - int32_t * dst, - int32_t * dst_base, - int32_t dst_length, - int32_t dstInc, - uint32_t blockSize) - { - uint32_t i = 0U; - int32_t rOffset, dst_end; - - /* Copy the value of Index pointer that points - * to the current location from where the input samples to be read */ - rOffset = *readOffset; - dst_end = (int32_t) (dst_base + dst_length); - - /* Loop over the blockSize */ - i = blockSize; - - while (i > 0U) - { - /* copy the sample from the circular buffer to the destination buffer */ - *dst = circBuffer[rOffset]; - - /* Update the input pointer */ - dst += dstInc; - - if (dst == (int32_t *) dst_end) - { - dst = dst_base; - } - - /* Circularly update rOffset. Watch out for positive and negative value */ - rOffset += bufferInc; - - if (rOffset >= L) - { - rOffset -= L; - } - - /* Decrement the loop counter */ - i--; - } - - /* Update the index pointer */ - *readOffset = rOffset; - } - - - /** - * @brief Q15 Circular write function. - */ - CMSIS_INLINE __STATIC_INLINE void arm_circularWrite_q15( - q15_t * circBuffer, - int32_t L, - uint16_t * writeOffset, - int32_t bufferInc, - const q15_t * src, - int32_t srcInc, - uint32_t blockSize) - { - uint32_t i = 0U; - int32_t wOffset; - - /* Copy the value of Index pointer that points - * to the current location where the input samples to be copied */ - wOffset = *writeOffset; - - /* Loop over the blockSize */ - i = blockSize; - - while (i > 0U) - { - /* copy the input sample to the circular buffer */ - circBuffer[wOffset] = *src; - - /* Update the input pointer */ - src += srcInc; - - /* Circularly update wOffset. Watch out for positive and negative value */ - wOffset += bufferInc; - if (wOffset >= L) - wOffset -= L; - - /* Decrement the loop counter */ - i--; - } - - /* Update the index pointer */ - *writeOffset = (uint16_t)wOffset; - } - - - /** - * @brief Q15 Circular Read function. - */ - CMSIS_INLINE __STATIC_INLINE void arm_circularRead_q15( - q15_t * circBuffer, - int32_t L, - int32_t * readOffset, - int32_t bufferInc, - q15_t * dst, - q15_t * dst_base, - int32_t dst_length, - int32_t dstInc, - uint32_t blockSize) - { - uint32_t i = 0; - int32_t rOffset, dst_end; - - /* Copy the value of Index pointer that points - * to the current location from where the input samples to be read */ - rOffset = *readOffset; - - dst_end = (int32_t) (dst_base + dst_length); - - /* Loop over the blockSize */ - i = blockSize; - - while (i > 0U) - { - /* copy the sample from the circular buffer to the destination buffer */ - *dst = circBuffer[rOffset]; - - /* Update the input pointer */ - dst += dstInc; - - if (dst == (q15_t *) dst_end) - { - dst = dst_base; - } - - /* Circularly update wOffset. Watch out for positive and negative value */ - rOffset += bufferInc; - - if (rOffset >= L) - { - rOffset -= L; - } - - /* Decrement the loop counter */ - i--; - } - - /* Update the index pointer */ - *readOffset = rOffset; - } - - - /** - * @brief Q7 Circular write function. - */ - CMSIS_INLINE __STATIC_INLINE void arm_circularWrite_q7( - q7_t * circBuffer, - int32_t L, - uint16_t * writeOffset, - int32_t bufferInc, - const q7_t * src, - int32_t srcInc, - uint32_t blockSize) - { - uint32_t i = 0U; - int32_t wOffset; - - /* Copy the value of Index pointer that points - * to the current location where the input samples to be copied */ - wOffset = *writeOffset; - - /* Loop over the blockSize */ - i = blockSize; - - while (i > 0U) - { - /* copy the input sample to the circular buffer */ - circBuffer[wOffset] = *src; - - /* Update the input pointer */ - src += srcInc; - - /* Circularly update wOffset. Watch out for positive and negative value */ - wOffset += bufferInc; - if (wOffset >= L) - wOffset -= L; - - /* Decrement the loop counter */ - i--; - } - - /* Update the index pointer */ - *writeOffset = (uint16_t)wOffset; - } - - - /** - * @brief Q7 Circular Read function. - */ - CMSIS_INLINE __STATIC_INLINE void arm_circularRead_q7( - q7_t * circBuffer, - int32_t L, - int32_t * readOffset, - int32_t bufferInc, - q7_t * dst, - q7_t * dst_base, - int32_t dst_length, - int32_t dstInc, - uint32_t blockSize) - { - uint32_t i = 0; - int32_t rOffset, dst_end; - - /* Copy the value of Index pointer that points - * to the current location from where the input samples to be read */ - rOffset = *readOffset; - - dst_end = (int32_t) (dst_base + dst_length); - - /* Loop over the blockSize */ - i = blockSize; - - while (i > 0U) - { - /* copy the sample from the circular buffer to the destination buffer */ - *dst = circBuffer[rOffset]; - - /* Update the input pointer */ - dst += dstInc; - - if (dst == (q7_t *) dst_end) - { - dst = dst_base; - } - - /* Circularly update rOffset. Watch out for positive and negative value */ - rOffset += bufferInc; - - if (rOffset >= L) - { - rOffset -= L; - } - - /* Decrement the loop counter */ - i--; - } - - /* Update the index pointer */ - *readOffset = rOffset; - } - - - /** - * @brief Sum of the squares of the elements of a Q31 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_power_q31( - q31_t * pSrc, - uint32_t blockSize, - q63_t * pResult); - - - /** - * @brief Sum of the squares of the elements of a floating-point vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_power_f32( - float32_t * pSrc, - uint32_t blockSize, - float32_t * pResult); - - - /** - * @brief Sum of the squares of the elements of a Q15 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_power_q15( - q15_t * pSrc, - uint32_t blockSize, - q63_t * pResult); - - - /** - * @brief Sum of the squares of the elements of a Q7 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_power_q7( - q7_t * pSrc, - uint32_t blockSize, - q31_t * pResult); - - - /** - * @brief Mean value of a Q7 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_mean_q7( - q7_t * pSrc, - uint32_t blockSize, - q7_t * pResult); - - - /** - * @brief Mean value of a Q15 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_mean_q15( - q15_t * pSrc, - uint32_t blockSize, - q15_t * pResult); - - - /** - * @brief Mean value of a Q31 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_mean_q31( - q31_t * pSrc, - uint32_t blockSize, - q31_t * pResult); - - - /** - * @brief Mean value of a floating-point vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_mean_f32( - float32_t * pSrc, - uint32_t blockSize, - float32_t * pResult); - - - /** - * @brief Variance of the elements of a floating-point vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_var_f32( - float32_t * pSrc, - uint32_t blockSize, - float32_t * pResult); - - - /** - * @brief Variance of the elements of a Q31 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_var_q31( - q31_t * pSrc, - uint32_t blockSize, - q31_t * pResult); - - - /** - * @brief Variance of the elements of a Q15 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_var_q15( - q15_t * pSrc, - uint32_t blockSize, - q15_t * pResult); - - - /** - * @brief Root Mean Square of the elements of a floating-point vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_rms_f32( - float32_t * pSrc, - uint32_t blockSize, - float32_t * pResult); - - - /** - * @brief Root Mean Square of the elements of a Q31 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_rms_q31( - q31_t * pSrc, - uint32_t blockSize, - q31_t * pResult); - - - /** - * @brief Root Mean Square of the elements of a Q15 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_rms_q15( - q15_t * pSrc, - uint32_t blockSize, - q15_t * pResult); - - - /** - * @brief Standard deviation of the elements of a floating-point vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_std_f32( - float32_t * pSrc, - uint32_t blockSize, - float32_t * pResult); - - - /** - * @brief Standard deviation of the elements of a Q31 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_std_q31( - q31_t * pSrc, - uint32_t blockSize, - q31_t * pResult); - - - /** - * @brief Standard deviation of the elements of a Q15 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output value. - */ - void arm_std_q15( - q15_t * pSrc, - uint32_t blockSize, - q15_t * pResult); - - - /** - * @brief Floating-point complex magnitude - * @param[in] pSrc points to the complex input vector - * @param[out] pDst points to the real output vector - * @param[in] numSamples number of complex samples in the input vector - */ - void arm_cmplx_mag_f32( - float32_t * pSrc, - float32_t * pDst, - uint32_t numSamples); - - - /** - * @brief Q31 complex magnitude - * @param[in] pSrc points to the complex input vector - * @param[out] pDst points to the real output vector - * @param[in] numSamples number of complex samples in the input vector - */ - void arm_cmplx_mag_q31( - q31_t * pSrc, - q31_t * pDst, - uint32_t numSamples); - - - /** - * @brief Q15 complex magnitude - * @param[in] pSrc points to the complex input vector - * @param[out] pDst points to the real output vector - * @param[in] numSamples number of complex samples in the input vector - */ - void arm_cmplx_mag_q15( - q15_t * pSrc, - q15_t * pDst, - uint32_t numSamples); - - - /** - * @brief Q15 complex dot product - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[in] numSamples number of complex samples in each vector - * @param[out] realResult real part of the result returned here - * @param[out] imagResult imaginary part of the result returned here - */ - void arm_cmplx_dot_prod_q15( - q15_t * pSrcA, - q15_t * pSrcB, - uint32_t numSamples, - q31_t * realResult, - q31_t * imagResult); - - - /** - * @brief Q31 complex dot product - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[in] numSamples number of complex samples in each vector - * @param[out] realResult real part of the result returned here - * @param[out] imagResult imaginary part of the result returned here - */ - void arm_cmplx_dot_prod_q31( - q31_t * pSrcA, - q31_t * pSrcB, - uint32_t numSamples, - q63_t * realResult, - q63_t * imagResult); - - - /** - * @brief Floating-point complex dot product - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[in] numSamples number of complex samples in each vector - * @param[out] realResult real part of the result returned here - * @param[out] imagResult imaginary part of the result returned here - */ - void arm_cmplx_dot_prod_f32( - float32_t * pSrcA, - float32_t * pSrcB, - uint32_t numSamples, - float32_t * realResult, - float32_t * imagResult); - - - /** - * @brief Q15 complex-by-real multiplication - * @param[in] pSrcCmplx points to the complex input vector - * @param[in] pSrcReal points to the real input vector - * @param[out] pCmplxDst points to the complex output vector - * @param[in] numSamples number of samples in each vector - */ - void arm_cmplx_mult_real_q15( - q15_t * pSrcCmplx, - q15_t * pSrcReal, - q15_t * pCmplxDst, - uint32_t numSamples); - - - /** - * @brief Q31 complex-by-real multiplication - * @param[in] pSrcCmplx points to the complex input vector - * @param[in] pSrcReal points to the real input vector - * @param[out] pCmplxDst points to the complex output vector - * @param[in] numSamples number of samples in each vector - */ - void arm_cmplx_mult_real_q31( - q31_t * pSrcCmplx, - q31_t * pSrcReal, - q31_t * pCmplxDst, - uint32_t numSamples); - - - /** - * @brief Floating-point complex-by-real multiplication - * @param[in] pSrcCmplx points to the complex input vector - * @param[in] pSrcReal points to the real input vector - * @param[out] pCmplxDst points to the complex output vector - * @param[in] numSamples number of samples in each vector - */ - void arm_cmplx_mult_real_f32( - float32_t * pSrcCmplx, - float32_t * pSrcReal, - float32_t * pCmplxDst, - uint32_t numSamples); - - - /** - * @brief Minimum value of a Q7 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] result is output pointer - * @param[in] index is the array index of the minimum value in the input buffer. - */ - void arm_min_q7( - q7_t * pSrc, - uint32_t blockSize, - q7_t * result, - uint32_t * index); - - - /** - * @brief Minimum value of a Q15 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output pointer - * @param[in] pIndex is the array index of the minimum value in the input buffer. - */ - void arm_min_q15( - q15_t * pSrc, - uint32_t blockSize, - q15_t * pResult, - uint32_t * pIndex); - - - /** - * @brief Minimum value of a Q31 vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output pointer - * @param[out] pIndex is the array index of the minimum value in the input buffer. - */ - void arm_min_q31( - q31_t * pSrc, - uint32_t blockSize, - q31_t * pResult, - uint32_t * pIndex); - - - /** - * @brief Minimum value of a floating-point vector. - * @param[in] pSrc is input pointer - * @param[in] blockSize is the number of samples to process - * @param[out] pResult is output pointer - * @param[out] pIndex is the array index of the minimum value in the input buffer. - */ - void arm_min_f32( - float32_t * pSrc, - uint32_t blockSize, - float32_t * pResult, - uint32_t * pIndex); - - -/** - * @brief Maximum value of a Q7 vector. - * @param[in] pSrc points to the input buffer - * @param[in] blockSize length of the input vector - * @param[out] pResult maximum value returned here - * @param[out] pIndex index of maximum value returned here - */ - void arm_max_q7( - q7_t * pSrc, - uint32_t blockSize, - q7_t * pResult, - uint32_t * pIndex); - - -/** - * @brief Maximum value of a Q15 vector. - * @param[in] pSrc points to the input buffer - * @param[in] blockSize length of the input vector - * @param[out] pResult maximum value returned here - * @param[out] pIndex index of maximum value returned here - */ - void arm_max_q15( - q15_t * pSrc, - uint32_t blockSize, - q15_t * pResult, - uint32_t * pIndex); - - -/** - * @brief Maximum value of a Q31 vector. - * @param[in] pSrc points to the input buffer - * @param[in] blockSize length of the input vector - * @param[out] pResult maximum value returned here - * @param[out] pIndex index of maximum value returned here - */ - void arm_max_q31( - q31_t * pSrc, - uint32_t blockSize, - q31_t * pResult, - uint32_t * pIndex); - - -/** - * @brief Maximum value of a floating-point vector. - * @param[in] pSrc points to the input buffer - * @param[in] blockSize length of the input vector - * @param[out] pResult maximum value returned here - * @param[out] pIndex index of maximum value returned here - */ - void arm_max_f32( - float32_t * pSrc, - uint32_t blockSize, - float32_t * pResult, - uint32_t * pIndex); - - - /** - * @brief Q15 complex-by-complex multiplication - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] numSamples number of complex samples in each vector - */ - void arm_cmplx_mult_cmplx_q15( - q15_t * pSrcA, - q15_t * pSrcB, - q15_t * pDst, - uint32_t numSamples); - - - /** - * @brief Q31 complex-by-complex multiplication - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] numSamples number of complex samples in each vector - */ - void arm_cmplx_mult_cmplx_q31( - q31_t * pSrcA, - q31_t * pSrcB, - q31_t * pDst, - uint32_t numSamples); - - - /** - * @brief Floating-point complex-by-complex multiplication - * @param[in] pSrcA points to the first input vector - * @param[in] pSrcB points to the second input vector - * @param[out] pDst points to the output vector - * @param[in] numSamples number of complex samples in each vector - */ - void arm_cmplx_mult_cmplx_f32( - float32_t * pSrcA, - float32_t * pSrcB, - float32_t * pDst, - uint32_t numSamples); - - - /** - * @brief Converts the elements of the floating-point vector to Q31 vector. - * @param[in] pSrc points to the floating-point input vector - * @param[out] pDst points to the Q31 output vector - * @param[in] blockSize length of the input vector - */ - void arm_float_to_q31( - float32_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Converts the elements of the floating-point vector to Q15 vector. - * @param[in] pSrc points to the floating-point input vector - * @param[out] pDst points to the Q15 output vector - * @param[in] blockSize length of the input vector - */ - void arm_float_to_q15( - float32_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Converts the elements of the floating-point vector to Q7 vector. - * @param[in] pSrc points to the floating-point input vector - * @param[out] pDst points to the Q7 output vector - * @param[in] blockSize length of the input vector - */ - void arm_float_to_q7( - float32_t * pSrc, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @brief Converts the elements of the Q31 vector to Q15 vector. - * @param[in] pSrc is input pointer - * @param[out] pDst is output pointer - * @param[in] blockSize is the number of samples to process - */ - void arm_q31_to_q15( - q31_t * pSrc, - q15_t * pDst, - uint32_t blockSize); - - - /** - * @brief Converts the elements of the Q31 vector to Q7 vector. - * @param[in] pSrc is input pointer - * @param[out] pDst is output pointer - * @param[in] blockSize is the number of samples to process - */ - void arm_q31_to_q7( - q31_t * pSrc, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @brief Converts the elements of the Q15 vector to floating-point vector. - * @param[in] pSrc is input pointer - * @param[out] pDst is output pointer - * @param[in] blockSize is the number of samples to process - */ - void arm_q15_to_float( - q15_t * pSrc, - float32_t * pDst, - uint32_t blockSize); - - - /** - * @brief Converts the elements of the Q15 vector to Q31 vector. - * @param[in] pSrc is input pointer - * @param[out] pDst is output pointer - * @param[in] blockSize is the number of samples to process - */ - void arm_q15_to_q31( - q15_t * pSrc, - q31_t * pDst, - uint32_t blockSize); - - - /** - * @brief Converts the elements of the Q15 vector to Q7 vector. - * @param[in] pSrc is input pointer - * @param[out] pDst is output pointer - * @param[in] blockSize is the number of samples to process - */ - void arm_q15_to_q7( - q15_t * pSrc, - q7_t * pDst, - uint32_t blockSize); - - - /** - * @ingroup groupInterpolation - */ - - /** - * @defgroup BilinearInterpolate Bilinear Interpolation - * - * Bilinear interpolation is an extension of linear interpolation applied to a two dimensional grid. - * The underlying function f(x, y) is sampled on a regular grid and the interpolation process - * determines values between the grid points. - * Bilinear interpolation is equivalent to two step linear interpolation, first in the x-dimension and then in the y-dimension. - * Bilinear interpolation is often used in image processing to rescale images. - * The CMSIS DSP library provides bilinear interpolation functions for Q7, Q15, Q31, and floating-point data types. - * - * Algorithm - * \par - * The instance structure used by the bilinear interpolation functions describes a two dimensional data table. - * For floating-point, the instance structure is defined as: - *
-   *   typedef struct
-   *   {
-   *     uint16_t numRows;
-   *     uint16_t numCols;
-   *     float32_t *pData;
-   * } arm_bilinear_interp_instance_f32;
-   * 
- * - * \par - * where numRows specifies the number of rows in the table; - * numCols specifies the number of columns in the table; - * and pData points to an array of size numRows*numCols values. - * The data table pTable is organized in row order and the supplied data values fall on integer indexes. - * That is, table element (x,y) is located at pTable[x + y*numCols] where x and y are integers. - * - * \par - * Let (x, y) specify the desired interpolation point. Then define: - *
-   *     XF = floor(x)
-   *     YF = floor(y)
-   * 
- * \par - * The interpolated output point is computed as: - *
-   *  f(x, y) = f(XF, YF) * (1-(x-XF)) * (1-(y-YF))
-   *           + f(XF+1, YF) * (x-XF)*(1-(y-YF))
-   *           + f(XF, YF+1) * (1-(x-XF))*(y-YF)
-   *           + f(XF+1, YF+1) * (x-XF)*(y-YF)
-   * 
- * Note that the coordinates (x, y) contain integer and fractional components. - * The integer components specify which portion of the table to use while the - * fractional components control the interpolation processor. - * - * \par - * if (x,y) are outside of the table boundary, Bilinear interpolation returns zero output. - */ - - /** - * @addtogroup BilinearInterpolate - * @{ - */ - - - /** - * - * @brief Floating-point bilinear interpolation. - * @param[in,out] S points to an instance of the interpolation structure. - * @param[in] X interpolation coordinate. - * @param[in] Y interpolation coordinate. - * @return out interpolated value. - */ - CMSIS_INLINE __STATIC_INLINE float32_t arm_bilinear_interp_f32( - const arm_bilinear_interp_instance_f32 * S, - float32_t X, - float32_t Y) - { - float32_t out; - float32_t f00, f01, f10, f11; - float32_t *pData = S->pData; - int32_t xIndex, yIndex, index; - float32_t xdiff, ydiff; - float32_t b1, b2, b3, b4; - - xIndex = (int32_t) X; - yIndex = (int32_t) Y; - - /* Care taken for table outside boundary */ - /* Returns zero output when values are outside table boundary */ - if (xIndex < 0 || xIndex > (S->numRows - 1) || yIndex < 0 || yIndex > (S->numCols - 1)) - { - return (0); - } - - /* Calculation of index for two nearest points in X-direction */ - index = (xIndex - 1) + (yIndex - 1) * S->numCols; - - - /* Read two nearest points in X-direction */ - f00 = pData[index]; - f01 = pData[index + 1]; - - /* Calculation of index for two nearest points in Y-direction */ - index = (xIndex - 1) + (yIndex) * S->numCols; - - - /* Read two nearest points in Y-direction */ - f10 = pData[index]; - f11 = pData[index + 1]; - - /* Calculation of intermediate values */ - b1 = f00; - b2 = f01 - f00; - b3 = f10 - f00; - b4 = f00 - f01 - f10 + f11; - - /* Calculation of fractional part in X */ - xdiff = X - xIndex; - - /* Calculation of fractional part in Y */ - ydiff = Y - yIndex; - - /* Calculation of bi-linear interpolated output */ - out = b1 + b2 * xdiff + b3 * ydiff + b4 * xdiff * ydiff; - - /* return to application */ - return (out); - } - - - /** - * - * @brief Q31 bilinear interpolation. - * @param[in,out] S points to an instance of the interpolation structure. - * @param[in] X interpolation coordinate in 12.20 format. - * @param[in] Y interpolation coordinate in 12.20 format. - * @return out interpolated value. - */ - CMSIS_INLINE __STATIC_INLINE q31_t arm_bilinear_interp_q31( - arm_bilinear_interp_instance_q31 * S, - q31_t X, - q31_t Y) - { - q31_t out; /* Temporary output */ - q31_t acc = 0; /* output */ - q31_t xfract, yfract; /* X, Y fractional parts */ - q31_t x1, x2, y1, y2; /* Nearest output values */ - int32_t rI, cI; /* Row and column indices */ - q31_t *pYData = S->pData; /* pointer to output table values */ - uint32_t nCols = S->numCols; /* num of rows */ - - /* Input is in 12.20 format */ - /* 12 bits for the table index */ - /* Index value calculation */ - rI = ((X & (q31_t)0xFFF00000) >> 20); - - /* Input is in 12.20 format */ - /* 12 bits for the table index */ - /* Index value calculation */ - cI = ((Y & (q31_t)0xFFF00000) >> 20); - - /* Care taken for table outside boundary */ - /* Returns zero output when values are outside table boundary */ - if (rI < 0 || rI > (S->numRows - 1) || cI < 0 || cI > (S->numCols - 1)) - { - return (0); - } - - /* 20 bits for the fractional part */ - /* shift left xfract by 11 to keep 1.31 format */ - xfract = (X & 0x000FFFFF) << 11U; - - /* Read two nearest output values from the index */ - x1 = pYData[(rI) + (int32_t)nCols * (cI) ]; - x2 = pYData[(rI) + (int32_t)nCols * (cI) + 1]; - - /* 20 bits for the fractional part */ - /* shift left yfract by 11 to keep 1.31 format */ - yfract = (Y & 0x000FFFFF) << 11U; - - /* Read two nearest output values from the index */ - y1 = pYData[(rI) + (int32_t)nCols * (cI + 1) ]; - y2 = pYData[(rI) + (int32_t)nCols * (cI + 1) + 1]; - - /* Calculation of x1 * (1-xfract ) * (1-yfract) and acc is in 3.29(q29) format */ - out = ((q31_t) (((q63_t) x1 * (0x7FFFFFFF - xfract)) >> 32)); - acc = ((q31_t) (((q63_t) out * (0x7FFFFFFF - yfract)) >> 32)); - - /* x2 * (xfract) * (1-yfract) in 3.29(q29) and adding to acc */ - out = ((q31_t) ((q63_t) x2 * (0x7FFFFFFF - yfract) >> 32)); - acc += ((q31_t) ((q63_t) out * (xfract) >> 32)); - - /* y1 * (1 - xfract) * (yfract) in 3.29(q29) and adding to acc */ - out = ((q31_t) ((q63_t) y1 * (0x7FFFFFFF - xfract) >> 32)); - acc += ((q31_t) ((q63_t) out * (yfract) >> 32)); - - /* y2 * (xfract) * (yfract) in 3.29(q29) and adding to acc */ - out = ((q31_t) ((q63_t) y2 * (xfract) >> 32)); - acc += ((q31_t) ((q63_t) out * (yfract) >> 32)); - - /* Convert acc to 1.31(q31) format */ - return ((q31_t)(acc << 2)); - } - - - /** - * @brief Q15 bilinear interpolation. - * @param[in,out] S points to an instance of the interpolation structure. - * @param[in] X interpolation coordinate in 12.20 format. - * @param[in] Y interpolation coordinate in 12.20 format. - * @return out interpolated value. - */ - CMSIS_INLINE __STATIC_INLINE q15_t arm_bilinear_interp_q15( - arm_bilinear_interp_instance_q15 * S, - q31_t X, - q31_t Y) - { - q63_t acc = 0; /* output */ - q31_t out; /* Temporary output */ - q15_t x1, x2, y1, y2; /* Nearest output values */ - q31_t xfract, yfract; /* X, Y fractional parts */ - int32_t rI, cI; /* Row and column indices */ - q15_t *pYData = S->pData; /* pointer to output table values */ - uint32_t nCols = S->numCols; /* num of rows */ - - /* Input is in 12.20 format */ - /* 12 bits for the table index */ - /* Index value calculation */ - rI = ((X & (q31_t)0xFFF00000) >> 20); - - /* Input is in 12.20 format */ - /* 12 bits for the table index */ - /* Index value calculation */ - cI = ((Y & (q31_t)0xFFF00000) >> 20); - - /* Care taken for table outside boundary */ - /* Returns zero output when values are outside table boundary */ - if (rI < 0 || rI > (S->numRows - 1) || cI < 0 || cI > (S->numCols - 1)) - { - return (0); - } - - /* 20 bits for the fractional part */ - /* xfract should be in 12.20 format */ - xfract = (X & 0x000FFFFF); - - /* Read two nearest output values from the index */ - x1 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI) ]; - x2 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI) + 1]; - - /* 20 bits for the fractional part */ - /* yfract should be in 12.20 format */ - yfract = (Y & 0x000FFFFF); - - /* Read two nearest output values from the index */ - y1 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI + 1) ]; - y2 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI + 1) + 1]; - - /* Calculation of x1 * (1-xfract ) * (1-yfract) and acc is in 13.51 format */ - - /* x1 is in 1.15(q15), xfract in 12.20 format and out is in 13.35 format */ - /* convert 13.35 to 13.31 by right shifting and out is in 1.31 */ - out = (q31_t) (((q63_t) x1 * (0xFFFFF - xfract)) >> 4U); - acc = ((q63_t) out * (0xFFFFF - yfract)); - - /* x2 * (xfract) * (1-yfract) in 1.51 and adding to acc */ - out = (q31_t) (((q63_t) x2 * (0xFFFFF - yfract)) >> 4U); - acc += ((q63_t) out * (xfract)); - - /* y1 * (1 - xfract) * (yfract) in 1.51 and adding to acc */ - out = (q31_t) (((q63_t) y1 * (0xFFFFF - xfract)) >> 4U); - acc += ((q63_t) out * (yfract)); - - /* y2 * (xfract) * (yfract) in 1.51 and adding to acc */ - out = (q31_t) (((q63_t) y2 * (xfract)) >> 4U); - acc += ((q63_t) out * (yfract)); - - /* acc is in 13.51 format and down shift acc by 36 times */ - /* Convert out to 1.15 format */ - return ((q15_t)(acc >> 36)); - } - - - /** - * @brief Q7 bilinear interpolation. - * @param[in,out] S points to an instance of the interpolation structure. - * @param[in] X interpolation coordinate in 12.20 format. - * @param[in] Y interpolation coordinate in 12.20 format. - * @return out interpolated value. - */ - CMSIS_INLINE __STATIC_INLINE q7_t arm_bilinear_interp_q7( - arm_bilinear_interp_instance_q7 * S, - q31_t X, - q31_t Y) - { - q63_t acc = 0; /* output */ - q31_t out; /* Temporary output */ - q31_t xfract, yfract; /* X, Y fractional parts */ - q7_t x1, x2, y1, y2; /* Nearest output values */ - int32_t rI, cI; /* Row and column indices */ - q7_t *pYData = S->pData; /* pointer to output table values */ - uint32_t nCols = S->numCols; /* num of rows */ - - /* Input is in 12.20 format */ - /* 12 bits for the table index */ - /* Index value calculation */ - rI = ((X & (q31_t)0xFFF00000) >> 20); - - /* Input is in 12.20 format */ - /* 12 bits for the table index */ - /* Index value calculation */ - cI = ((Y & (q31_t)0xFFF00000) >> 20); - - /* Care taken for table outside boundary */ - /* Returns zero output when values are outside table boundary */ - if (rI < 0 || rI > (S->numRows - 1) || cI < 0 || cI > (S->numCols - 1)) - { - return (0); - } - - /* 20 bits for the fractional part */ - /* xfract should be in 12.20 format */ - xfract = (X & (q31_t)0x000FFFFF); - - /* Read two nearest output values from the index */ - x1 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI) ]; - x2 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI) + 1]; - - /* 20 bits for the fractional part */ - /* yfract should be in 12.20 format */ - yfract = (Y & (q31_t)0x000FFFFF); - - /* Read two nearest output values from the index */ - y1 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI + 1) ]; - y2 = pYData[((uint32_t)rI) + nCols * ((uint32_t)cI + 1) + 1]; - - /* Calculation of x1 * (1-xfract ) * (1-yfract) and acc is in 16.47 format */ - out = ((x1 * (0xFFFFF - xfract))); - acc = (((q63_t) out * (0xFFFFF - yfract))); - - /* x2 * (xfract) * (1-yfract) in 2.22 and adding to acc */ - out = ((x2 * (0xFFFFF - yfract))); - acc += (((q63_t) out * (xfract))); - - /* y1 * (1 - xfract) * (yfract) in 2.22 and adding to acc */ - out = ((y1 * (0xFFFFF - xfract))); - acc += (((q63_t) out * (yfract))); - - /* y2 * (xfract) * (yfract) in 2.22 and adding to acc */ - out = ((y2 * (yfract))); - acc += (((q63_t) out * (xfract))); - - /* acc in 16.47 format and down shift by 40 to convert to 1.7 format */ - return ((q7_t)(acc >> 40)); - } - - /** - * @} end of BilinearInterpolate group - */ - - -/* SMMLAR */ -#define multAcc_32x32_keep32_R(a, x, y) \ - a = (q31_t) (((((q63_t) a) << 32) + ((q63_t) x * y) + 0x80000000LL ) >> 32) - -/* SMMLSR */ -#define multSub_32x32_keep32_R(a, x, y) \ - a = (q31_t) (((((q63_t) a) << 32) - ((q63_t) x * y) + 0x80000000LL ) >> 32) - -/* SMMULR */ -#define mult_32x32_keep32_R(a, x, y) \ - a = (q31_t) (((q63_t) x * y + 0x80000000LL ) >> 32) - -/* SMMLA */ -#define multAcc_32x32_keep32(a, x, y) \ - a += (q31_t) (((q63_t) x * y) >> 32) - -/* SMMLS */ -#define multSub_32x32_keep32(a, x, y) \ - a -= (q31_t) (((q63_t) x * y) >> 32) - -/* SMMUL */ -#define mult_32x32_keep32(a, x, y) \ - a = (q31_t) (((q63_t) x * y ) >> 32) - - -#if defined ( __CC_ARM ) - /* Enter low optimization region - place directly above function definition */ - #if defined( ARM_MATH_CM4 ) || defined( ARM_MATH_CM7) - #define LOW_OPTIMIZATION_ENTER \ - _Pragma ("push") \ - _Pragma ("O1") - #else - #define LOW_OPTIMIZATION_ENTER - #endif - - /* Exit low optimization region - place directly after end of function definition */ - #if defined ( ARM_MATH_CM4 ) || defined ( ARM_MATH_CM7 ) - #define LOW_OPTIMIZATION_EXIT \ - _Pragma ("pop") - #else - #define LOW_OPTIMIZATION_EXIT - #endif - - /* Enter low optimization region - place directly above function definition */ - #define IAR_ONLY_LOW_OPTIMIZATION_ENTER - - /* Exit low optimization region - place directly after end of function definition */ - #define IAR_ONLY_LOW_OPTIMIZATION_EXIT - -#elif defined (__ARMCC_VERSION ) && ( __ARMCC_VERSION >= 6010050 ) - #define LOW_OPTIMIZATION_ENTER - #define LOW_OPTIMIZATION_EXIT - #define IAR_ONLY_LOW_OPTIMIZATION_ENTER - #define IAR_ONLY_LOW_OPTIMIZATION_EXIT - -#elif defined ( __GNUC__ ) - #define LOW_OPTIMIZATION_ENTER \ - __attribute__(( optimize("-O1") )) - #define LOW_OPTIMIZATION_EXIT - #define IAR_ONLY_LOW_OPTIMIZATION_ENTER - #define IAR_ONLY_LOW_OPTIMIZATION_EXIT - -#elif defined ( __ICCARM__ ) - /* Enter low optimization region - place directly above function definition */ - #if defined ( ARM_MATH_CM4 ) || defined ( ARM_MATH_CM7 ) - #define LOW_OPTIMIZATION_ENTER \ - _Pragma ("optimize=low") - #else - #define LOW_OPTIMIZATION_ENTER - #endif - - /* Exit low optimization region - place directly after end of function definition */ - #define LOW_OPTIMIZATION_EXIT - - /* Enter low optimization region - place directly above function definition */ - #if defined ( ARM_MATH_CM4 ) || defined ( ARM_MATH_CM7 ) - #define IAR_ONLY_LOW_OPTIMIZATION_ENTER \ - _Pragma ("optimize=low") - #else - #define IAR_ONLY_LOW_OPTIMIZATION_ENTER - #endif - - /* Exit low optimization region - place directly after end of function definition */ - #define IAR_ONLY_LOW_OPTIMIZATION_EXIT - -#elif defined ( __TI_ARM__ ) - #define LOW_OPTIMIZATION_ENTER - #define LOW_OPTIMIZATION_EXIT - #define IAR_ONLY_LOW_OPTIMIZATION_ENTER - #define IAR_ONLY_LOW_OPTIMIZATION_EXIT - -#elif defined ( __CSMC__ ) - #define LOW_OPTIMIZATION_ENTER - #define LOW_OPTIMIZATION_EXIT - #define IAR_ONLY_LOW_OPTIMIZATION_ENTER - #define IAR_ONLY_LOW_OPTIMIZATION_EXIT - -#elif defined ( __TASKING__ ) - #define LOW_OPTIMIZATION_ENTER - #define LOW_OPTIMIZATION_EXIT - #define IAR_ONLY_LOW_OPTIMIZATION_ENTER - #define IAR_ONLY_LOW_OPTIMIZATION_EXIT - -#endif - - -#ifdef __cplusplus -} -#endif - -/* Compiler specific diagnostic adjustment */ -#if defined ( __CC_ARM ) - -#elif defined ( __ARMCC_VERSION ) && ( __ARMCC_VERSION >= 6010050 ) - -#elif defined ( __GNUC__ ) -#pragma GCC diagnostic pop - -#elif defined ( __ICCARM__ ) - -#elif defined ( __TI_ARM__ ) - -#elif defined ( __CSMC__ ) - -#elif defined ( __TASKING__ ) - -#else - #error Unknown compiler -#endif - -#endif /* _ARM_MATH_H */ - -/** - * - * End of file. - */ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/.ninja_deps b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/.ninja_deps deleted file mode 100644 index e5675ec1d..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/.ninja_deps and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/.ninja_log b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/.ninja_log deleted file mode 100644 index eec06aebc..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/.ninja_log +++ /dev/null @@ -1,54 +0,0 @@ -# ninja log v5 -6 633 5983664614120842 main_blinky.pbi 466194622a862efd -633 960 5983664617402246 serial_port_uart.pbi 6135ba6d402d3190 -960 1177 5983664619433367 fsl_clock.pbi bbaae9561bdf2d67 -1178 1324 5983664621152109 fsl_flexcomm.pbi 109adc567ec48eef -1325 1500 5983664622870987 usart_adapter.pbi a9d40b971e307970 -1501 1649 5983664624277297 clock_config.pbi ff0ffc2d6ab311f0 -1649 1807 5983664625839594 fsl_gpio.pbi 95ebfa96ec32a48e -1808 2015 5983664628027092 IntQueueTimer.pbi 428eaccda7104143 -2015 2192 5983664629590000 fsl_pint.pbi f542e114c3aa3fc7 -2193 2351 5983664631308368 fsl_power.pbi 3c751da8daf76175 -2352 2522 5983664633027101 fsl_usart.pbi 79a81f2479f3515c -2523 2687 5983664634745859 generic_list.pbi af726adf6aa1e31d -2687 3012 5983664637870870 main.pbi 98f5ddcfa15fcbf9 -3013 3223 5983664639746404 fsl_ctimer.pbi 38784fa54306cddb -3225 3473 5983664642089613 fsl_reset.pbi 60f260c096aaae92 -3473 3754 5983664645370841 heap_5.pbi 31b00e715019681b -3755 3981 5983664647558364 serial_manager.pbi ee5b21caebfe84a0 -3982 4138 5983664649277374 board.pbi 778bb06e81ea4787 -4138 4191 5983664649745988 peripherals.pbi 598c9732d0747b54 -4192 4280 5983664650683367 main_full.pbi 741c88cead516813 -4281 4447 5983664652246257 pin_mux.pbi 7acc35bcac4ecdc5 -4447 4619 5983664653964614 fsl_common.pbi daeb490c65ce9670 -4620 4760 5983664655370878 system_LPC51U68.pbi c51b7d238c70cd -4760 4941 5983664657245971 CORTEX_M0+_LPC51U68_IAR_part2.pbi deaae12d1cdcc9c -4941 5049 5983664658339727 queue.pbi 14ac0bd34d1dee7a -5050 5148 5983664659282982 blocktim.pbi 6dfac064a349ca26 -5148 5244 5983664660215726 recmutex.pbi 8f4e3154c7998752 -5245 5322 5983664660997382 event_groups.pbi b0117a93bb36a613 -5323 5467 5983664662563244 fsl_debug_console.pbi 19f8118ec4581cfa -5467 5604 5983664663808354 CORTEX_M0+_LPC51U68_IAR_part1.pbi 9e2c289274637eb2 -5604 5686 5983664664589608 croutine.pbi 65e3213de074fe6a -5686 5794 5983664665683524 stream_buffer.pbi d36ace7ee56c8e7b -5795 5882 5983664666622159 IntQueue.pbi 2d9e66086d8be845 -5882 6014 5983664668027093 CORTEX_M0+_LPC51U68_IAR_part3.pbi c9ad824ecb205bde -6015 6104 5983664668808482 countsem.pbi 586f70db4e41373 -6105 6244 5983664670214572 fsl_assert.pbi c99ac87c03d94763 -6245 6346 5983664671308335 CORTEX_M0+_LPC51U68_IAR_part5.pbi f53db81bd98fd2e2 -6347 6673 5983664674589618 fsl_str.pbi d52040727905d48b -6673 6731 5983664675214763 CORTEX_M0+_LPC51U68_IAR_part6.pbi ad0bd60b599eb481 -6731 6864 5983664676465011 CORTEX_M0+_LPC51U68_IAR_part0.pbi 194a97c54c0b60c0 -6865 7094 5983664678809842 tasks.pbi b6d2e7233a0c4a29 -7094 7200 5983664679745976 list.pbi 85bae7d49ea82543 -7200 7315 5983664680995979 timers.pbi 691eecea006767f7 -7315 7393 5983664681777860 CORTEX_M0+_LPC51U68_IAR_part4.pbi 82dbdf419dac96fd -7393 7615 5983664683965266 CORTEX_M0+_LPC51U68_IAR.pbd 4d06c615094d48dd -7616 9291 5983664700528130 CORTEX_M0+_LPC51U68_IAR.pbw 8eea75a905a779e9 -26 134 5983664724590397 CORTEX_M0+_LPC51U68_IAR_part6.pbi 69e24b26346e9158 -135 206 5983664725370838 CORTEX_M0+_LPC51U68_IAR_part4.pbi 842d144e830aec2e -207 304 5983664726308379 CORTEX_M0+_LPC51U68_IAR_part5.pbi 4e99c80f7e166f45 -305 4348 5983664766624919 port.pbi 6601f1f6b557096c -4348 4491 5983664768183515 CORTEX_M0+_LPC51U68_IAR_part3.pbi af55a75b2ff03e60 -4492 4743 5983664770683618 CORTEX_M0+_LPC51U68_IAR.pbd 4d06c615094d48dd -4745 7219 5983664793970413 CORTEX_M0+_LPC51U68_IAR.pbw 8eea75a905a779e9 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR.pbd b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR.pbd deleted file mode 100644 index ae011315c..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR.pbd and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR.pbd.browse b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR.pbd.browse deleted file mode 100644 index ae011315c..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR.pbd.browse and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR.pbw b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR.pbw deleted file mode 100644 index 04c11f1d3..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR.pbw +++ /dev/null @@ -1,136918 +0,0 @@ -[ - { - "ID": "c:LPC51U68.h@1261@macro@_LPC51U68_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_LPC51U68_H_", - "location": { - "column": "9", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "_LPC51U68_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@1456@macro@MCU_MEM_MAP_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "MCU_MEM_MAP_VERSION", - "location": { - "column": "9", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MCU_MEM_MAP_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@1526@macro@MCU_MEM_MAP_VERSION_MINOR", - "What": "MacroDef", - "defdec": "Def", - "display": "MCU_MEM_MAP_VERSION_MINOR", - "location": { - "column": "9", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MCU_MEM_MAP_VERSION_MINOR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@1894@macro@NUMBER_OF_INT_VECTORS", - "What": "MacroDef", - "defdec": "Def", - "display": "NUMBER_OF_INT_VECTORS", - "location": { - "column": "9", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "NUMBER_OF_INT_VECTORS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn", - "What": "Enum", - "defdec": "Def", - "display": "IRQn", - "fields": [ - { - "ID": "c:@E@IRQn@NotAvail_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "NotAvail_IRQn", - "location": { - "column": "3", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "NotAvail_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@NonMaskableInt_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "NonMaskableInt_IRQn", - "location": { - "column": "3", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "NonMaskableInt_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@HardFault_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "HardFault_IRQn", - "location": { - "column": "3", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "HardFault_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@SVCall_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "SVCall_IRQn", - "location": { - "column": "3", - "line": "72", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SVCall_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@PendSV_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "PendSV_IRQn", - "location": { - "column": "3", - "line": "73", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PendSV_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@SysTick_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "SysTick_IRQn", - "location": { - "column": "3", - "line": "74", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SysTick_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@WDT_BOD_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "WDT_BOD_IRQn", - "location": { - "column": "3", - "line": "77", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WDT_BOD_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@DMA0_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "DMA0_IRQn", - "location": { - "column": "3", - "line": "78", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA0_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@GINT0_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "GINT0_IRQn", - "location": { - "column": "3", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT0_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@GINT1_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "GINT1_IRQn", - "location": { - "column": "3", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT1_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@PIN_INT0_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "PIN_INT0_IRQn", - "location": { - "column": "3", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PIN_INT0_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@PIN_INT1_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "PIN_INT1_IRQn", - "location": { - "column": "3", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PIN_INT1_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@PIN_INT2_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "PIN_INT2_IRQn", - "location": { - "column": "3", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PIN_INT2_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@PIN_INT3_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "PIN_INT3_IRQn", - "location": { - "column": "3", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PIN_INT3_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@UTICK0_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "UTICK0_IRQn", - "location": { - "column": "3", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK0_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@MRT0_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "MRT0_IRQn", - "location": { - "column": "3", - "line": "86", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT0_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@CTIMER0_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "CTIMER0_IRQn", - "location": { - "column": "3", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER0_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@CTIMER1_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "CTIMER1_IRQn", - "location": { - "column": "3", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER1_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@SCT0_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "SCT0_IRQn", - "location": { - "column": "3", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT0_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@CTIMER3_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "CTIMER3_IRQn", - "location": { - "column": "3", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER3_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@FLEXCOMM0_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM0_IRQn", - "location": { - "column": "3", - "line": "91", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM0_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@FLEXCOMM1_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM1_IRQn", - "location": { - "column": "3", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM1_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@FLEXCOMM2_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM2_IRQn", - "location": { - "column": "3", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM2_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@FLEXCOMM3_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM3_IRQn", - "location": { - "column": "3", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM3_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@FLEXCOMM4_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM4_IRQn", - "location": { - "column": "3", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM4_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@FLEXCOMM5_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM5_IRQn", - "location": { - "column": "3", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM5_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@FLEXCOMM6_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM6_IRQn", - "location": { - "column": "3", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM6_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@FLEXCOMM7_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM7_IRQn", - "location": { - "column": "3", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM7_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@ADC0_SEQA_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "ADC0_SEQA_IRQn", - "location": { - "column": "3", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC0_SEQA_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@ADC0_SEQB_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "ADC0_SEQB_IRQn", - "location": { - "column": "3", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC0_SEQB_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@ADC0_THCMP_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "ADC0_THCMP_IRQn", - "location": { - "column": "3", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC0_THCMP_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@Reserved41_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "Reserved41_IRQn", - "location": { - "column": "3", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "Reserved41_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@Reserved42_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "Reserved42_IRQn", - "location": { - "column": "3", - "line": "103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "Reserved42_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@USB0_NEEDCLK_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "USB0_NEEDCLK_IRQn", - "location": { - "column": "3", - "line": "104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB0_NEEDCLK_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@USB0_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "USB0_IRQn", - "location": { - "column": "3", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB0_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@RTC_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "RTC_IRQn", - "location": { - "column": "3", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@Reserved46_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "Reserved46_IRQn", - "location": { - "column": "3", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "Reserved46_IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@IRQn@Reserved47_IRQn", - "What": "Enumerator", - "defdec": "Def", - "display": "Reserved47_IRQn", - "location": { - "column": "3", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "Reserved47_IRQn", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IRQn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@T@IRQn_Type", - "What": "Typedef", - "defdec": "Def", - "display": "enum IRQn", - "location": { - "column": "3", - "line": "109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IRQn_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@5924@macro@__CM0PLUS_REV", - "What": "MacroDef", - "defdec": "Def", - "display": "__CM0PLUS_REV", - "location": { - "column": "9", - "line": "125", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "__CM0PLUS_REV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@6001@macro@__MPU_PRESENT", - "What": "MacroDef", - "defdec": "Def", - "display": "__MPU_PRESENT", - "location": { - "column": "9", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "__MPU_PRESENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@6095@macro@__VTOR_PRESENT", - "What": "MacroDef", - "defdec": "Def", - "display": "__VTOR_PRESENT", - "location": { - "column": "9", - "line": "127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "__VTOR_PRESENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@6187@macro@__NVIC_PRIO_BITS", - "What": "MacroDef", - "defdec": "Def", - "display": "__NVIC_PRIO_BITS", - "location": { - "column": "9", - "line": "128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "__NVIC_PRIO_BITS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@6293@macro@__Vendor_SysTickConfig", - "What": "MacroDef", - "defdec": "Def", - "display": "__Vendor_SysTickConfig", - "location": { - "column": "9", - "line": "129", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "__Vendor_SysTickConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source", - "What": "Enum", - "defdec": "Def", - "display": "_dma_request_source", - "fields": [ - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface0_RX_I2C_Slave", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface0_RX_I2C_Slave", - "location": { - "column": "5", - "line": "165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface0_RX_I2C_Slave", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface0_TX_I2C_Master", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface0_TX_I2C_Master", - "location": { - "column": "5", - "line": "166", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface0_TX_I2C_Master", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface1_RX_I2C_Slave", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface1_RX_I2C_Slave", - "location": { - "column": "5", - "line": "167", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface1_RX_I2C_Slave", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface1_TX_I2C_Master", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface1_TX_I2C_Master", - "location": { - "column": "5", - "line": "168", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface1_TX_I2C_Master", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface2_RX_I2C_Slave", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface2_RX_I2C_Slave", - "location": { - "column": "5", - "line": "169", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface2_RX_I2C_Slave", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface2_TX_I2C_Master", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface2_TX_I2C_Master", - "location": { - "column": "5", - "line": "170", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface2_TX_I2C_Master", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface3_RX_I2C_Slave", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface3_RX_I2C_Slave", - "location": { - "column": "5", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface3_RX_I2C_Slave", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface3_TX_I2C_Master", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface3_TX_I2C_Master", - "location": { - "column": "5", - "line": "172", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface3_TX_I2C_Master", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface4_RX_I2C_Slave", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface4_RX_I2C_Slave", - "location": { - "column": "5", - "line": "173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface4_RX_I2C_Slave", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface4_TX_I2C_Master", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface4_TX_I2C_Master", - "location": { - "column": "5", - "line": "174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface4_TX_I2C_Master", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface5_RX_I2C_Slave", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface5_RX_I2C_Slave", - "location": { - "column": "5", - "line": "175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface5_RX_I2C_Slave", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface5_TX_I2C_Master", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface5_TX_I2C_Master", - "location": { - "column": "5", - "line": "176", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface5_TX_I2C_Master", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface6_RX_I2C_Slave", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface6_RX_I2C_Slave", - "location": { - "column": "5", - "line": "177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface6_RX_I2C_Slave", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface6_TX_I2C_Master", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface6_TX_I2C_Master", - "location": { - "column": "5", - "line": "178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface6_TX_I2C_Master", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface7_RX_I2C_Slave", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface7_RX_I2C_Slave", - "location": { - "column": "5", - "line": "179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface7_RX_I2C_Slave", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kFlexcomm_Interface7_TX_I2C_Master", - "What": "Enumerator", - "defdec": "Def", - "display": "kFlexcomm_Interface7_TX_I2C_Master", - "location": { - "column": "5", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kFlexcomm_Interface7_TX_I2C_Master", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kDmaRequestNoDMARequest18", - "What": "Enumerator", - "defdec": "Def", - "display": "kDmaRequestNoDMARequest18", - "location": { - "column": "5", - "line": "181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kDmaRequestNoDMARequest18", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_dma_request_source@kDmaRequestNoDMARequest19", - "What": "Enumerator", - "defdec": "Def", - "display": "kDmaRequestNoDMARequest19", - "location": { - "column": "5", - "line": "182", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "kDmaRequestNoDMARequest19", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "163", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "_dma_request_source", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@T@dma_request_source_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _dma_request_source", - "location": { - "column": "3", - "line": "183", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "dma_request_source_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@ADC_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "232", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@ADC_Type@FI@CTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTRL", - "location": { - "column": "17", - "line": "233", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@INSEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "INSEL", - "location": { - "column": "17", - "line": "234", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INSEL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@SEQ_CTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "SEQ_CTRL", - "location": { - "column": "17", - "line": "235", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SEQ_CTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@SEQ_GDAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "SEQ_GDAT", - "location": { - "column": "17", - "line": "236", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SEQ_GDAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "237", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@DAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "DAT", - "location": { - "column": "17", - "line": "238", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@THR0_LOW", - "What": "FieldDecl", - "defdec": "Def", - "display": "THR0_LOW", - "location": { - "column": "17", - "line": "239", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "THR0_LOW", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@THR1_LOW", - "What": "FieldDecl", - "defdec": "Def", - "display": "THR1_LOW", - "location": { - "column": "17", - "line": "240", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "THR1_LOW", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@THR0_HIGH", - "What": "FieldDecl", - "defdec": "Def", - "display": "THR0_HIGH", - "location": { - "column": "17", - "line": "241", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "THR0_HIGH", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@THR1_HIGH", - "What": "FieldDecl", - "defdec": "Def", - "display": "THR1_HIGH", - "location": { - "column": "17", - "line": "242", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "THR1_HIGH", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@CHAN_THRSEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CHAN_THRSEL", - "location": { - "column": "17", - "line": "243", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CHAN_THRSEL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@INTEN", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTEN", - "location": { - "column": "17", - "line": "244", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTEN", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@FLAGS", - "What": "FieldDecl", - "defdec": "Def", - "display": "FLAGS", - "location": { - "column": "17", - "line": "245", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLAGS", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@STARTUP", - "What": "FieldDecl", - "defdec": "Def", - "display": "STARTUP", - "location": { - "column": "17", - "line": "246", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "STARTUP", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - }, - { - "ID": "c:@SA@ADC_Type@FI@CALIB", - "What": "FieldDecl", - "defdec": "Def", - "display": "CALIB", - "location": { - "column": "17", - "line": "247", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CALIB", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_232_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@ADC_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct ADC_Type", - "location": { - "column": "3", - "line": "248", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@13513@macro@ADC_CTRL_CLKDIV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_CLKDIV_MASK", - "location": { - "column": "9", - "line": "261", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_CLKDIV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@13571@macro@ADC_CTRL_CLKDIV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_CLKDIV_SHIFT", - "location": { - "column": "9", - "line": "262", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_CLKDIV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@13626@macro@ADC_CTRL_CLKDIV", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_CLKDIV", - "location": { - "column": "9", - "line": "263", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_CLKDIV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@13756@macro@ADC_CTRL_ASYNMODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_ASYNMODE_MASK", - "location": { - "column": "9", - "line": "264", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_ASYNMODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@13815@macro@ADC_CTRL_ASYNMODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_ASYNMODE_SHIFT", - "location": { - "column": "9", - "line": "265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_ASYNMODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@14578@macro@ADC_CTRL_ASYNMODE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_ASYNMODE", - "location": { - "column": "9", - "line": "270", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_ASYNMODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@14712@macro@ADC_CTRL_RESOL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_RESOL_MASK", - "location": { - "column": "9", - "line": "271", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_RESOL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@14771@macro@ADC_CTRL_RESOL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_RESOL_SHIFT", - "location": { - "column": "9", - "line": "272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_RESOL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@15941@macro@ADC_CTRL_RESOL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_RESOL", - "location": { - "column": "9", - "line": "279", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_RESOL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@16069@macro@ADC_CTRL_BYPASSCAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_BYPASSCAL_MASK", - "location": { - "column": "9", - "line": "280", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_BYPASSCAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@16128@macro@ADC_CTRL_BYPASSCAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_BYPASSCAL_SHIFT", - "location": { - "column": "9", - "line": "281", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_BYPASSCAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@16843@macro@ADC_CTRL_BYPASSCAL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_BYPASSCAL", - "location": { - "column": "9", - "line": "286", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_BYPASSCAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@16979@macro@ADC_CTRL_TSAMP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_TSAMP_MASK", - "location": { - "column": "9", - "line": "287", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_TSAMP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@17039@macro@ADC_CTRL_TSAMP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_TSAMP_SHIFT", - "location": { - "column": "9", - "line": "288", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_TSAMP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@17095@macro@ADC_CTRL_TSAMP", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CTRL_TSAMP", - "location": { - "column": "9", - "line": "289", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CTRL_TSAMP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@17366@macro@ADC_INSEL_SEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INSEL_SEL_MASK", - "location": { - "column": "9", - "line": "294", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INSEL_SEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@17423@macro@ADC_INSEL_SEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INSEL_SEL_SHIFT", - "location": { - "column": "9", - "line": "295", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INSEL_SEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@17635@macro@ADC_INSEL_SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INSEL_SEL", - "location": { - "column": "9", - "line": "300", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INSEL_SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@17969@macro@ADC_SEQ_CTRL_CHANNELS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_CHANNELS_MASK", - "location": { - "column": "9", - "line": "305", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_CHANNELS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@18028@macro@ADC_SEQ_CTRL_CHANNELS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_CHANNELS_SHIFT", - "location": { - "column": "9", - "line": "306", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_CHANNELS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@18083@macro@ADC_SEQ_CTRL_CHANNELS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_CHANNELS", - "location": { - "column": "9", - "line": "307", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_CHANNELS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@18225@macro@ADC_SEQ_CTRL_TRIGGER_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_TRIGGER_MASK", - "location": { - "column": "9", - "line": "308", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_TRIGGER_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@18286@macro@ADC_SEQ_CTRL_TRIGGER_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_TRIGGER_SHIFT", - "location": { - "column": "9", - "line": "309", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_TRIGGER_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@18342@macro@ADC_SEQ_CTRL_TRIGGER", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_TRIGGER", - "location": { - "column": "9", - "line": "310", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_TRIGGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@18482@macro@ADC_SEQ_CTRL_TRIGPOL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_TRIGPOL_MASK", - "location": { - "column": "9", - "line": "311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_TRIGPOL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@18543@macro@ADC_SEQ_CTRL_TRIGPOL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_TRIGPOL_SHIFT", - "location": { - "column": "9", - "line": "312", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_TRIGPOL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@19100@macro@ADC_SEQ_CTRL_TRIGPOL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_TRIGPOL", - "location": { - "column": "9", - "line": "317", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_TRIGPOL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@19240@macro@ADC_SEQ_CTRL_SYNCBYPASS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_SYNCBYPASS_MASK", - "location": { - "column": "9", - "line": "318", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_SYNCBYPASS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@19301@macro@ADC_SEQ_CTRL_SYNCBYPASS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_SYNCBYPASS_SHIFT", - "location": { - "column": "9", - "line": "319", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_SYNCBYPASS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@20602@macro@ADC_SEQ_CTRL_SYNCBYPASS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_SYNCBYPASS", - "location": { - "column": "9", - "line": "324", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_SYNCBYPASS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@20748@macro@ADC_SEQ_CTRL_START_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_START_MASK", - "location": { - "column": "9", - "line": "325", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_START_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@20811@macro@ADC_SEQ_CTRL_START_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_START_SHIFT", - "location": { - "column": "9", - "line": "326", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_START_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@20867@macro@ADC_SEQ_CTRL_START", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_START", - "location": { - "column": "9", - "line": "327", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_START", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@21003@macro@ADC_SEQ_CTRL_BURST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_BURST_MASK", - "location": { - "column": "9", - "line": "328", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_BURST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@21066@macro@ADC_SEQ_CTRL_BURST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_BURST_SHIFT", - "location": { - "column": "9", - "line": "329", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_BURST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@21122@macro@ADC_SEQ_CTRL_BURST", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_BURST", - "location": { - "column": "9", - "line": "330", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_BURST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@21258@macro@ADC_SEQ_CTRL_SINGLESTEP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_SINGLESTEP_MASK", - "location": { - "column": "9", - "line": "331", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_SINGLESTEP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@21322@macro@ADC_SEQ_CTRL_SINGLESTEP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_SINGLESTEP_SHIFT", - "location": { - "column": "9", - "line": "332", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_SINGLESTEP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@21378@macro@ADC_SEQ_CTRL_SINGLESTEP", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_SINGLESTEP", - "location": { - "column": "9", - "line": "333", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_SINGLESTEP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@21524@macro@ADC_SEQ_CTRL_LOWPRIO_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_LOWPRIO_MASK", - "location": { - "column": "9", - "line": "334", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_LOWPRIO_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@21588@macro@ADC_SEQ_CTRL_LOWPRIO_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_LOWPRIO_SHIFT", - "location": { - "column": "9", - "line": "335", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_LOWPRIO_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@22289@macro@ADC_SEQ_CTRL_LOWPRIO", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_LOWPRIO", - "location": { - "column": "9", - "line": "340", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_LOWPRIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@22429@macro@ADC_SEQ_CTRL_MODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_MODE_MASK", - "location": { - "column": "9", - "line": "341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_MODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@22493@macro@ADC_SEQ_CTRL_MODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_MODE_SHIFT", - "location": { - "column": "9", - "line": "342", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_MODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@23755@macro@ADC_SEQ_CTRL_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_MODE", - "location": { - "column": "9", - "line": "347", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@23889@macro@ADC_SEQ_CTRL_SEQ_ENA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_SEQ_ENA_MASK", - "location": { - "column": "9", - "line": "348", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_SEQ_ENA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@23953@macro@ADC_SEQ_CTRL_SEQ_ENA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_SEQ_ENA_SHIFT", - "location": { - "column": "9", - "line": "349", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_SEQ_ENA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@24991@macro@ADC_SEQ_CTRL_SEQ_ENA", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_SEQ_ENA", - "location": { - "column": "9", - "line": "354", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_SEQ_ENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@25177@macro@ADC_SEQ_CTRL_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_CTRL_COUNT", - "location": { - "column": "9", - "line": "358", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_CTRL_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@25403@macro@ADC_SEQ_GDAT_RESULT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_RESULT_MASK", - "location": { - "column": "9", - "line": "362", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_RESULT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@25463@macro@ADC_SEQ_GDAT_RESULT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_RESULT_SHIFT", - "location": { - "column": "9", - "line": "363", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_RESULT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@25518@macro@ADC_SEQ_GDAT_RESULT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_RESULT", - "location": { - "column": "9", - "line": "364", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_RESULT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@25656@macro@ADC_SEQ_GDAT_THCMPRANGE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_THCMPRANGE_MASK", - "location": { - "column": "9", - "line": "365", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_THCMPRANGE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@25717@macro@ADC_SEQ_GDAT_THCMPRANGE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_THCMPRANGE_SHIFT", - "location": { - "column": "9", - "line": "366", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_THCMPRANGE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@25773@macro@ADC_SEQ_GDAT_THCMPRANGE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_THCMPRANGE", - "location": { - "column": "9", - "line": "367", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_THCMPRANGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@25919@macro@ADC_SEQ_GDAT_THCMPCROSS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_THCMPCROSS_MASK", - "location": { - "column": "9", - "line": "368", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_THCMPCROSS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@25980@macro@ADC_SEQ_GDAT_THCMPCROSS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_THCMPCROSS_SHIFT", - "location": { - "column": "9", - "line": "369", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_THCMPCROSS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@26036@macro@ADC_SEQ_GDAT_THCMPCROSS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_THCMPCROSS", - "location": { - "column": "9", - "line": "370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_THCMPCROSS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@26182@macro@ADC_SEQ_GDAT_CHN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_CHN_MASK", - "location": { - "column": "9", - "line": "371", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_CHN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@26246@macro@ADC_SEQ_GDAT_CHN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_CHN_SHIFT", - "location": { - "column": "9", - "line": "372", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_CHN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@26302@macro@ADC_SEQ_GDAT_CHN", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_CHN", - "location": { - "column": "9", - "line": "373", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_CHN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@26434@macro@ADC_SEQ_GDAT_OVERRUN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_OVERRUN_MASK", - "location": { - "column": "9", - "line": "374", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_OVERRUN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@26498@macro@ADC_SEQ_GDAT_OVERRUN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_OVERRUN_SHIFT", - "location": { - "column": "9", - "line": "375", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_OVERRUN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@26554@macro@ADC_SEQ_GDAT_OVERRUN", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_OVERRUN", - "location": { - "column": "9", - "line": "376", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_OVERRUN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@26694@macro@ADC_SEQ_GDAT_DATAVALID_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_DATAVALID_MASK", - "location": { - "column": "9", - "line": "377", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_DATAVALID_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@26758@macro@ADC_SEQ_GDAT_DATAVALID_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_DATAVALID_SHIFT", - "location": { - "column": "9", - "line": "378", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_DATAVALID_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@26814@macro@ADC_SEQ_GDAT_DATAVALID", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_DATAVALID", - "location": { - "column": "9", - "line": "379", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_DATAVALID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@27004@macro@ADC_SEQ_GDAT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_GDAT_COUNT", - "location": { - "column": "9", - "line": "383", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_GDAT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@27209@macro@ADC_DAT_RESULT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_RESULT_MASK", - "location": { - "column": "9", - "line": "387", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_RESULT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@27269@macro@ADC_DAT_RESULT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_RESULT_SHIFT", - "location": { - "column": "9", - "line": "388", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_RESULT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@27324@macro@ADC_DAT_RESULT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_RESULT", - "location": { - "column": "9", - "line": "389", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_RESULT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@27452@macro@ADC_DAT_THCMPRANGE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_THCMPRANGE_MASK", - "location": { - "column": "9", - "line": "390", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_THCMPRANGE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@27513@macro@ADC_DAT_THCMPRANGE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_THCMPRANGE_SHIFT", - "location": { - "column": "9", - "line": "391", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_THCMPRANGE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@27569@macro@ADC_DAT_THCMPRANGE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_THCMPRANGE", - "location": { - "column": "9", - "line": "392", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_THCMPRANGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@27705@macro@ADC_DAT_THCMPCROSS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_THCMPCROSS_MASK", - "location": { - "column": "9", - "line": "393", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_THCMPCROSS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@27766@macro@ADC_DAT_THCMPCROSS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_THCMPCROSS_SHIFT", - "location": { - "column": "9", - "line": "394", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_THCMPCROSS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@27822@macro@ADC_DAT_THCMPCROSS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_THCMPCROSS", - "location": { - "column": "9", - "line": "395", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_THCMPCROSS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@27958@macro@ADC_DAT_CHANNEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_CHANNEL_MASK", - "location": { - "column": "9", - "line": "396", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_CHANNEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@28022@macro@ADC_DAT_CHANNEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_CHANNEL_SHIFT", - "location": { - "column": "9", - "line": "397", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_CHANNEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@28078@macro@ADC_DAT_CHANNEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_CHANNEL", - "location": { - "column": "9", - "line": "398", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_CHANNEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@28208@macro@ADC_DAT_OVERRUN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_OVERRUN_MASK", - "location": { - "column": "9", - "line": "399", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_OVERRUN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@28272@macro@ADC_DAT_OVERRUN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_OVERRUN_SHIFT", - "location": { - "column": "9", - "line": "400", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_OVERRUN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@28328@macro@ADC_DAT_OVERRUN", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_OVERRUN", - "location": { - "column": "9", - "line": "401", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_OVERRUN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@28458@macro@ADC_DAT_DATAVALID_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_DATAVALID_MASK", - "location": { - "column": "9", - "line": "402", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_DATAVALID_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@28522@macro@ADC_DAT_DATAVALID_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_DATAVALID_SHIFT", - "location": { - "column": "9", - "line": "403", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_DATAVALID_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@28578@macro@ADC_DAT_DATAVALID", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_DATAVALID", - "location": { - "column": "9", - "line": "404", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_DATAVALID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@28753@macro@ADC_DAT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_DAT_COUNT", - "location": { - "column": "9", - "line": "408", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_DAT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@29000@macro@ADC_THR0_LOW_THRLOW_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_THR0_LOW_THRLOW_MASK", - "location": { - "column": "9", - "line": "412", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_THR0_LOW_THRLOW_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@29060@macro@ADC_THR0_LOW_THRLOW_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_THR0_LOW_THRLOW_SHIFT", - "location": { - "column": "9", - "line": "413", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_THR0_LOW_THRLOW_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@29115@macro@ADC_THR0_LOW_THRLOW", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_THR0_LOW_THRLOW", - "location": { - "column": "9", - "line": "414", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_THR0_LOW_THRLOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@29455@macro@ADC_THR1_LOW_THRLOW_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_THR1_LOW_THRLOW_MASK", - "location": { - "column": "9", - "line": "419", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_THR1_LOW_THRLOW_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@29515@macro@ADC_THR1_LOW_THRLOW_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_THR1_LOW_THRLOW_SHIFT", - "location": { - "column": "9", - "line": "420", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_THR1_LOW_THRLOW_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@29570@macro@ADC_THR1_LOW_THRLOW", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_THR1_LOW_THRLOW", - "location": { - "column": "9", - "line": "421", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_THR1_LOW_THRLOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@29912@macro@ADC_THR0_HIGH_THRHIGH_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_THR0_HIGH_THRHIGH_MASK", - "location": { - "column": "9", - "line": "426", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_THR0_HIGH_THRHIGH_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@29972@macro@ADC_THR0_HIGH_THRHIGH_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_THR0_HIGH_THRHIGH_SHIFT", - "location": { - "column": "9", - "line": "427", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_THR0_HIGH_THRHIGH_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@30027@macro@ADC_THR0_HIGH_THRHIGH", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_THR0_HIGH_THRHIGH", - "location": { - "column": "9", - "line": "428", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_THR0_HIGH_THRHIGH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@30373@macro@ADC_THR1_HIGH_THRHIGH_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_THR1_HIGH_THRHIGH_MASK", - "location": { - "column": "9", - "line": "433", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_THR1_HIGH_THRHIGH_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@30433@macro@ADC_THR1_HIGH_THRHIGH_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_THR1_HIGH_THRHIGH_SHIFT", - "location": { - "column": "9", - "line": "434", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_THR1_HIGH_THRHIGH_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@30488@macro@ADC_THR1_HIGH_THRHIGH", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_THR1_HIGH_THRHIGH", - "location": { - "column": "9", - "line": "435", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_THR1_HIGH_THRHIGH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@30804@macro@ADC_CHAN_THRSEL_CH0_THRSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH0_THRSEL_MASK", - "location": { - "column": "9", - "line": "440", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH0_THRSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@30861@macro@ADC_CHAN_THRSEL_CH0_THRSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH0_THRSEL_SHIFT", - "location": { - "column": "9", - "line": "441", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH0_THRSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@31261@macro@ADC_CHAN_THRSEL_CH0_THRSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH0_THRSEL", - "location": { - "column": "9", - "line": "446", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH0_THRSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@31413@macro@ADC_CHAN_THRSEL_CH1_THRSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH1_THRSEL_MASK", - "location": { - "column": "9", - "line": "447", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH1_THRSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@31470@macro@ADC_CHAN_THRSEL_CH1_THRSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH1_THRSEL_SHIFT", - "location": { - "column": "9", - "line": "448", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH1_THRSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@31525@macro@ADC_CHAN_THRSEL_CH1_THRSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH1_THRSEL", - "location": { - "column": "9", - "line": "449", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH1_THRSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@31677@macro@ADC_CHAN_THRSEL_CH2_THRSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH2_THRSEL_MASK", - "location": { - "column": "9", - "line": "450", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH2_THRSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@31734@macro@ADC_CHAN_THRSEL_CH2_THRSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH2_THRSEL_SHIFT", - "location": { - "column": "9", - "line": "451", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH2_THRSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@31789@macro@ADC_CHAN_THRSEL_CH2_THRSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH2_THRSEL", - "location": { - "column": "9", - "line": "452", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH2_THRSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@31941@macro@ADC_CHAN_THRSEL_CH3_THRSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH3_THRSEL_MASK", - "location": { - "column": "9", - "line": "453", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH3_THRSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@31998@macro@ADC_CHAN_THRSEL_CH3_THRSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH3_THRSEL_SHIFT", - "location": { - "column": "9", - "line": "454", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH3_THRSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@32053@macro@ADC_CHAN_THRSEL_CH3_THRSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH3_THRSEL", - "location": { - "column": "9", - "line": "455", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH3_THRSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@32205@macro@ADC_CHAN_THRSEL_CH4_THRSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH4_THRSEL_MASK", - "location": { - "column": "9", - "line": "456", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH4_THRSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@32263@macro@ADC_CHAN_THRSEL_CH4_THRSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH4_THRSEL_SHIFT", - "location": { - "column": "9", - "line": "457", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH4_THRSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@32318@macro@ADC_CHAN_THRSEL_CH4_THRSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH4_THRSEL", - "location": { - "column": "9", - "line": "458", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH4_THRSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@32470@macro@ADC_CHAN_THRSEL_CH5_THRSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH5_THRSEL_MASK", - "location": { - "column": "9", - "line": "459", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH5_THRSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@32528@macro@ADC_CHAN_THRSEL_CH5_THRSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH5_THRSEL_SHIFT", - "location": { - "column": "9", - "line": "460", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH5_THRSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@32583@macro@ADC_CHAN_THRSEL_CH5_THRSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH5_THRSEL", - "location": { - "column": "9", - "line": "461", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH5_THRSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@32735@macro@ADC_CHAN_THRSEL_CH6_THRSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH6_THRSEL_MASK", - "location": { - "column": "9", - "line": "462", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH6_THRSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@32793@macro@ADC_CHAN_THRSEL_CH6_THRSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH6_THRSEL_SHIFT", - "location": { - "column": "9", - "line": "463", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH6_THRSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@32848@macro@ADC_CHAN_THRSEL_CH6_THRSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH6_THRSEL", - "location": { - "column": "9", - "line": "464", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH6_THRSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@33000@macro@ADC_CHAN_THRSEL_CH7_THRSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH7_THRSEL_MASK", - "location": { - "column": "9", - "line": "465", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH7_THRSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@33058@macro@ADC_CHAN_THRSEL_CH7_THRSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH7_THRSEL_SHIFT", - "location": { - "column": "9", - "line": "466", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH7_THRSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@33113@macro@ADC_CHAN_THRSEL_CH7_THRSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH7_THRSEL", - "location": { - "column": "9", - "line": "467", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH7_THRSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@33265@macro@ADC_CHAN_THRSEL_CH8_THRSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH8_THRSEL_MASK", - "location": { - "column": "9", - "line": "468", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH8_THRSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@33324@macro@ADC_CHAN_THRSEL_CH8_THRSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH8_THRSEL_SHIFT", - "location": { - "column": "9", - "line": "469", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH8_THRSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@33379@macro@ADC_CHAN_THRSEL_CH8_THRSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH8_THRSEL", - "location": { - "column": "9", - "line": "470", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH8_THRSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@33531@macro@ADC_CHAN_THRSEL_CH9_THRSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH9_THRSEL_MASK", - "location": { - "column": "9", - "line": "471", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH9_THRSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@33590@macro@ADC_CHAN_THRSEL_CH9_THRSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH9_THRSEL_SHIFT", - "location": { - "column": "9", - "line": "472", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH9_THRSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@33645@macro@ADC_CHAN_THRSEL_CH9_THRSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH9_THRSEL", - "location": { - "column": "9", - "line": "473", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH9_THRSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@33797@macro@ADC_CHAN_THRSEL_CH10_THRSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH10_THRSEL_MASK", - "location": { - "column": "9", - "line": "474", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH10_THRSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@33856@macro@ADC_CHAN_THRSEL_CH10_THRSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH10_THRSEL_SHIFT", - "location": { - "column": "9", - "line": "475", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH10_THRSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@33912@macro@ADC_CHAN_THRSEL_CH10_THRSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH10_THRSEL", - "location": { - "column": "9", - "line": "476", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH10_THRSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@34066@macro@ADC_CHAN_THRSEL_CH11_THRSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH11_THRSEL_MASK", - "location": { - "column": "9", - "line": "477", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH11_THRSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@34125@macro@ADC_CHAN_THRSEL_CH11_THRSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH11_THRSEL_SHIFT", - "location": { - "column": "9", - "line": "478", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH11_THRSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@34181@macro@ADC_CHAN_THRSEL_CH11_THRSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CHAN_THRSEL_CH11_THRSEL", - "location": { - "column": "9", - "line": "479", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CHAN_THRSEL_CH11_THRSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@34550@macro@ADC_INTEN_SEQA_INTEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_SEQA_INTEN_MASK", - "location": { - "column": "9", - "line": "484", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_SEQA_INTEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@34607@macro@ADC_INTEN_SEQA_INTEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_SEQA_INTEN_SHIFT", - "location": { - "column": "9", - "line": "485", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_SEQA_INTEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@35071@macro@ADC_INTEN_SEQA_INTEN", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_SEQA_INTEN", - "location": { - "column": "9", - "line": "490", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_SEQA_INTEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@35211@macro@ADC_INTEN_SEQB_INTEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_SEQB_INTEN_MASK", - "location": { - "column": "9", - "line": "491", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_SEQB_INTEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@35268@macro@ADC_INTEN_SEQB_INTEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_SEQB_INTEN_SHIFT", - "location": { - "column": "9", - "line": "492", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_SEQB_INTEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@35732@macro@ADC_INTEN_SEQB_INTEN", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_SEQB_INTEN", - "location": { - "column": "9", - "line": "497", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_SEQB_INTEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@35872@macro@ADC_INTEN_OVR_INTEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_OVR_INTEN_MASK", - "location": { - "column": "9", - "line": "498", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_OVR_INTEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@35929@macro@ADC_INTEN_OVR_INTEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_OVR_INTEN_SHIFT", - "location": { - "column": "9", - "line": "499", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_OVR_INTEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@36441@macro@ADC_INTEN_OVR_INTEN", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_OVR_INTEN", - "location": { - "column": "9", - "line": "504", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_OVR_INTEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@36579@macro@ADC_INTEN_ADCMPINTEN0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN0_MASK", - "location": { - "column": "9", - "line": "505", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@36637@macro@ADC_INTEN_ADCMPINTEN0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN0_SHIFT", - "location": { - "column": "9", - "line": "506", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@36871@macro@ADC_INTEN_ADCMPINTEN0", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN0", - "location": { - "column": "9", - "line": "513", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@37013@macro@ADC_INTEN_ADCMPINTEN1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN1_MASK", - "location": { - "column": "9", - "line": "514", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@37071@macro@ADC_INTEN_ADCMPINTEN1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN1_SHIFT", - "location": { - "column": "9", - "line": "515", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@37126@macro@ADC_INTEN_ADCMPINTEN1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN1", - "location": { - "column": "9", - "line": "516", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@37268@macro@ADC_INTEN_ADCMPINTEN2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN2_MASK", - "location": { - "column": "9", - "line": "517", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@37327@macro@ADC_INTEN_ADCMPINTEN2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN2_SHIFT", - "location": { - "column": "9", - "line": "518", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@37382@macro@ADC_INTEN_ADCMPINTEN2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN2", - "location": { - "column": "9", - "line": "519", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@37524@macro@ADC_INTEN_ADCMPINTEN3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN3_MASK", - "location": { - "column": "9", - "line": "520", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@37583@macro@ADC_INTEN_ADCMPINTEN3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN3_SHIFT", - "location": { - "column": "9", - "line": "521", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@37638@macro@ADC_INTEN_ADCMPINTEN3", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN3", - "location": { - "column": "9", - "line": "522", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@37780@macro@ADC_INTEN_ADCMPINTEN4_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN4_MASK", - "location": { - "column": "9", - "line": "523", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN4_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@37840@macro@ADC_INTEN_ADCMPINTEN4_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN4_SHIFT", - "location": { - "column": "9", - "line": "524", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN4_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@37896@macro@ADC_INTEN_ADCMPINTEN4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN4", - "location": { - "column": "9", - "line": "525", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@38038@macro@ADC_INTEN_ADCMPINTEN5_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN5_MASK", - "location": { - "column": "9", - "line": "526", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN5_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@38098@macro@ADC_INTEN_ADCMPINTEN5_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN5_SHIFT", - "location": { - "column": "9", - "line": "527", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN5_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@38154@macro@ADC_INTEN_ADCMPINTEN5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN5", - "location": { - "column": "9", - "line": "528", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@38296@macro@ADC_INTEN_ADCMPINTEN6_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN6_MASK", - "location": { - "column": "9", - "line": "529", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN6_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@38357@macro@ADC_INTEN_ADCMPINTEN6_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN6_SHIFT", - "location": { - "column": "9", - "line": "530", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN6_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@38413@macro@ADC_INTEN_ADCMPINTEN6", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN6", - "location": { - "column": "9", - "line": "531", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@38555@macro@ADC_INTEN_ADCMPINTEN7_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN7_MASK", - "location": { - "column": "9", - "line": "532", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN7_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@38616@macro@ADC_INTEN_ADCMPINTEN7_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN7_SHIFT", - "location": { - "column": "9", - "line": "533", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN7_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@38672@macro@ADC_INTEN_ADCMPINTEN7", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN7", - "location": { - "column": "9", - "line": "534", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@38814@macro@ADC_INTEN_ADCMPINTEN8_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN8_MASK", - "location": { - "column": "9", - "line": "535", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN8_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@38876@macro@ADC_INTEN_ADCMPINTEN8_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN8_SHIFT", - "location": { - "column": "9", - "line": "536", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN8_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@38932@macro@ADC_INTEN_ADCMPINTEN8", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN8", - "location": { - "column": "9", - "line": "537", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@39074@macro@ADC_INTEN_ADCMPINTEN9_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN9_MASK", - "location": { - "column": "9", - "line": "538", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN9_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@39136@macro@ADC_INTEN_ADCMPINTEN9_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN9_SHIFT", - "location": { - "column": "9", - "line": "539", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN9_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@39192@macro@ADC_INTEN_ADCMPINTEN9", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN9", - "location": { - "column": "9", - "line": "540", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@39334@macro@ADC_INTEN_ADCMPINTEN10_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN10_MASK", - "location": { - "column": "9", - "line": "541", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN10_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@39397@macro@ADC_INTEN_ADCMPINTEN10_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN10_SHIFT", - "location": { - "column": "9", - "line": "542", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN10_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@39453@macro@ADC_INTEN_ADCMPINTEN10", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN10", - "location": { - "column": "9", - "line": "543", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN10", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@39597@macro@ADC_INTEN_ADCMPINTEN11_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN11_MASK", - "location": { - "column": "9", - "line": "544", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN11_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@39660@macro@ADC_INTEN_ADCMPINTEN11_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN11_SHIFT", - "location": { - "column": "9", - "line": "545", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN11_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@39716@macro@ADC_INTEN_ADCMPINTEN11", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_INTEN_ADCMPINTEN11", - "location": { - "column": "9", - "line": "546", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_INTEN_ADCMPINTEN11", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@40111@macro@ADC_FLAGS_THCMP0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP0_MASK", - "location": { - "column": "9", - "line": "551", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@40168@macro@ADC_FLAGS_THCMP0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP0_SHIFT", - "location": { - "column": "9", - "line": "552", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@40223@macro@ADC_FLAGS_THCMP0", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP0", - "location": { - "column": "9", - "line": "553", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@40355@macro@ADC_FLAGS_THCMP1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP1_MASK", - "location": { - "column": "9", - "line": "554", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@40412@macro@ADC_FLAGS_THCMP1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP1_SHIFT", - "location": { - "column": "9", - "line": "555", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@40467@macro@ADC_FLAGS_THCMP1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP1", - "location": { - "column": "9", - "line": "556", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@40599@macro@ADC_FLAGS_THCMP2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP2_MASK", - "location": { - "column": "9", - "line": "557", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@40656@macro@ADC_FLAGS_THCMP2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP2_SHIFT", - "location": { - "column": "9", - "line": "558", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@40711@macro@ADC_FLAGS_THCMP2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP2", - "location": { - "column": "9", - "line": "559", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@40843@macro@ADC_FLAGS_THCMP3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP3_MASK", - "location": { - "column": "9", - "line": "560", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@40900@macro@ADC_FLAGS_THCMP3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP3_SHIFT", - "location": { - "column": "9", - "line": "561", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@40955@macro@ADC_FLAGS_THCMP3", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP3", - "location": { - "column": "9", - "line": "562", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@41087@macro@ADC_FLAGS_THCMP4_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP4_MASK", - "location": { - "column": "9", - "line": "563", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP4_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@41145@macro@ADC_FLAGS_THCMP4_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP4_SHIFT", - "location": { - "column": "9", - "line": "564", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP4_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@41200@macro@ADC_FLAGS_THCMP4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP4", - "location": { - "column": "9", - "line": "565", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@41332@macro@ADC_FLAGS_THCMP5_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP5_MASK", - "location": { - "column": "9", - "line": "566", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP5_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@41390@macro@ADC_FLAGS_THCMP5_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP5_SHIFT", - "location": { - "column": "9", - "line": "567", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP5_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@41445@macro@ADC_FLAGS_THCMP5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP5", - "location": { - "column": "9", - "line": "568", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@41577@macro@ADC_FLAGS_THCMP6_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP6_MASK", - "location": { - "column": "9", - "line": "569", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP6_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@41635@macro@ADC_FLAGS_THCMP6_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP6_SHIFT", - "location": { - "column": "9", - "line": "570", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP6_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@41690@macro@ADC_FLAGS_THCMP6", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP6", - "location": { - "column": "9", - "line": "571", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@41822@macro@ADC_FLAGS_THCMP7_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP7_MASK", - "location": { - "column": "9", - "line": "572", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP7_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@41880@macro@ADC_FLAGS_THCMP7_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP7_SHIFT", - "location": { - "column": "9", - "line": "573", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP7_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@41935@macro@ADC_FLAGS_THCMP7", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP7", - "location": { - "column": "9", - "line": "574", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@42067@macro@ADC_FLAGS_THCMP8_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP8_MASK", - "location": { - "column": "9", - "line": "575", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP8_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@42126@macro@ADC_FLAGS_THCMP8_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP8_SHIFT", - "location": { - "column": "9", - "line": "576", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP8_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@42181@macro@ADC_FLAGS_THCMP8", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP8", - "location": { - "column": "9", - "line": "577", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@42313@macro@ADC_FLAGS_THCMP9_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP9_MASK", - "location": { - "column": "9", - "line": "578", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP9_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@42372@macro@ADC_FLAGS_THCMP9_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP9_SHIFT", - "location": { - "column": "9", - "line": "579", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP9_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@42427@macro@ADC_FLAGS_THCMP9", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP9", - "location": { - "column": "9", - "line": "580", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@42559@macro@ADC_FLAGS_THCMP10_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP10_MASK", - "location": { - "column": "9", - "line": "581", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP10_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@42618@macro@ADC_FLAGS_THCMP10_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP10_SHIFT", - "location": { - "column": "9", - "line": "582", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP10_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@42674@macro@ADC_FLAGS_THCMP10", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP10", - "location": { - "column": "9", - "line": "583", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP10", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@42808@macro@ADC_FLAGS_THCMP11_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP11_MASK", - "location": { - "column": "9", - "line": "584", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP11_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@42867@macro@ADC_FLAGS_THCMP11_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP11_SHIFT", - "location": { - "column": "9", - "line": "585", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP11_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@42923@macro@ADC_FLAGS_THCMP11", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP11", - "location": { - "column": "9", - "line": "586", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP11", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@43057@macro@ADC_FLAGS_OVERRUN0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN0_MASK", - "location": { - "column": "9", - "line": "587", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@43117@macro@ADC_FLAGS_OVERRUN0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN0_SHIFT", - "location": { - "column": "9", - "line": "588", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@43173@macro@ADC_FLAGS_OVERRUN0", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN0", - "location": { - "column": "9", - "line": "589", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@43309@macro@ADC_FLAGS_OVERRUN1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN1_MASK", - "location": { - "column": "9", - "line": "590", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@43369@macro@ADC_FLAGS_OVERRUN1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN1_SHIFT", - "location": { - "column": "9", - "line": "591", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@43425@macro@ADC_FLAGS_OVERRUN1", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN1", - "location": { - "column": "9", - "line": "592", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@43561@macro@ADC_FLAGS_OVERRUN2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN2_MASK", - "location": { - "column": "9", - "line": "593", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@43621@macro@ADC_FLAGS_OVERRUN2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN2_SHIFT", - "location": { - "column": "9", - "line": "594", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@43677@macro@ADC_FLAGS_OVERRUN2", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN2", - "location": { - "column": "9", - "line": "595", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@43813@macro@ADC_FLAGS_OVERRUN3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN3_MASK", - "location": { - "column": "9", - "line": "596", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@43873@macro@ADC_FLAGS_OVERRUN3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN3_SHIFT", - "location": { - "column": "9", - "line": "597", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@43929@macro@ADC_FLAGS_OVERRUN3", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN3", - "location": { - "column": "9", - "line": "598", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@44065@macro@ADC_FLAGS_OVERRUN4_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN4_MASK", - "location": { - "column": "9", - "line": "599", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN4_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@44126@macro@ADC_FLAGS_OVERRUN4_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN4_SHIFT", - "location": { - "column": "9", - "line": "600", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN4_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@44182@macro@ADC_FLAGS_OVERRUN4", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN4", - "location": { - "column": "9", - "line": "601", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@44318@macro@ADC_FLAGS_OVERRUN5_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN5_MASK", - "location": { - "column": "9", - "line": "602", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN5_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@44379@macro@ADC_FLAGS_OVERRUN5_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN5_SHIFT", - "location": { - "column": "9", - "line": "603", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN5_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@44435@macro@ADC_FLAGS_OVERRUN5", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN5", - "location": { - "column": "9", - "line": "604", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@44571@macro@ADC_FLAGS_OVERRUN6_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN6_MASK", - "location": { - "column": "9", - "line": "605", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN6_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@44632@macro@ADC_FLAGS_OVERRUN6_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN6_SHIFT", - "location": { - "column": "9", - "line": "606", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN6_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@44688@macro@ADC_FLAGS_OVERRUN6", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN6", - "location": { - "column": "9", - "line": "607", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@44824@macro@ADC_FLAGS_OVERRUN7_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN7_MASK", - "location": { - "column": "9", - "line": "608", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN7_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@44885@macro@ADC_FLAGS_OVERRUN7_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN7_SHIFT", - "location": { - "column": "9", - "line": "609", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN7_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@44941@macro@ADC_FLAGS_OVERRUN7", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN7", - "location": { - "column": "9", - "line": "610", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@45077@macro@ADC_FLAGS_OVERRUN8_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN8_MASK", - "location": { - "column": "9", - "line": "611", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN8_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@45139@macro@ADC_FLAGS_OVERRUN8_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN8_SHIFT", - "location": { - "column": "9", - "line": "612", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN8_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@45195@macro@ADC_FLAGS_OVERRUN8", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN8", - "location": { - "column": "9", - "line": "613", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@45331@macro@ADC_FLAGS_OVERRUN9_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN9_MASK", - "location": { - "column": "9", - "line": "614", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN9_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@45393@macro@ADC_FLAGS_OVERRUN9_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN9_SHIFT", - "location": { - "column": "9", - "line": "615", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN9_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@45449@macro@ADC_FLAGS_OVERRUN9", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN9", - "location": { - "column": "9", - "line": "616", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@45585@macro@ADC_FLAGS_OVERRUN10_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN10_MASK", - "location": { - "column": "9", - "line": "617", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN10_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@45647@macro@ADC_FLAGS_OVERRUN10_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN10_SHIFT", - "location": { - "column": "9", - "line": "618", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN10_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@45703@macro@ADC_FLAGS_OVERRUN10", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN10", - "location": { - "column": "9", - "line": "619", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN10", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@45841@macro@ADC_FLAGS_OVERRUN11_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN11_MASK", - "location": { - "column": "9", - "line": "620", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN11_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@45903@macro@ADC_FLAGS_OVERRUN11_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN11_SHIFT", - "location": { - "column": "9", - "line": "621", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN11_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@45959@macro@ADC_FLAGS_OVERRUN11", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVERRUN11", - "location": { - "column": "9", - "line": "622", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVERRUN11", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@46097@macro@ADC_FLAGS_SEQA_OVR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_SEQA_OVR_MASK", - "location": { - "column": "9", - "line": "623", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_SEQA_OVR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@46160@macro@ADC_FLAGS_SEQA_OVR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_SEQA_OVR_SHIFT", - "location": { - "column": "9", - "line": "624", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_SEQA_OVR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@46216@macro@ADC_FLAGS_SEQA_OVR", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_SEQA_OVR", - "location": { - "column": "9", - "line": "625", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_SEQA_OVR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@46352@macro@ADC_FLAGS_SEQB_OVR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_SEQB_OVR_MASK", - "location": { - "column": "9", - "line": "626", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_SEQB_OVR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@46415@macro@ADC_FLAGS_SEQB_OVR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_SEQB_OVR_SHIFT", - "location": { - "column": "9", - "line": "627", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_SEQB_OVR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@46471@macro@ADC_FLAGS_SEQB_OVR", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_SEQB_OVR", - "location": { - "column": "9", - "line": "628", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_SEQB_OVR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@46607@macro@ADC_FLAGS_SEQA_INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_SEQA_INT_MASK", - "location": { - "column": "9", - "line": "629", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_SEQA_INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@46671@macro@ADC_FLAGS_SEQA_INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_SEQA_INT_SHIFT", - "location": { - "column": "9", - "line": "630", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_SEQA_INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@46727@macro@ADC_FLAGS_SEQA_INT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_SEQA_INT", - "location": { - "column": "9", - "line": "631", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_SEQA_INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@46863@macro@ADC_FLAGS_SEQB_INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_SEQB_INT_MASK", - "location": { - "column": "9", - "line": "632", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_SEQB_INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@46927@macro@ADC_FLAGS_SEQB_INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_SEQB_INT_SHIFT", - "location": { - "column": "9", - "line": "633", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_SEQB_INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@46983@macro@ADC_FLAGS_SEQB_INT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_SEQB_INT", - "location": { - "column": "9", - "line": "634", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_SEQB_INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@47119@macro@ADC_FLAGS_THCMP_INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP_INT_MASK", - "location": { - "column": "9", - "line": "635", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP_INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@47183@macro@ADC_FLAGS_THCMP_INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP_INT_SHIFT", - "location": { - "column": "9", - "line": "636", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP_INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@47239@macro@ADC_FLAGS_THCMP_INT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_THCMP_INT", - "location": { - "column": "9", - "line": "637", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_THCMP_INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@47377@macro@ADC_FLAGS_OVR_INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVR_INT_MASK", - "location": { - "column": "9", - "line": "638", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVR_INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@47441@macro@ADC_FLAGS_OVR_INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVR_INT_SHIFT", - "location": { - "column": "9", - "line": "639", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVR_INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@47497@macro@ADC_FLAGS_OVR_INT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_FLAGS_OVR_INT", - "location": { - "column": "9", - "line": "640", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_FLAGS_OVR_INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@47701@macro@ADC_STARTUP_ADC_ENA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_STARTUP_ADC_ENA_MASK", - "location": { - "column": "9", - "line": "645", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_STARTUP_ADC_ENA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@47758@macro@ADC_STARTUP_ADC_ENA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_STARTUP_ADC_ENA_SHIFT", - "location": { - "column": "9", - "line": "646", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_STARTUP_ADC_ENA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@47813@macro@ADC_STARTUP_ADC_ENA", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_STARTUP_ADC_ENA", - "location": { - "column": "9", - "line": "647", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_STARTUP_ADC_ENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@47951@macro@ADC_STARTUP_ADC_INIT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_STARTUP_ADC_INIT_MASK", - "location": { - "column": "9", - "line": "648", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_STARTUP_ADC_INIT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@48008@macro@ADC_STARTUP_ADC_INIT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_STARTUP_ADC_INIT_SHIFT", - "location": { - "column": "9", - "line": "649", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_STARTUP_ADC_INIT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@48063@macro@ADC_STARTUP_ADC_INIT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_STARTUP_ADC_INIT", - "location": { - "column": "9", - "line": "650", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_STARTUP_ADC_INIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@48275@macro@ADC_CALIB_CALIB_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CALIB_CALIB_MASK", - "location": { - "column": "9", - "line": "655", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CALIB_CALIB_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@48332@macro@ADC_CALIB_CALIB_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CALIB_CALIB_SHIFT", - "location": { - "column": "9", - "line": "656", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CALIB_CALIB_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@48387@macro@ADC_CALIB_CALIB", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CALIB_CALIB", - "location": { - "column": "9", - "line": "657", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CALIB_CALIB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@48517@macro@ADC_CALIB_CALREQD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CALIB_CALREQD_MASK", - "location": { - "column": "9", - "line": "658", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CALIB_CALREQD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@48574@macro@ADC_CALIB_CALREQD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CALIB_CALREQD_SHIFT", - "location": { - "column": "9", - "line": "659", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CALIB_CALREQD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@48629@macro@ADC_CALIB_CALREQD", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CALIB_CALREQD", - "location": { - "column": "9", - "line": "660", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CALIB_CALREQD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@48763@macro@ADC_CALIB_CALVALUE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CALIB_CALVALUE_MASK", - "location": { - "column": "9", - "line": "661", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CALIB_CALVALUE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@48822@macro@ADC_CALIB_CALVALUE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CALIB_CALVALUE_SHIFT", - "location": { - "column": "9", - "line": "662", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CALIB_CALVALUE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@48877@macro@ADC_CALIB_CALVALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CALIB_CALVALUE", - "location": { - "column": "9", - "line": "663", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_CALIB_CALVALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@49172@macro@ADC0_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC0_BASE", - "location": { - "column": "9", - "line": "674", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC0_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@49273@macro@ADC0", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC0", - "location": { - "column": "9", - "line": "676", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@49406@macro@ADC_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_BASE_ADDRS", - "location": { - "column": "9", - "line": "678", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@49528@macro@ADC_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_BASE_PTRS", - "location": { - "column": "9", - "line": "680", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@49641@macro@ADC_SEQ_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_SEQ_IRQS", - "location": { - "column": "9", - "line": "682", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_SEQ_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@49726@macro@ADC_THCMP_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_THCMP_IRQS", - "location": { - "column": "9", - "line": "683", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADC_THCMP_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@ASYNC_SYSCON_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "700", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@ASYNC_SYSCON_Type@FI@ASYNCPRESETCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "ASYNCPRESETCTRL", - "location": { - "column": "17", - "line": "701", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNCPRESETCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_700_9" - }, - { - "ID": "c:@SA@ASYNC_SYSCON_Type@FI@ASYNCPRESETCTRLSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "ASYNCPRESETCTRLSET", - "location": { - "column": "17", - "line": "702", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNCPRESETCTRLSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_700_9" - }, - { - "ID": "c:@SA@ASYNC_SYSCON_Type@FI@ASYNCPRESETCTRLCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ASYNCPRESETCTRLCLR", - "location": { - "column": "17", - "line": "703", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNCPRESETCTRLCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_700_9" - }, - { - "ID": "c:@SA@ASYNC_SYSCON_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "704", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_700_9" - }, - { - "ID": "c:@SA@ASYNC_SYSCON_Type@FI@ASYNCAPBCLKCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "ASYNCAPBCLKCTRL", - "location": { - "column": "17", - "line": "705", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNCAPBCLKCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_700_9" - }, - { - "ID": "c:@SA@ASYNC_SYSCON_Type@FI@ASYNCAPBCLKCTRLSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "ASYNCAPBCLKCTRLSET", - "location": { - "column": "17", - "line": "706", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNCAPBCLKCTRLSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_700_9" - }, - { - "ID": "c:@SA@ASYNC_SYSCON_Type@FI@ASYNCAPBCLKCTRLCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ASYNCAPBCLKCTRLCLR", - "location": { - "column": "17", - "line": "707", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNCAPBCLKCTRLCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_700_9" - }, - { - "ID": "c:@SA@ASYNC_SYSCON_Type@FI@RESERVED_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_1", - "location": { - "column": "16", - "line": "708", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_700_9" - }, - { - "ID": "c:@SA@ASYNC_SYSCON_Type@FI@ASYNCAPBCLKSELA", - "What": "FieldDecl", - "defdec": "Def", - "display": "ASYNCAPBCLKSELA", - "location": { - "column": "17", - "line": "709", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNCAPBCLKSELA", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_700_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@ASYNC_SYSCON_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct ASYNC_SYSCON_Type", - "location": { - "column": "3", - "line": "710", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@51429@macro@ASYNC_SYSCON_ASYNCPRESETCTRL_CTIMER3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCPRESETCTRL_CTIMER3_MASK", - "location": { - "column": "9", - "line": "723", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCPRESETCTRL_CTIMER3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@51490@macro@ASYNC_SYSCON_ASYNCPRESETCTRL_CTIMER3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCPRESETCTRL_CTIMER3_SHIFT", - "location": { - "column": "9", - "line": "724", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCPRESETCTRL_CTIMER3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@51548@macro@ASYNC_SYSCON_ASYNCPRESETCTRL_CTIMER3", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCPRESETCTRL_CTIMER3", - "location": { - "column": "9", - "line": "725", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCPRESETCTRL_CTIMER3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@51807@macro@ASYNC_SYSCON_ASYNCPRESETCTRLSET_ARST_SET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCPRESETCTRLSET_ARST_SET_MASK", - "location": { - "column": "9", - "line": "730", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCPRESETCTRLSET_ARST_SET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@51876@macro@ASYNC_SYSCON_ASYNCPRESETCTRLSET_ARST_SET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCPRESETCTRLSET_ARST_SET_SHIFT", - "location": { - "column": "9", - "line": "731", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCPRESETCTRLSET_ARST_SET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@51937@macro@ASYNC_SYSCON_ASYNCPRESETCTRLSET_ARST_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCPRESETCTRLSET_ARST_SET", - "location": { - "column": "9", - "line": "732", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCPRESETCTRLSET_ARST_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@52209@macro@ASYNC_SYSCON_ASYNCPRESETCTRLCLR_ARST_CLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCPRESETCTRLCLR_ARST_CLR_MASK", - "location": { - "column": "9", - "line": "737", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCPRESETCTRLCLR_ARST_CLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@52278@macro@ASYNC_SYSCON_ASYNCPRESETCTRLCLR_ARST_CLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCPRESETCTRLCLR_ARST_CLR_SHIFT", - "location": { - "column": "9", - "line": "738", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCPRESETCTRLCLR_ARST_CLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@52339@macro@ASYNC_SYSCON_ASYNCPRESETCTRLCLR_ARST_CLR", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCPRESETCTRLCLR_ARST_CLR", - "location": { - "column": "9", - "line": "739", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCPRESETCTRLCLR_ARST_CLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@52609@macro@ASYNC_SYSCON_ASYNCAPBCLKCTRL_CTIMER3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCAPBCLKCTRL_CTIMER3_MASK", - "location": { - "column": "9", - "line": "744", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCAPBCLKCTRL_CTIMER3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@52670@macro@ASYNC_SYSCON_ASYNCAPBCLKCTRL_CTIMER3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCAPBCLKCTRL_CTIMER3_SHIFT", - "location": { - "column": "9", - "line": "745", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCAPBCLKCTRL_CTIMER3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@52728@macro@ASYNC_SYSCON_ASYNCAPBCLKCTRL_CTIMER3", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCAPBCLKCTRL_CTIMER3", - "location": { - "column": "9", - "line": "746", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCAPBCLKCTRL_CTIMER3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@52987@macro@ASYNC_SYSCON_ASYNCAPBCLKCTRLSET_ACLK_SET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCAPBCLKCTRLSET_ACLK_SET_MASK", - "location": { - "column": "9", - "line": "751", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCAPBCLKCTRLSET_ACLK_SET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@53056@macro@ASYNC_SYSCON_ASYNCAPBCLKCTRLSET_ACLK_SET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCAPBCLKCTRLSET_ACLK_SET_SHIFT", - "location": { - "column": "9", - "line": "752", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCAPBCLKCTRLSET_ACLK_SET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@53117@macro@ASYNC_SYSCON_ASYNCAPBCLKCTRLSET_ACLK_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCAPBCLKCTRLSET_ACLK_SET", - "location": { - "column": "9", - "line": "753", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCAPBCLKCTRLSET_ACLK_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@53389@macro@ASYNC_SYSCON_ASYNCAPBCLKCTRLCLR_ACLK_CLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCAPBCLKCTRLCLR_ACLK_CLR_MASK", - "location": { - "column": "9", - "line": "758", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCAPBCLKCTRLCLR_ACLK_CLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@53458@macro@ASYNC_SYSCON_ASYNCAPBCLKCTRLCLR_ACLK_CLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCAPBCLKCTRLCLR_ACLK_CLR_SHIFT", - "location": { - "column": "9", - "line": "759", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCAPBCLKCTRLCLR_ACLK_CLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@53519@macro@ASYNC_SYSCON_ASYNCAPBCLKCTRLCLR_ACLK_CLR", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCAPBCLKCTRLCLR_ACLK_CLR", - "location": { - "column": "9", - "line": "760", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCAPBCLKCTRLCLR_ACLK_CLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@53790@macro@ASYNC_SYSCON_ASYNCAPBCLKSELA_SEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCAPBCLKSELA_SEL_MASK", - "location": { - "column": "9", - "line": "765", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCAPBCLKSELA_SEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@53847@macro@ASYNC_SYSCON_ASYNCAPBCLKSELA_SEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCAPBCLKSELA_SEL_SHIFT", - "location": { - "column": "9", - "line": "766", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCAPBCLKSELA_SEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@54072@macro@ASYNC_SYSCON_ASYNCAPBCLKSELA_SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_ASYNCAPBCLKSELA_SEL", - "location": { - "column": "9", - "line": "773", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_ASYNCAPBCLKSELA_SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@54421@macro@ASYNC_SYSCON_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_BASE", - "location": { - "column": "9", - "line": "784", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@54530@macro@ASYNC_SYSCON", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON", - "location": { - "column": "9", - "line": "786", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@54689@macro@ASYNC_SYSCON_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_BASE_ADDRS", - "location": { - "column": "9", - "line": "788", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@54828@macro@ASYNC_SYSCON_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_SYSCON_BASE_PTRS", - "location": { - "column": "9", - "line": "790", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNC_SYSCON_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@CRC_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "807", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@CRC_Type@FI@MODE", - "What": "FieldDecl", - "defdec": "Def", - "display": "MODE", - "location": { - "column": "17", - "line": "808", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MODE", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_807_9" - }, - { - "ID": "c:@SA@CRC_Type@FI@SEED", - "What": "FieldDecl", - "defdec": "Def", - "display": "SEED", - "location": { - "column": "17", - "line": "809", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SEED", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_807_9" - }, - { - "ID": "c:@SA@CRC_Type@Ua", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "810", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@CRC_Type@Ua@FI@SUM", - "What": "FieldDecl", - "defdec": "Def", - "display": "SUM", - "location": { - "column": "19", - "line": "811", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SUM", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_807_9::_anonymous_LPC51U68_h_810_3" - }, - { - "ID": "c:@SA@CRC_Type@Ua@FI@WR_DATA", - "What": "FieldDecl", - "defdec": "Def", - "display": "WR_DATA", - "location": { - "column": "19", - "line": "812", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WR_DATA", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_807_9::_anonymous_LPC51U68_h_810_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_807_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@CRC_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct CRC_Type", - "location": { - "column": "3", - "line": "814", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@56102@macro@CRC_MODE_CRC_POLY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_CRC_POLY_MASK", - "location": { - "column": "9", - "line": "827", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_CRC_POLY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@56159@macro@CRC_MODE_CRC_POLY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_CRC_POLY_SHIFT", - "location": { - "column": "9", - "line": "828", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_CRC_POLY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@56214@macro@CRC_MODE_CRC_POLY", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_CRC_POLY", - "location": { - "column": "9", - "line": "829", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_CRC_POLY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@56348@macro@CRC_MODE_BIT_RVS_WR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_BIT_RVS_WR_MASK", - "location": { - "column": "9", - "line": "830", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_BIT_RVS_WR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@56405@macro@CRC_MODE_BIT_RVS_WR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_BIT_RVS_WR_SHIFT", - "location": { - "column": "9", - "line": "831", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_BIT_RVS_WR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@56460@macro@CRC_MODE_BIT_RVS_WR", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_BIT_RVS_WR", - "location": { - "column": "9", - "line": "832", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_BIT_RVS_WR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@56598@macro@CRC_MODE_CMPL_WR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_CMPL_WR_MASK", - "location": { - "column": "9", - "line": "833", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_CMPL_WR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@56655@macro@CRC_MODE_CMPL_WR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_CMPL_WR_SHIFT", - "location": { - "column": "9", - "line": "834", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_CMPL_WR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@56710@macro@CRC_MODE_CMPL_WR", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_CMPL_WR", - "location": { - "column": "9", - "line": "835", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_CMPL_WR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@56842@macro@CRC_MODE_BIT_RVS_SUM_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_BIT_RVS_SUM_MASK", - "location": { - "column": "9", - "line": "836", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_BIT_RVS_SUM_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@56900@macro@CRC_MODE_BIT_RVS_SUM_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_BIT_RVS_SUM_SHIFT", - "location": { - "column": "9", - "line": "837", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_BIT_RVS_SUM_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@56955@macro@CRC_MODE_BIT_RVS_SUM", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_BIT_RVS_SUM", - "location": { - "column": "9", - "line": "838", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_BIT_RVS_SUM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@57095@macro@CRC_MODE_CMPL_SUM_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_CMPL_SUM_MASK", - "location": { - "column": "9", - "line": "839", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_CMPL_SUM_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@57153@macro@CRC_MODE_CMPL_SUM_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_CMPL_SUM_SHIFT", - "location": { - "column": "9", - "line": "840", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_CMPL_SUM_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@57208@macro@CRC_MODE_CMPL_SUM", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_MODE_CMPL_SUM", - "location": { - "column": "9", - "line": "841", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_MODE_CMPL_SUM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@57405@macro@CRC_SEED_CRC_SEED_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_SEED_CRC_SEED_MASK", - "location": { - "column": "9", - "line": "846", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_SEED_CRC_SEED_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@57469@macro@CRC_SEED_CRC_SEED_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_SEED_CRC_SEED_SHIFT", - "location": { - "column": "9", - "line": "847", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_SEED_CRC_SEED_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@57524@macro@CRC_SEED_CRC_SEED", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_SEED_CRC_SEED", - "location": { - "column": "9", - "line": "848", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_SEED_CRC_SEED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@57724@macro@CRC_SUM_CRC_SUM_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_SUM_CRC_SUM_MASK", - "location": { - "column": "9", - "line": "853", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_SUM_CRC_SUM_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@57788@macro@CRC_SUM_CRC_SUM_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_SUM_CRC_SUM_SHIFT", - "location": { - "column": "9", - "line": "854", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_SUM_CRC_SUM_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@57843@macro@CRC_SUM_CRC_SUM", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_SUM_CRC_SUM", - "location": { - "column": "9", - "line": "855", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_SUM_CRC_SUM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@58039@macro@CRC_WR_DATA_CRC_WR_DATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_WR_DATA_CRC_WR_DATA_MASK", - "location": { - "column": "9", - "line": "860", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_WR_DATA_CRC_WR_DATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@58103@macro@CRC_WR_DATA_CRC_WR_DATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_WR_DATA_CRC_WR_DATA_SHIFT", - "location": { - "column": "9", - "line": "861", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_WR_DATA_CRC_WR_DATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@58158@macro@CRC_WR_DATA_CRC_WR_DATA", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_WR_DATA_CRC_WR_DATA", - "location": { - "column": "9", - "line": "862", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_WR_DATA_CRC_WR_DATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@58469@macro@CRC_ENGINE_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_ENGINE_BASE", - "location": { - "column": "9", - "line": "873", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_ENGINE_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@58576@macro@CRC_ENGINE", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_ENGINE", - "location": { - "column": "9", - "line": "875", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_ENGINE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@58715@macro@CRC_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_BASE_ADDRS", - "location": { - "column": "9", - "line": "877", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@58843@macro@CRC_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_BASE_PTRS", - "location": { - "column": "9", - "line": "879", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CRC_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@CTIMER_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "896", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@CTIMER_Type@FI@IR", - "What": "FieldDecl", - "defdec": "Def", - "display": "IR", - "location": { - "column": "17", - "line": "897", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_896_9" - }, - { - "ID": "c:@SA@CTIMER_Type@FI@TCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "TCR", - "location": { - "column": "17", - "line": "898", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "TCR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_896_9" - }, - { - "ID": "c:@SA@CTIMER_Type@FI@TC", - "What": "FieldDecl", - "defdec": "Def", - "display": "TC", - "location": { - "column": "17", - "line": "899", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "TC", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_896_9" - }, - { - "ID": "c:@SA@CTIMER_Type@FI@PR", - "What": "FieldDecl", - "defdec": "Def", - "display": "PR", - "location": { - "column": "17", - "line": "900", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_896_9" - }, - { - "ID": "c:@SA@CTIMER_Type@FI@PC", - "What": "FieldDecl", - "defdec": "Def", - "display": "PC", - "location": { - "column": "17", - "line": "901", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PC", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_896_9" - }, - { - "ID": "c:@SA@CTIMER_Type@FI@MCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "MCR", - "location": { - "column": "17", - "line": "902", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MCR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_896_9" - }, - { - "ID": "c:@SA@CTIMER_Type@FI@MR", - "What": "FieldDecl", - "defdec": "Def", - "display": "MR", - "location": { - "column": "17", - "line": "903", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_896_9" - }, - { - "ID": "c:@SA@CTIMER_Type@FI@CCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "CCR", - "location": { - "column": "17", - "line": "904", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CCR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_896_9" - }, - { - "ID": "c:@SA@CTIMER_Type@FI@CR", - "What": "FieldDecl", - "defdec": "Def", - "display": "CR", - "location": { - "column": "17", - "line": "905", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_896_9" - }, - { - "ID": "c:@SA@CTIMER_Type@FI@EMR", - "What": "FieldDecl", - "defdec": "Def", - "display": "EMR", - "location": { - "column": "17", - "line": "906", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "EMR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_896_9" - }, - { - "ID": "c:@SA@CTIMER_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "907", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_896_9" - }, - { - "ID": "c:@SA@CTIMER_Type@FI@CTCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTCR", - "location": { - "column": "17", - "line": "908", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTCR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_896_9" - }, - { - "ID": "c:@SA@CTIMER_Type@FI@PWMC", - "What": "FieldDecl", - "defdec": "Def", - "display": "PWMC", - "location": { - "column": "17", - "line": "909", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PWMC", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_896_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@CTIMER_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct CTIMER_Type", - "location": { - "column": "3", - "line": "910", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@62414@macro@CTIMER_IR_MR0INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_MR0INT_MASK", - "location": { - "column": "9", - "line": "923", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_MR0INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@62471@macro@CTIMER_IR_MR0INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_MR0INT_SHIFT", - "location": { - "column": "9", - "line": "924", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_MR0INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@62526@macro@CTIMER_IR_MR0INT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_MR0INT", - "location": { - "column": "9", - "line": "925", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_MR0INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@62658@macro@CTIMER_IR_MR1INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_MR1INT_MASK", - "location": { - "column": "9", - "line": "926", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_MR1INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@62715@macro@CTIMER_IR_MR1INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_MR1INT_SHIFT", - "location": { - "column": "9", - "line": "927", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_MR1INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@62770@macro@CTIMER_IR_MR1INT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_MR1INT", - "location": { - "column": "9", - "line": "928", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_MR1INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@62902@macro@CTIMER_IR_MR2INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_MR2INT_MASK", - "location": { - "column": "9", - "line": "929", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_MR2INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@62959@macro@CTIMER_IR_MR2INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_MR2INT_SHIFT", - "location": { - "column": "9", - "line": "930", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_MR2INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@63014@macro@CTIMER_IR_MR2INT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_MR2INT", - "location": { - "column": "9", - "line": "931", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_MR2INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@63146@macro@CTIMER_IR_MR3INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_MR3INT_MASK", - "location": { - "column": "9", - "line": "932", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_MR3INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@63203@macro@CTIMER_IR_MR3INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_MR3INT_SHIFT", - "location": { - "column": "9", - "line": "933", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_MR3INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@63258@macro@CTIMER_IR_MR3INT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_MR3INT", - "location": { - "column": "9", - "line": "934", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_MR3INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@63390@macro@CTIMER_IR_CR0INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_CR0INT_MASK", - "location": { - "column": "9", - "line": "935", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_CR0INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@63448@macro@CTIMER_IR_CR0INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_CR0INT_SHIFT", - "location": { - "column": "9", - "line": "936", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_CR0INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@63503@macro@CTIMER_IR_CR0INT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_CR0INT", - "location": { - "column": "9", - "line": "937", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_CR0INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@63635@macro@CTIMER_IR_CR1INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_CR1INT_MASK", - "location": { - "column": "9", - "line": "938", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_CR1INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@63693@macro@CTIMER_IR_CR1INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_CR1INT_SHIFT", - "location": { - "column": "9", - "line": "939", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_CR1INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@63748@macro@CTIMER_IR_CR1INT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_CR1INT", - "location": { - "column": "9", - "line": "940", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_CR1INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@63880@macro@CTIMER_IR_CR2INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_CR2INT_MASK", - "location": { - "column": "9", - "line": "941", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_CR2INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@63938@macro@CTIMER_IR_CR2INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_CR2INT_SHIFT", - "location": { - "column": "9", - "line": "942", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_CR2INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@63993@macro@CTIMER_IR_CR2INT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_CR2INT", - "location": { - "column": "9", - "line": "943", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_CR2INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@64125@macro@CTIMER_IR_CR3INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_CR3INT_MASK", - "location": { - "column": "9", - "line": "944", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_CR3INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@64183@macro@CTIMER_IR_CR3INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_CR3INT_SHIFT", - "location": { - "column": "9", - "line": "945", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_CR3INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@64238@macro@CTIMER_IR_CR3INT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IR_CR3INT", - "location": { - "column": "9", - "line": "946", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IR_CR3INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@64554@macro@CTIMER_TCR_CEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_TCR_CEN_MASK", - "location": { - "column": "9", - "line": "951", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_TCR_CEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@64611@macro@CTIMER_TCR_CEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_TCR_CEN_SHIFT", - "location": { - "column": "9", - "line": "952", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_TCR_CEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@64815@macro@CTIMER_TCR_CEN", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_TCR_CEN", - "location": { - "column": "9", - "line": "957", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_TCR_CEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@64943@macro@CTIMER_TCR_CRST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_TCR_CRST_MASK", - "location": { - "column": "9", - "line": "958", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_TCR_CRST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@65000@macro@CTIMER_TCR_CRST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_TCR_CRST_SHIFT", - "location": { - "column": "9", - "line": "959", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_TCR_CRST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@65313@macro@CTIMER_TCR_CRST", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_TCR_CRST", - "location": { - "column": "9", - "line": "964", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_TCR_CRST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@65608@macro@CTIMER_TC_TCVAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_TC_TCVAL_MASK", - "location": { - "column": "9", - "line": "969", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_TC_TCVAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@65672@macro@CTIMER_TC_TCVAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_TC_TCVAL_SHIFT", - "location": { - "column": "9", - "line": "970", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_TC_TCVAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@65727@macro@CTIMER_TC_TCVAL", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_TC_TCVAL", - "location": { - "column": "9", - "line": "971", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_TC_TCVAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@66026@macro@CTIMER_PR_PRVAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PR_PRVAL_MASK", - "location": { - "column": "9", - "line": "976", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PR_PRVAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@66090@macro@CTIMER_PR_PRVAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PR_PRVAL_SHIFT", - "location": { - "column": "9", - "line": "977", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PR_PRVAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@66145@macro@CTIMER_PR_PRVAL", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PR_PRVAL", - "location": { - "column": "9", - "line": "978", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PR_PRVAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@66554@macro@CTIMER_PC_PCVAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PC_PCVAL_MASK", - "location": { - "column": "9", - "line": "983", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PC_PCVAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@66618@macro@CTIMER_PC_PCVAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PC_PCVAL_SHIFT", - "location": { - "column": "9", - "line": "984", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PC_PCVAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@66673@macro@CTIMER_PC_PCVAL", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PC_PCVAL", - "location": { - "column": "9", - "line": "985", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PC_PCVAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@66971@macro@CTIMER_MCR_MR0I_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR0I_MASK", - "location": { - "column": "9", - "line": "990", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR0I_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@67028@macro@CTIMER_MCR_MR0I_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR0I_SHIFT", - "location": { - "column": "9", - "line": "991", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR0I_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@67083@macro@CTIMER_MCR_MR0I", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR0I", - "location": { - "column": "9", - "line": "992", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR0I", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@67213@macro@CTIMER_MCR_MR0R_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR0R_MASK", - "location": { - "column": "9", - "line": "993", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR0R_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@67270@macro@CTIMER_MCR_MR0R_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR0R_SHIFT", - "location": { - "column": "9", - "line": "994", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR0R_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@67325@macro@CTIMER_MCR_MR0R", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR0R", - "location": { - "column": "9", - "line": "995", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR0R", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@67455@macro@CTIMER_MCR_MR0S_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR0S_MASK", - "location": { - "column": "9", - "line": "996", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR0S_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@67512@macro@CTIMER_MCR_MR0S_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR0S_SHIFT", - "location": { - "column": "9", - "line": "997", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR0S_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@67567@macro@CTIMER_MCR_MR0S", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR0S", - "location": { - "column": "9", - "line": "998", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR0S", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@67697@macro@CTIMER_MCR_MR1I_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR1I_MASK", - "location": { - "column": "9", - "line": "999", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR1I_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@67754@macro@CTIMER_MCR_MR1I_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR1I_SHIFT", - "location": { - "column": "9", - "line": "1000", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR1I_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@67809@macro@CTIMER_MCR_MR1I", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR1I", - "location": { - "column": "9", - "line": "1001", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR1I", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@67939@macro@CTIMER_MCR_MR1R_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR1R_MASK", - "location": { - "column": "9", - "line": "1002", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR1R_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@67997@macro@CTIMER_MCR_MR1R_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR1R_SHIFT", - "location": { - "column": "9", - "line": "1003", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR1R_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@68052@macro@CTIMER_MCR_MR1R", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR1R", - "location": { - "column": "9", - "line": "1004", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR1R", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@68182@macro@CTIMER_MCR_MR1S_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR1S_MASK", - "location": { - "column": "9", - "line": "1005", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR1S_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@68240@macro@CTIMER_MCR_MR1S_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR1S_SHIFT", - "location": { - "column": "9", - "line": "1006", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR1S_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@68295@macro@CTIMER_MCR_MR1S", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR1S", - "location": { - "column": "9", - "line": "1007", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR1S", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@68425@macro@CTIMER_MCR_MR2I_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR2I_MASK", - "location": { - "column": "9", - "line": "1008", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR2I_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@68483@macro@CTIMER_MCR_MR2I_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR2I_SHIFT", - "location": { - "column": "9", - "line": "1009", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR2I_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@68538@macro@CTIMER_MCR_MR2I", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR2I", - "location": { - "column": "9", - "line": "1010", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR2I", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@68668@macro@CTIMER_MCR_MR2R_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR2R_MASK", - "location": { - "column": "9", - "line": "1011", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR2R_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@68726@macro@CTIMER_MCR_MR2R_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR2R_SHIFT", - "location": { - "column": "9", - "line": "1012", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR2R_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@68781@macro@CTIMER_MCR_MR2R", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR2R", - "location": { - "column": "9", - "line": "1013", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR2R", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@68911@macro@CTIMER_MCR_MR2S_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR2S_MASK", - "location": { - "column": "9", - "line": "1014", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR2S_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@68970@macro@CTIMER_MCR_MR2S_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR2S_SHIFT", - "location": { - "column": "9", - "line": "1015", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR2S_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@69025@macro@CTIMER_MCR_MR2S", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR2S", - "location": { - "column": "9", - "line": "1016", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR2S", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@69155@macro@CTIMER_MCR_MR3I_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR3I_MASK", - "location": { - "column": "9", - "line": "1017", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR3I_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@69214@macro@CTIMER_MCR_MR3I_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR3I_SHIFT", - "location": { - "column": "9", - "line": "1018", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR3I_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@69269@macro@CTIMER_MCR_MR3I", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR3I", - "location": { - "column": "9", - "line": "1019", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR3I", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@69399@macro@CTIMER_MCR_MR3R_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR3R_MASK", - "location": { - "column": "9", - "line": "1020", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR3R_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@69458@macro@CTIMER_MCR_MR3R_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR3R_SHIFT", - "location": { - "column": "9", - "line": "1021", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR3R_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@69514@macro@CTIMER_MCR_MR3R", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR3R", - "location": { - "column": "9", - "line": "1022", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR3R", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@69644@macro@CTIMER_MCR_MR3S_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR3S_MASK", - "location": { - "column": "9", - "line": "1023", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR3S_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@69703@macro@CTIMER_MCR_MR3S_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR3S_SHIFT", - "location": { - "column": "9", - "line": "1024", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR3S_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@69759@macro@CTIMER_MCR_MR3S", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MCR_MR3S", - "location": { - "column": "9", - "line": "1025", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MCR_MR3S", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@70084@macro@CTIMER_MR_MATCH_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MR_MATCH_MASK", - "location": { - "column": "9", - "line": "1030", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MR_MATCH_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@70148@macro@CTIMER_MR_MATCH_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MR_MATCH_SHIFT", - "location": { - "column": "9", - "line": "1031", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MR_MATCH_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@70203@macro@CTIMER_MR_MATCH", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MR_MATCH", - "location": { - "column": "9", - "line": "1032", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MR_MATCH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@70376@macro@CTIMER_MR_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_MR_COUNT", - "location": { - "column": "9", - "line": "1036", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_MR_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@70653@macro@CTIMER_CCR_CAP0RE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP0RE_MASK", - "location": { - "column": "9", - "line": "1040", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP0RE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@70710@macro@CTIMER_CCR_CAP0RE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP0RE_SHIFT", - "location": { - "column": "9", - "line": "1041", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP0RE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@70765@macro@CTIMER_CCR_CAP0RE", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP0RE", - "location": { - "column": "9", - "line": "1042", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP0RE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@70899@macro@CTIMER_CCR_CAP0FE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP0FE_MASK", - "location": { - "column": "9", - "line": "1043", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP0FE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@70956@macro@CTIMER_CCR_CAP0FE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP0FE_SHIFT", - "location": { - "column": "9", - "line": "1044", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP0FE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@71011@macro@CTIMER_CCR_CAP0FE", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP0FE", - "location": { - "column": "9", - "line": "1045", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP0FE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@71145@macro@CTIMER_CCR_CAP0I_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP0I_MASK", - "location": { - "column": "9", - "line": "1046", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP0I_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@71202@macro@CTIMER_CCR_CAP0I_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP0I_SHIFT", - "location": { - "column": "9", - "line": "1047", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP0I_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@71257@macro@CTIMER_CCR_CAP0I", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP0I", - "location": { - "column": "9", - "line": "1048", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP0I", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@71389@macro@CTIMER_CCR_CAP1RE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP1RE_MASK", - "location": { - "column": "9", - "line": "1049", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP1RE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@71446@macro@CTIMER_CCR_CAP1RE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP1RE_SHIFT", - "location": { - "column": "9", - "line": "1050", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP1RE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@71501@macro@CTIMER_CCR_CAP1RE", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP1RE", - "location": { - "column": "9", - "line": "1051", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP1RE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@71635@macro@CTIMER_CCR_CAP1FE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP1FE_MASK", - "location": { - "column": "9", - "line": "1052", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP1FE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@71693@macro@CTIMER_CCR_CAP1FE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP1FE_SHIFT", - "location": { - "column": "9", - "line": "1053", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP1FE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@71748@macro@CTIMER_CCR_CAP1FE", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP1FE", - "location": { - "column": "9", - "line": "1054", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP1FE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@71882@macro@CTIMER_CCR_CAP1I_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP1I_MASK", - "location": { - "column": "9", - "line": "1055", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP1I_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@71940@macro@CTIMER_CCR_CAP1I_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP1I_SHIFT", - "location": { - "column": "9", - "line": "1056", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP1I_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@71995@macro@CTIMER_CCR_CAP1I", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP1I", - "location": { - "column": "9", - "line": "1057", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP1I", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@72127@macro@CTIMER_CCR_CAP2RE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP2RE_MASK", - "location": { - "column": "9", - "line": "1058", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP2RE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@72185@macro@CTIMER_CCR_CAP2RE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP2RE_SHIFT", - "location": { - "column": "9", - "line": "1059", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP2RE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@72240@macro@CTIMER_CCR_CAP2RE", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP2RE", - "location": { - "column": "9", - "line": "1060", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP2RE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@72374@macro@CTIMER_CCR_CAP2FE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP2FE_MASK", - "location": { - "column": "9", - "line": "1061", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP2FE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@72432@macro@CTIMER_CCR_CAP2FE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP2FE_SHIFT", - "location": { - "column": "9", - "line": "1062", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP2FE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@72487@macro@CTIMER_CCR_CAP2FE", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP2FE", - "location": { - "column": "9", - "line": "1063", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP2FE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@72621@macro@CTIMER_CCR_CAP2I_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP2I_MASK", - "location": { - "column": "9", - "line": "1064", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP2I_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@72680@macro@CTIMER_CCR_CAP2I_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP2I_SHIFT", - "location": { - "column": "9", - "line": "1065", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP2I_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@72735@macro@CTIMER_CCR_CAP2I", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP2I", - "location": { - "column": "9", - "line": "1066", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP2I", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@72867@macro@CTIMER_CCR_CAP3RE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP3RE_MASK", - "location": { - "column": "9", - "line": "1067", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP3RE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@72926@macro@CTIMER_CCR_CAP3RE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP3RE_SHIFT", - "location": { - "column": "9", - "line": "1068", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP3RE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@72981@macro@CTIMER_CCR_CAP3RE", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP3RE", - "location": { - "column": "9", - "line": "1069", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP3RE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@73115@macro@CTIMER_CCR_CAP3FE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP3FE_MASK", - "location": { - "column": "9", - "line": "1070", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP3FE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@73174@macro@CTIMER_CCR_CAP3FE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP3FE_SHIFT", - "location": { - "column": "9", - "line": "1071", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP3FE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@73230@macro@CTIMER_CCR_CAP3FE", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP3FE", - "location": { - "column": "9", - "line": "1072", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP3FE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@73364@macro@CTIMER_CCR_CAP3I_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP3I_MASK", - "location": { - "column": "9", - "line": "1073", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP3I_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@73423@macro@CTIMER_CCR_CAP3I_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP3I_SHIFT", - "location": { - "column": "9", - "line": "1074", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP3I_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@73479@macro@CTIMER_CCR_CAP3I", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CCR_CAP3I", - "location": { - "column": "9", - "line": "1075", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CCR_CAP3I", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@73750@macro@CTIMER_CR_CAP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CR_CAP_MASK", - "location": { - "column": "9", - "line": "1080", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CR_CAP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@73814@macro@CTIMER_CR_CAP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CR_CAP_SHIFT", - "location": { - "column": "9", - "line": "1081", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CR_CAP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@73869@macro@CTIMER_CR_CAP", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CR_CAP", - "location": { - "column": "9", - "line": "1082", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CR_CAP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@74038@macro@CTIMER_CR_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CR_COUNT", - "location": { - "column": "9", - "line": "1086", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CR_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@74216@macro@CTIMER_EMR_EM0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EM0_MASK", - "location": { - "column": "9", - "line": "1090", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EM0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@74273@macro@CTIMER_EMR_EM0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EM0_SHIFT", - "location": { - "column": "9", - "line": "1091", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EM0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@74328@macro@CTIMER_EMR_EM0", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EM0", - "location": { - "column": "9", - "line": "1092", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@74456@macro@CTIMER_EMR_EM1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EM1_MASK", - "location": { - "column": "9", - "line": "1093", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EM1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@74513@macro@CTIMER_EMR_EM1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EM1_SHIFT", - "location": { - "column": "9", - "line": "1094", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EM1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@74568@macro@CTIMER_EMR_EM1", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EM1", - "location": { - "column": "9", - "line": "1095", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@74696@macro@CTIMER_EMR_EM2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EM2_MASK", - "location": { - "column": "9", - "line": "1096", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EM2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@74753@macro@CTIMER_EMR_EM2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EM2_SHIFT", - "location": { - "column": "9", - "line": "1097", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EM2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@74808@macro@CTIMER_EMR_EM2", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EM2", - "location": { - "column": "9", - "line": "1098", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@74936@macro@CTIMER_EMR_EM3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EM3_MASK", - "location": { - "column": "9", - "line": "1099", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EM3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@74993@macro@CTIMER_EMR_EM3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EM3_SHIFT", - "location": { - "column": "9", - "line": "1100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EM3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@75048@macro@CTIMER_EMR_EM3", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EM3", - "location": { - "column": "9", - "line": "1101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EM3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@75176@macro@CTIMER_EMR_EMC0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EMC0_MASK", - "location": { - "column": "9", - "line": "1102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EMC0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@75234@macro@CTIMER_EMR_EMC0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EMC0_SHIFT", - "location": { - "column": "9", - "line": "1103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EMC0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@75685@macro@CTIMER_EMR_EMC0", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EMC0", - "location": { - "column": "9", - "line": "1110", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EMC0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@75815@macro@CTIMER_EMR_EMC1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EMC1_MASK", - "location": { - "column": "9", - "line": "1111", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EMC1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@75873@macro@CTIMER_EMR_EMC1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EMC1_SHIFT", - "location": { - "column": "9", - "line": "1112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EMC1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@76324@macro@CTIMER_EMR_EMC1", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EMC1", - "location": { - "column": "9", - "line": "1119", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EMC1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@76454@macro@CTIMER_EMR_EMC2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EMC2_MASK", - "location": { - "column": "9", - "line": "1120", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EMC2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@76513@macro@CTIMER_EMR_EMC2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EMC2_SHIFT", - "location": { - "column": "9", - "line": "1121", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EMC2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@76964@macro@CTIMER_EMR_EMC2", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EMC2", - "location": { - "column": "9", - "line": "1128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EMC2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@77094@macro@CTIMER_EMR_EMC3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EMC3_MASK", - "location": { - "column": "9", - "line": "1129", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EMC3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@77153@macro@CTIMER_EMR_EMC3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EMC3_SHIFT", - "location": { - "column": "9", - "line": "1130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EMC3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@77605@macro@CTIMER_EMR_EMC3", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_EMR_EMC3", - "location": { - "column": "9", - "line": "1137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_EMR_EMC3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@77918@macro@CTIMER_CTCR_CTMODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CTCR_CTMODE_MASK", - "location": { - "column": "9", - "line": "1142", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CTCR_CTMODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@77975@macro@CTIMER_CTCR_CTMODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CTCR_CTMODE_SHIFT", - "location": { - "column": "9", - "line": "1143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CTCR_CTMODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@78698@macro@CTIMER_CTCR_CTMODE", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CTCR_CTMODE", - "location": { - "column": "9", - "line": "1150", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CTCR_CTMODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@78834@macro@CTIMER_CTCR_CINSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CTCR_CINSEL_MASK", - "location": { - "column": "9", - "line": "1151", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CTCR_CINSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@78891@macro@CTIMER_CTCR_CINSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CTCR_CINSEL_SHIFT", - "location": { - "column": "9", - "line": "1152", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CTCR_CINSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@79511@macro@CTIMER_CTCR_CINSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CTCR_CINSEL", - "location": { - "column": "9", - "line": "1159", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CTCR_CINSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@79647@macro@CTIMER_CTCR_ENCC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CTCR_ENCC_MASK", - "location": { - "column": "9", - "line": "1160", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CTCR_ENCC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@79705@macro@CTIMER_CTCR_ENCC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CTCR_ENCC_SHIFT", - "location": { - "column": "9", - "line": "1161", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CTCR_ENCC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@79760@macro@CTIMER_CTCR_ENCC", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CTCR_ENCC", - "location": { - "column": "9", - "line": "1162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CTCR_ENCC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@79892@macro@CTIMER_CTCR_SELCC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CTCR_SELCC_MASK", - "location": { - "column": "9", - "line": "1163", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CTCR_SELCC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@79950@macro@CTIMER_CTCR_SELCC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CTCR_SELCC_SHIFT", - "location": { - "column": "9", - "line": "1164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CTCR_SELCC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@80952@macro@CTIMER_CTCR_SELCC", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CTCR_SELCC", - "location": { - "column": "9", - "line": "1173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_CTCR_SELCC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@81210@macro@CTIMER_PWMC_PWMEN0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PWMC_PWMEN0_MASK", - "location": { - "column": "9", - "line": "1178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PWMC_PWMEN0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@81267@macro@CTIMER_PWMC_PWMEN0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PWMC_PWMEN0_SHIFT", - "location": { - "column": "9", - "line": "1179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PWMC_PWMEN0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@81476@macro@CTIMER_PWMC_PWMEN0", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PWMC_PWMEN0", - "location": { - "column": "9", - "line": "1184", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PWMC_PWMEN0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@81612@macro@CTIMER_PWMC_PWMEN1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PWMC_PWMEN1_MASK", - "location": { - "column": "9", - "line": "1185", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PWMC_PWMEN1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@81669@macro@CTIMER_PWMC_PWMEN1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PWMC_PWMEN1_SHIFT", - "location": { - "column": "9", - "line": "1186", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PWMC_PWMEN1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@81879@macro@CTIMER_PWMC_PWMEN1", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PWMC_PWMEN1", - "location": { - "column": "9", - "line": "1191", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PWMC_PWMEN1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@82015@macro@CTIMER_PWMC_PWMEN2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PWMC_PWMEN2_MASK", - "location": { - "column": "9", - "line": "1192", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PWMC_PWMEN2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@82072@macro@CTIMER_PWMC_PWMEN2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PWMC_PWMEN2_SHIFT", - "location": { - "column": "9", - "line": "1193", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PWMC_PWMEN2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@82281@macro@CTIMER_PWMC_PWMEN2", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PWMC_PWMEN2", - "location": { - "column": "9", - "line": "1198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PWMC_PWMEN2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@82417@macro@CTIMER_PWMC_PWMEN3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PWMC_PWMEN3_MASK", - "location": { - "column": "9", - "line": "1199", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PWMC_PWMEN3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@82474@macro@CTIMER_PWMC_PWMEN3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PWMC_PWMEN3_SHIFT", - "location": { - "column": "9", - "line": "1200", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PWMC_PWMEN3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@82752@macro@CTIMER_PWMC_PWMEN3", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_PWMC_PWMEN3", - "location": { - "column": "9", - "line": "1205", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_PWMC_PWMEN3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@83056@macro@CTIMER0_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER0_BASE", - "location": { - "column": "9", - "line": "1216", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER0_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@83160@macro@CTIMER0", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER0", - "location": { - "column": "9", - "line": "1218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@83280@macro@CTIMER1_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER1_BASE", - "location": { - "column": "9", - "line": "1220", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER1_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@83384@macro@CTIMER1", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER1", - "location": { - "column": "9", - "line": "1222", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@83504@macro@CTIMER3_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER3_BASE", - "location": { - "column": "9", - "line": "1224", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER3_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@83608@macro@CTIMER3", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER3", - "location": { - "column": "9", - "line": "1226", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@83750@macro@CTIMER_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_BASE_ADDRS", - "location": { - "column": "9", - "line": "1228", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@83906@macro@CTIMER_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_BASE_PTRS", - "location": { - "column": "9", - "line": "1230", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@84043@macro@CTIMER_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_IRQS", - "location": { - "column": "9", - "line": "1232", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTIMER_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@DMA_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "1249", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@DMA_Type@FI@CTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTRL", - "location": { - "column": "17", - "line": "1250", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9" - }, - { - "ID": "c:@SA@DMA_Type@FI@INTSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTSTAT", - "location": { - "column": "17", - "line": "1251", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9" - }, - { - "ID": "c:@SA@DMA_Type@FI@SRAMBASE", - "What": "FieldDecl", - "defdec": "Def", - "display": "SRAMBASE", - "location": { - "column": "17", - "line": "1252", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SRAMBASE", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9" - }, - { - "ID": "c:@SA@DMA_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "1253", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "1254", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@ENABLESET", - "What": "FieldDecl", - "defdec": "Def", - "display": "ENABLESET", - "location": { - "column": "19", - "line": "1255", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ENABLESET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "18", - "line": "1256", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@ENABLECLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ENABLECLR", - "location": { - "column": "19", - "line": "1257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ENABLECLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@RESERVED_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_1", - "location": { - "column": "18", - "line": "1258", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@ACTIVE", - "What": "FieldDecl", - "defdec": "Def", - "display": "ACTIVE", - "location": { - "column": "19", - "line": "1259", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ACTIVE", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@RESERVED_2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_2", - "location": { - "column": "18", - "line": "1260", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_2", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@BUSY", - "What": "FieldDecl", - "defdec": "Def", - "display": "BUSY", - "location": { - "column": "19", - "line": "1261", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "BUSY", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@RESERVED_3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_3", - "location": { - "column": "18", - "line": "1262", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_3", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@ERRINT", - "What": "FieldDecl", - "defdec": "Def", - "display": "ERRINT", - "location": { - "column": "19", - "line": "1263", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ERRINT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@RESERVED_4", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_4", - "location": { - "column": "18", - "line": "1264", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_4", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@INTENSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTENSET", - "location": { - "column": "19", - "line": "1265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTENSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@RESERVED_5", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_5", - "location": { - "column": "18", - "line": "1266", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_5", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@INTENCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTENCLR", - "location": { - "column": "19", - "line": "1267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTENCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@RESERVED_6", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_6", - "location": { - "column": "18", - "line": "1268", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_6", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@INTA", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTA", - "location": { - "column": "19", - "line": "1269", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTA", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@RESERVED_7", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_7", - "location": { - "column": "18", - "line": "1270", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_7", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@INTB", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTB", - "location": { - "column": "19", - "line": "1271", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTB", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@RESERVED_8", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_8", - "location": { - "column": "18", - "line": "1272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_8", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@SETVALID", - "What": "FieldDecl", - "defdec": "Def", - "display": "SETVALID", - "location": { - "column": "19", - "line": "1273", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SETVALID", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@RESERVED_9", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_9", - "location": { - "column": "18", - "line": "1274", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_9", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@SETTRIG", - "What": "FieldDecl", - "defdec": "Def", - "display": "SETTRIG", - "location": { - "column": "19", - "line": "1275", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SETTRIG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@RESERVED_10", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_10", - "location": { - "column": "18", - "line": "1276", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_10", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@84885@FI@ABORT", - "What": "FieldDecl", - "defdec": "Def", - "display": "ABORT", - "location": { - "column": "19", - "line": "1277", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ABORT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1254_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9" - }, - { - "ID": "c:@SA@DMA_Type@FI@COMMON", - "What": "FieldDecl", - "defdec": "Def", - "display": "COMMON", - "location": { - "column": "5", - "line": "1278", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "COMMON", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9" - }, - { - "ID": "c:@SA@DMA_Type@FI@RESERVED_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_1", - "location": { - "column": "16", - "line": "1279", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@87133", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "1280", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@87133@FI@CFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "CFG", - "location": { - "column": "19", - "line": "1281", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1280_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@87133@FI@CTLSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTLSTAT", - "location": { - "column": "19", - "line": "1282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTLSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1280_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@87133@FI@XFERCFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "XFERCFG", - "location": { - "column": "19", - "line": "1283", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "XFERCFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1280_3" - }, - { - "ID": "c:@SA@DMA_Type@S@LPC51U68.h@87133@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "18", - "line": "1284", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9::_anonymous_LPC51U68_h_1280_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9" - }, - { - "ID": "c:@SA@DMA_Type@FI@CHANNEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CHANNEL", - "location": { - "column": "5", - "line": "1285", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CHANNEL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1249_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@DMA_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct DMA_Type", - "location": { - "column": "3", - "line": "1286", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@88046@macro@DMA_CTRL_ENABLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CTRL_ENABLE_MASK", - "location": { - "column": "9", - "line": "1299", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CTRL_ENABLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@88103@macro@DMA_CTRL_ENABLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CTRL_ENABLE_SHIFT", - "location": { - "column": "9", - "line": "1300", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CTRL_ENABLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@88455@macro@DMA_CTRL_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CTRL_ENABLE", - "location": { - "column": "9", - "line": "1305", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CTRL_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@88651@macro@DMA_INTSTAT_ACTIVEINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_INTSTAT_ACTIVEINT_MASK", - "location": { - "column": "9", - "line": "1310", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_INTSTAT_ACTIVEINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@88708@macro@DMA_INTSTAT_ACTIVEINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_INTSTAT_ACTIVEINT_SHIFT", - "location": { - "column": "9", - "line": "1311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_INTSTAT_ACTIVEINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@88990@macro@DMA_INTSTAT_ACTIVEINT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_INTSTAT_ACTIVEINT", - "location": { - "column": "9", - "line": "1316", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_INTSTAT_ACTIVEINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@89132@macro@DMA_INTSTAT_ACTIVEERRINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_INTSTAT_ACTIVEERRINT_MASK", - "location": { - "column": "9", - "line": "1317", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_INTSTAT_ACTIVEERRINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@89189@macro@DMA_INTSTAT_ACTIVEERRINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_INTSTAT_ACTIVEERRINT_SHIFT", - "location": { - "column": "9", - "line": "1318", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_INTSTAT_ACTIVEERRINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@89438@macro@DMA_INTSTAT_ACTIVEERRINT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_INTSTAT_ACTIVEERRINT", - "location": { - "column": "9", - "line": "1323", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_INTSTAT_ACTIVEERRINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@89684@macro@DMA_SRAMBASE_OFFSET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_SRAMBASE_OFFSET_MASK", - "location": { - "column": "9", - "line": "1328", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_SRAMBASE_OFFSET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@89748@macro@DMA_SRAMBASE_OFFSET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_SRAMBASE_OFFSET_SHIFT", - "location": { - "column": "9", - "line": "1329", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_SRAMBASE_OFFSET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@89803@macro@DMA_SRAMBASE_OFFSET", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_SRAMBASE_OFFSET", - "location": { - "column": "9", - "line": "1330", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_SRAMBASE_OFFSET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@90048@macro@DMA_COMMON_ENABLESET_ENA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ENABLESET_ENA_MASK", - "location": { - "column": "9", - "line": "1335", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ENABLESET_ENA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@90112@macro@DMA_COMMON_ENABLESET_ENA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ENABLESET_ENA_SHIFT", - "location": { - "column": "9", - "line": "1336", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ENABLESET_ENA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@90167@macro@DMA_COMMON_ENABLESET_ENA", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ENABLESET_ENA", - "location": { - "column": "9", - "line": "1337", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ENABLESET_ENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@90369@macro@DMA_COMMON_ENABLESET_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ENABLESET_COUNT", - "location": { - "column": "9", - "line": "1341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ENABLESET_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@90513@macro@DMA_COMMON_ENABLECLR_CLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ENABLECLR_CLR_MASK", - "location": { - "column": "9", - "line": "1345", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ENABLECLR_CLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@90577@macro@DMA_COMMON_ENABLECLR_CLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ENABLECLR_CLR_SHIFT", - "location": { - "column": "9", - "line": "1346", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ENABLECLR_CLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@90632@macro@DMA_COMMON_ENABLECLR_CLR", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ENABLECLR_CLR", - "location": { - "column": "9", - "line": "1347", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ENABLECLR_CLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@90834@macro@DMA_COMMON_ENABLECLR_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ENABLECLR_COUNT", - "location": { - "column": "9", - "line": "1351", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ENABLECLR_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@90976@macro@DMA_COMMON_ACTIVE_ACT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ACTIVE_ACT_MASK", - "location": { - "column": "9", - "line": "1355", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ACTIVE_ACT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@91040@macro@DMA_COMMON_ACTIVE_ACT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ACTIVE_ACT_SHIFT", - "location": { - "column": "9", - "line": "1356", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ACTIVE_ACT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@91095@macro@DMA_COMMON_ACTIVE_ACT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ACTIVE_ACT", - "location": { - "column": "9", - "line": "1357", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ACTIVE_ACT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@91288@macro@DMA_COMMON_ACTIVE_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ACTIVE_COUNT", - "location": { - "column": "9", - "line": "1361", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ACTIVE_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@91426@macro@DMA_COMMON_BUSY_BSY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_BUSY_BSY_MASK", - "location": { - "column": "9", - "line": "1365", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_BUSY_BSY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@91490@macro@DMA_COMMON_BUSY_BSY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_BUSY_BSY_SHIFT", - "location": { - "column": "9", - "line": "1366", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_BUSY_BSY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@91545@macro@DMA_COMMON_BUSY_BSY", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_BUSY_BSY", - "location": { - "column": "9", - "line": "1367", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_BUSY_BSY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@91732@macro@DMA_COMMON_BUSY_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_BUSY_COUNT", - "location": { - "column": "9", - "line": "1371", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_BUSY_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@91875@macro@DMA_COMMON_ERRINT_ERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ERRINT_ERR_MASK", - "location": { - "column": "9", - "line": "1375", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ERRINT_ERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@91939@macro@DMA_COMMON_ERRINT_ERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ERRINT_ERR_SHIFT", - "location": { - "column": "9", - "line": "1376", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ERRINT_ERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@91994@macro@DMA_COMMON_ERRINT_ERR", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ERRINT_ERR", - "location": { - "column": "9", - "line": "1377", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ERRINT_ERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@92187@macro@DMA_COMMON_ERRINT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ERRINT_COUNT", - "location": { - "column": "9", - "line": "1381", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ERRINT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@92339@macro@DMA_COMMON_INTENSET_INTEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTENSET_INTEN_MASK", - "location": { - "column": "9", - "line": "1385", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTENSET_INTEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@92403@macro@DMA_COMMON_INTENSET_INTEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTENSET_INTEN_SHIFT", - "location": { - "column": "9", - "line": "1386", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTENSET_INTEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@92458@macro@DMA_COMMON_INTENSET_INTEN", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTENSET_INTEN", - "location": { - "column": "9", - "line": "1387", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTENSET_INTEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@92661@macro@DMA_COMMON_INTENSET_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTENSET_COUNT", - "location": { - "column": "9", - "line": "1391", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTENSET_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@92806@macro@DMA_COMMON_INTENCLR_CLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTENCLR_CLR_MASK", - "location": { - "column": "9", - "line": "1395", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTENCLR_CLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@92870@macro@DMA_COMMON_INTENCLR_CLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTENCLR_CLR_SHIFT", - "location": { - "column": "9", - "line": "1396", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTENCLR_CLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@92925@macro@DMA_COMMON_INTENCLR_CLR", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTENCLR_CLR", - "location": { - "column": "9", - "line": "1397", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTENCLR_CLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@93124@macro@DMA_COMMON_INTENCLR_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTENCLR_COUNT", - "location": { - "column": "9", - "line": "1401", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTENCLR_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@93261@macro@DMA_COMMON_INTA_IA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTA_IA_MASK", - "location": { - "column": "9", - "line": "1405", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTA_IA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@93325@macro@DMA_COMMON_INTA_IA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTA_IA_SHIFT", - "location": { - "column": "9", - "line": "1406", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTA_IA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@93380@macro@DMA_COMMON_INTA_IA", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTA_IA", - "location": { - "column": "9", - "line": "1407", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTA_IA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@93565@macro@DMA_COMMON_INTA_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTA_COUNT", - "location": { - "column": "9", - "line": "1411", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTA_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@93702@macro@DMA_COMMON_INTB_IB_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTB_IB_MASK", - "location": { - "column": "9", - "line": "1415", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTB_IB_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@93766@macro@DMA_COMMON_INTB_IB_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTB_IB_SHIFT", - "location": { - "column": "9", - "line": "1416", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTB_IB_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@93821@macro@DMA_COMMON_INTB_IB", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTB_IB", - "location": { - "column": "9", - "line": "1417", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTB_IB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@94006@macro@DMA_COMMON_INTB_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_INTB_COUNT", - "location": { - "column": "9", - "line": "1421", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_INTB_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@94158@macro@DMA_COMMON_SETVALID_SV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_SETVALID_SV_MASK", - "location": { - "column": "9", - "line": "1425", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_SETVALID_SV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@94222@macro@DMA_COMMON_SETVALID_SV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_SETVALID_SV_SHIFT", - "location": { - "column": "9", - "line": "1426", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_SETVALID_SV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@94277@macro@DMA_COMMON_SETVALID_SV", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_SETVALID_SV", - "location": { - "column": "9", - "line": "1427", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_SETVALID_SV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@94474@macro@DMA_COMMON_SETVALID_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_SETVALID_COUNT", - "location": { - "column": "9", - "line": "1431", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_SETVALID_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@94620@macro@DMA_COMMON_SETTRIG_TRIG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_SETTRIG_TRIG_MASK", - "location": { - "column": "9", - "line": "1435", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_SETTRIG_TRIG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@94684@macro@DMA_COMMON_SETTRIG_TRIG_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_SETTRIG_TRIG_SHIFT", - "location": { - "column": "9", - "line": "1436", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_SETTRIG_TRIG_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@94739@macro@DMA_COMMON_SETTRIG_TRIG", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_SETTRIG_TRIG", - "location": { - "column": "9", - "line": "1437", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_SETTRIG_TRIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@94937@macro@DMA_COMMON_SETTRIG_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_SETTRIG_COUNT", - "location": { - "column": "9", - "line": "1441", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_SETTRIG_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@95078@macro@DMA_COMMON_ABORT_ABORTCTRL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ABORT_ABORTCTRL_MASK", - "location": { - "column": "9", - "line": "1445", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ABORT_ABORTCTRL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@95142@macro@DMA_COMMON_ABORT_ABORTCTRL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ABORT_ABORTCTRL_SHIFT", - "location": { - "column": "9", - "line": "1446", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ABORT_ABORTCTRL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@95197@macro@DMA_COMMON_ABORT_ABORTCTRL", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ABORT_ABORTCTRL", - "location": { - "column": "9", - "line": "1447", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ABORT_ABORTCTRL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@95399@macro@DMA_COMMON_ABORT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_COMMON_ABORT_COUNT", - "location": { - "column": "9", - "line": "1451", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_COMMON_ABORT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@95536@macro@DMA_CHANNEL_CFG_PERIPHREQEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_PERIPHREQEN_MASK", - "location": { - "column": "9", - "line": "1455", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_PERIPHREQEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@95593@macro@DMA_CHANNEL_CFG_PERIPHREQEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_PERIPHREQEN_SHIFT", - "location": { - "column": "9", - "line": "1456", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_PERIPHREQEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@96020@macro@DMA_CHANNEL_CFG_PERIPHREQEN", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_PERIPHREQEN", - "location": { - "column": "9", - "line": "1461", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_PERIPHREQEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@96174@macro@DMA_CHANNEL_CFG_HWTRIGEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_HWTRIGEN_MASK", - "location": { - "column": "9", - "line": "1462", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_HWTRIGEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@96231@macro@DMA_CHANNEL_CFG_HWTRIGEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_HWTRIGEN_SHIFT", - "location": { - "column": "9", - "line": "1463", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_HWTRIGEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@96449@macro@DMA_CHANNEL_CFG_HWTRIGEN", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_HWTRIGEN", - "location": { - "column": "9", - "line": "1468", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_HWTRIGEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@96597@macro@DMA_CHANNEL_CFG_TRIGPOL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_TRIGPOL_MASK", - "location": { - "column": "9", - "line": "1469", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_TRIGPOL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@96655@macro@DMA_CHANNEL_CFG_TRIGPOL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_TRIGPOL_SHIFT", - "location": { - "column": "9", - "line": "1470", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_TRIGPOL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@97037@macro@DMA_CHANNEL_CFG_TRIGPOL", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_TRIGPOL", - "location": { - "column": "9", - "line": "1475", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_TRIGPOL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@97183@macro@DMA_CHANNEL_CFG_TRIGTYPE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_TRIGTYPE_MASK", - "location": { - "column": "9", - "line": "1476", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_TRIGTYPE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@97241@macro@DMA_CHANNEL_CFG_TRIGTYPE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_TRIGTYPE_SHIFT", - "location": { - "column": "9", - "line": "1477", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_TRIGTYPE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@97993@macro@DMA_CHANNEL_CFG_TRIGTYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_TRIGTYPE", - "location": { - "column": "9", - "line": "1482", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_TRIGTYPE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@98141@macro@DMA_CHANNEL_CFG_TRIGBURST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_TRIGBURST_MASK", - "location": { - "column": "9", - "line": "1483", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_TRIGBURST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@98199@macro@DMA_CHANNEL_CFG_TRIGBURST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_TRIGBURST_SHIFT", - "location": { - "column": "9", - "line": "1484", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_TRIGBURST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@98763@macro@DMA_CHANNEL_CFG_TRIGBURST", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_TRIGBURST", - "location": { - "column": "9", - "line": "1489", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_TRIGBURST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@98913@macro@DMA_CHANNEL_CFG_BURSTPOWER_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_BURSTPOWER_MASK", - "location": { - "column": "9", - "line": "1490", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_BURSTPOWER_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@98972@macro@DMA_CHANNEL_CFG_BURSTPOWER_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_BURSTPOWER_SHIFT", - "location": { - "column": "9", - "line": "1491", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_BURSTPOWER_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@99027@macro@DMA_CHANNEL_CFG_BURSTPOWER", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_BURSTPOWER", - "location": { - "column": "9", - "line": "1492", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_BURSTPOWER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@99179@macro@DMA_CHANNEL_CFG_SRCBURSTWRAP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_SRCBURSTWRAP_MASK", - "location": { - "column": "9", - "line": "1493", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_SRCBURSTWRAP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@99239@macro@DMA_CHANNEL_CFG_SRCBURSTWRAP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_SRCBURSTWRAP_SHIFT", - "location": { - "column": "9", - "line": "1494", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_SRCBURSTWRAP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@99785@macro@DMA_CHANNEL_CFG_SRCBURSTWRAP", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_SRCBURSTWRAP", - "location": { - "column": "9", - "line": "1499", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_SRCBURSTWRAP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@99941@macro@DMA_CHANNEL_CFG_DSTBURSTWRAP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_DSTBURSTWRAP_MASK", - "location": { - "column": "9", - "line": "1500", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_DSTBURSTWRAP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@100001@macro@DMA_CHANNEL_CFG_DSTBURSTWRAP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_DSTBURSTWRAP_SHIFT", - "location": { - "column": "9", - "line": "1501", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_DSTBURSTWRAP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@100571@macro@DMA_CHANNEL_CFG_DSTBURSTWRAP", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_DSTBURSTWRAP", - "location": { - "column": "9", - "line": "1506", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_DSTBURSTWRAP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@100727@macro@DMA_CHANNEL_CFG_CHPRIORITY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_CHPRIORITY_MASK", - "location": { - "column": "9", - "line": "1507", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_CHPRIORITY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@100788@macro@DMA_CHANNEL_CFG_CHPRIORITY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_CHPRIORITY_SHIFT", - "location": { - "column": "9", - "line": "1508", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_CHPRIORITY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@100844@macro@DMA_CHANNEL_CFG_CHPRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_CHPRIORITY", - "location": { - "column": "9", - "line": "1509", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_CHPRIORITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@101045@macro@DMA_CHANNEL_CFG_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CFG_COUNT", - "location": { - "column": "9", - "line": "1513", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CFG_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@101192@macro@DMA_CHANNEL_CTLSTAT_VALIDPENDING_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CTLSTAT_VALIDPENDING_MASK", - "location": { - "column": "9", - "line": "1517", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CTLSTAT_VALIDPENDING_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@101249@macro@DMA_CHANNEL_CTLSTAT_VALIDPENDING_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CTLSTAT_VALIDPENDING_SHIFT", - "location": { - "column": "9", - "line": "1518", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CTLSTAT_VALIDPENDING_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@101574@macro@DMA_CHANNEL_CTLSTAT_VALIDPENDING", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CTLSTAT_VALIDPENDING", - "location": { - "column": "9", - "line": "1523", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CTLSTAT_VALIDPENDING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@101738@macro@DMA_CHANNEL_CTLSTAT_TRIG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CTLSTAT_TRIG_MASK", - "location": { - "column": "9", - "line": "1524", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CTLSTAT_TRIG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@101795@macro@DMA_CHANNEL_CTLSTAT_TRIG_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CTLSTAT_TRIG_SHIFT", - "location": { - "column": "9", - "line": "1525", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CTLSTAT_TRIG_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@102237@macro@DMA_CHANNEL_CTLSTAT_TRIG", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CTLSTAT_TRIG", - "location": { - "column": "9", - "line": "1530", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CTLSTAT_TRIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@102438@macro@DMA_CHANNEL_CTLSTAT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_CTLSTAT_COUNT", - "location": { - "column": "9", - "line": "1534", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_CTLSTAT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@102589@macro@DMA_CHANNEL_XFERCFG_CFGVALID_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_CFGVALID_MASK", - "location": { - "column": "9", - "line": "1538", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_CFGVALID_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@102646@macro@DMA_CHANNEL_XFERCFG_CFGVALID_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_CFGVALID_SHIFT", - "location": { - "column": "9", - "line": "1539", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_CFGVALID_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@103087@macro@DMA_CHANNEL_XFERCFG_CFGVALID", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_CFGVALID", - "location": { - "column": "9", - "line": "1544", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_CFGVALID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@103243@macro@DMA_CHANNEL_XFERCFG_RELOAD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_RELOAD_MASK", - "location": { - "column": "9", - "line": "1545", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_RELOAD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@103300@macro@DMA_CHANNEL_XFERCFG_RELOAD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_RELOAD_SHIFT", - "location": { - "column": "9", - "line": "1546", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_RELOAD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@103740@macro@DMA_CHANNEL_XFERCFG_RELOAD", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_RELOAD", - "location": { - "column": "9", - "line": "1551", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_RELOAD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@103892@macro@DMA_CHANNEL_XFERCFG_SWTRIG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_SWTRIG_MASK", - "location": { - "column": "9", - "line": "1552", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_SWTRIG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@103949@macro@DMA_CHANNEL_XFERCFG_SWTRIG_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_SWTRIG_SHIFT", - "location": { - "column": "9", - "line": "1553", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_SWTRIG_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@104393@macro@DMA_CHANNEL_XFERCFG_SWTRIG", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_SWTRIG", - "location": { - "column": "9", - "line": "1558", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_SWTRIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@104545@macro@DMA_CHANNEL_XFERCFG_CLRTRIG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_CLRTRIG_MASK", - "location": { - "column": "9", - "line": "1559", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_CLRTRIG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@104602@macro@DMA_CHANNEL_XFERCFG_CLRTRIG_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_CLRTRIG_SHIFT", - "location": { - "column": "9", - "line": "1560", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_CLRTRIG_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@104912@macro@DMA_CHANNEL_XFERCFG_CLRTRIG", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_CLRTRIG", - "location": { - "column": "9", - "line": "1565", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_CLRTRIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@105066@macro@DMA_CHANNEL_XFERCFG_SETINTA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_SETINTA_MASK", - "location": { - "column": "9", - "line": "1566", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_SETINTA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@105124@macro@DMA_CHANNEL_XFERCFG_SETINTA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_SETINTA_SHIFT", - "location": { - "column": "9", - "line": "1567", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_SETINTA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@105573@macro@DMA_CHANNEL_XFERCFG_SETINTA", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_SETINTA", - "location": { - "column": "9", - "line": "1572", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_SETINTA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@105727@macro@DMA_CHANNEL_XFERCFG_SETINTB_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_SETINTB_MASK", - "location": { - "column": "9", - "line": "1573", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_SETINTB_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@105785@macro@DMA_CHANNEL_XFERCFG_SETINTB_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_SETINTB_SHIFT", - "location": { - "column": "9", - "line": "1574", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_SETINTB_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@106234@macro@DMA_CHANNEL_XFERCFG_SETINTB", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_SETINTB", - "location": { - "column": "9", - "line": "1579", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_SETINTB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@106388@macro@DMA_CHANNEL_XFERCFG_WIDTH_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_WIDTH_MASK", - "location": { - "column": "9", - "line": "1580", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_WIDTH_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@106447@macro@DMA_CHANNEL_XFERCFG_WIDTH_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_WIDTH_SHIFT", - "location": { - "column": "9", - "line": "1581", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_WIDTH_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@106897@macro@DMA_CHANNEL_XFERCFG_WIDTH", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_WIDTH", - "location": { - "column": "9", - "line": "1588", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_WIDTH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@107047@macro@DMA_CHANNEL_XFERCFG_SRCINC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_SRCINC_MASK", - "location": { - "column": "9", - "line": "1589", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_SRCINC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@107107@macro@DMA_CHANNEL_XFERCFG_SRCINC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_SRCINC_SHIFT", - "location": { - "column": "9", - "line": "1590", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_SRCINC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@107793@macro@DMA_CHANNEL_XFERCFG_SRCINC", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_SRCINC", - "location": { - "column": "9", - "line": "1597", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_SRCINC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@107945@macro@DMA_CHANNEL_XFERCFG_DSTINC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_DSTINC_MASK", - "location": { - "column": "9", - "line": "1598", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_DSTINC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@108005@macro@DMA_CHANNEL_XFERCFG_DSTINC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_DSTINC_SHIFT", - "location": { - "column": "9", - "line": "1599", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_DSTINC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@108726@macro@DMA_CHANNEL_XFERCFG_DSTINC", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_DSTINC", - "location": { - "column": "9", - "line": "1606", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_DSTINC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@108878@macro@DMA_CHANNEL_XFERCFG_XFERCOUNT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_XFERCOUNT_MASK", - "location": { - "column": "9", - "line": "1607", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_XFERCOUNT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@108941@macro@DMA_CHANNEL_XFERCFG_XFERCOUNT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_XFERCOUNT_SHIFT", - "location": { - "column": "9", - "line": "1608", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_XFERCOUNT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@108997@macro@DMA_CHANNEL_XFERCFG_XFERCOUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_XFERCOUNT", - "location": { - "column": "9", - "line": "1609", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_XFERCOUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@109208@macro@DMA_CHANNEL_XFERCFG_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CHANNEL_XFERCFG_COUNT", - "location": { - "column": "9", - "line": "1613", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_CHANNEL_XFERCFG_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@109412@macro@DMA0_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA0_BASE", - "location": { - "column": "9", - "line": "1623", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA0_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@109513@macro@DMA0", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA0", - "location": { - "column": "9", - "line": "1625", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@109646@macro@DMA_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_BASE_ADDRS", - "location": { - "column": "9", - "line": "1627", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@109768@macro@DMA_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_BASE_PTRS", - "location": { - "column": "9", - "line": "1629", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@109881@macro@DMA_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_IRQS", - "location": { - "column": "9", - "line": "1631", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@FLEXCOMM_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "1648", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@FLEXCOMM_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "1649", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1648_9" - }, - { - "ID": "c:@SA@FLEXCOMM_Type@FI@PSELID", - "What": "FieldDecl", - "defdec": "Def", - "display": "PSELID", - "location": { - "column": "17", - "line": "1650", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PSELID", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1648_9" - }, - { - "ID": "c:@SA@FLEXCOMM_Type@FI@PID", - "What": "FieldDecl", - "defdec": "Def", - "display": "PID", - "location": { - "column": "17", - "line": "1651", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PID", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1648_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@FLEXCOMM_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct FLEXCOMM_Type", - "location": { - "column": "3", - "line": "1652", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@111027@macro@FLEXCOMM_PSELID_PERSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_PERSEL_MASK", - "location": { - "column": "9", - "line": "1665", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_PERSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@111084@macro@FLEXCOMM_PSELID_PERSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_PERSEL_SHIFT", - "location": { - "column": "9", - "line": "1666", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_PERSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@111485@macro@FLEXCOMM_PSELID_PERSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_PERSEL", - "location": { - "column": "9", - "line": "1677", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_PERSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@111629@macro@FLEXCOMM_PSELID_LOCK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_LOCK_MASK", - "location": { - "column": "9", - "line": "1678", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_LOCK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@111686@macro@FLEXCOMM_PSELID_LOCK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_LOCK_SHIFT", - "location": { - "column": "9", - "line": "1679", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_LOCK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@111989@macro@FLEXCOMM_PSELID_LOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_LOCK", - "location": { - "column": "9", - "line": "1684", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_LOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@112129@macro@FLEXCOMM_PSELID_USARTPRESENT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_USARTPRESENT_MASK", - "location": { - "column": "9", - "line": "1685", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_USARTPRESENT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@112187@macro@FLEXCOMM_PSELID_USARTPRESENT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_USARTPRESENT_SHIFT", - "location": { - "column": "9", - "line": "1686", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_USARTPRESENT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@112431@macro@FLEXCOMM_PSELID_USARTPRESENT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_USARTPRESENT", - "location": { - "column": "9", - "line": "1691", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_USARTPRESENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@112587@macro@FLEXCOMM_PSELID_SPIPRESENT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_SPIPRESENT_MASK", - "location": { - "column": "9", - "line": "1692", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_SPIPRESENT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@112645@macro@FLEXCOMM_PSELID_SPIPRESENT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_SPIPRESENT_SHIFT", - "location": { - "column": "9", - "line": "1693", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_SPIPRESENT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@112881@macro@FLEXCOMM_PSELID_SPIPRESENT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_SPIPRESENT", - "location": { - "column": "9", - "line": "1698", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_SPIPRESENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@113033@macro@FLEXCOMM_PSELID_I2CPRESENT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_I2CPRESENT_MASK", - "location": { - "column": "9", - "line": "1699", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_I2CPRESENT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@113091@macro@FLEXCOMM_PSELID_I2CPRESENT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_I2CPRESENT_SHIFT", - "location": { - "column": "9", - "line": "1700", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_I2CPRESENT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@113327@macro@FLEXCOMM_PSELID_I2CPRESENT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_I2CPRESENT", - "location": { - "column": "9", - "line": "1705", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_I2CPRESENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@113479@macro@FLEXCOMM_PSELID_I2SPRESENT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_I2SPRESENT_MASK", - "location": { - "column": "9", - "line": "1706", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_I2SPRESENT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@113537@macro@FLEXCOMM_PSELID_I2SPRESENT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_I2SPRESENT_SHIFT", - "location": { - "column": "9", - "line": "1707", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_I2SPRESENT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@113774@macro@FLEXCOMM_PSELID_I2SPRESENT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_I2SPRESENT", - "location": { - "column": "9", - "line": "1712", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_I2SPRESENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@113926@macro@FLEXCOMM_PSELID_ID_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_ID_MASK", - "location": { - "column": "9", - "line": "1713", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_ID_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@113990@macro@FLEXCOMM_PSELID_ID_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_ID_SHIFT", - "location": { - "column": "9", - "line": "1714", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_ID_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@114046@macro@FLEXCOMM_PSELID_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PSELID_ID", - "location": { - "column": "9", - "line": "1715", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PSELID_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@114262@macro@FLEXCOMM_PID_Minor_Rev_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PID_Minor_Rev_MASK", - "location": { - "column": "9", - "line": "1720", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PID_Minor_Rev_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@114321@macro@FLEXCOMM_PID_Minor_Rev_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PID_Minor_Rev_SHIFT", - "location": { - "column": "9", - "line": "1721", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PID_Minor_Rev_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@114376@macro@FLEXCOMM_PID_Minor_Rev", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PID_Minor_Rev", - "location": { - "column": "9", - "line": "1722", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PID_Minor_Rev", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@114520@macro@FLEXCOMM_PID_Major_Rev_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PID_Major_Rev_MASK", - "location": { - "column": "9", - "line": "1723", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PID_Major_Rev_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@114580@macro@FLEXCOMM_PID_Major_Rev_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PID_Major_Rev_SHIFT", - "location": { - "column": "9", - "line": "1724", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PID_Major_Rev_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@114636@macro@FLEXCOMM_PID_Major_Rev", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PID_Major_Rev", - "location": { - "column": "9", - "line": "1725", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PID_Major_Rev", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@114780@macro@FLEXCOMM_PID_ID_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PID_ID_MASK", - "location": { - "column": "9", - "line": "1726", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PID_ID_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@114844@macro@FLEXCOMM_PID_ID_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PID_ID_SHIFT", - "location": { - "column": "9", - "line": "1727", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PID_ID_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@114900@macro@FLEXCOMM_PID_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_PID_ID", - "location": { - "column": "9", - "line": "1728", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_PID_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@115204@macro@FLEXCOMM0_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM0_BASE", - "location": { - "column": "9", - "line": "1739", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM0_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@115310@macro@FLEXCOMM0", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM0", - "location": { - "column": "9", - "line": "1741", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@115436@macro@FLEXCOMM1_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM1_BASE", - "location": { - "column": "9", - "line": "1743", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM1_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@115542@macro@FLEXCOMM1", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM1", - "location": { - "column": "9", - "line": "1745", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@115668@macro@FLEXCOMM2_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM2_BASE", - "location": { - "column": "9", - "line": "1747", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM2_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@115774@macro@FLEXCOMM2", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM2", - "location": { - "column": "9", - "line": "1749", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@115900@macro@FLEXCOMM3_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM3_BASE", - "location": { - "column": "9", - "line": "1751", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM3_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@116006@macro@FLEXCOMM3", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM3", - "location": { - "column": "9", - "line": "1753", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@116132@macro@FLEXCOMM4_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM4_BASE", - "location": { - "column": "9", - "line": "1755", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM4_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@116238@macro@FLEXCOMM4", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM4", - "location": { - "column": "9", - "line": "1757", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@116364@macro@FLEXCOMM5_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM5_BASE", - "location": { - "column": "9", - "line": "1759", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM5_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@116470@macro@FLEXCOMM5", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM5", - "location": { - "column": "9", - "line": "1761", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@116596@macro@FLEXCOMM6_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM6_BASE", - "location": { - "column": "9", - "line": "1763", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM6_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@116702@macro@FLEXCOMM6", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM6", - "location": { - "column": "9", - "line": "1765", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@116828@macro@FLEXCOMM7_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM7_BASE", - "location": { - "column": "9", - "line": "1767", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM7_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@116934@macro@FLEXCOMM7", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM7", - "location": { - "column": "9", - "line": "1769", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@117082@macro@FLEXCOMM_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_BASE_ADDRS", - "location": { - "column": "9", - "line": "1771", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@117326@macro@FLEXCOMM_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_BASE_PTRS", - "location": { - "column": "9", - "line": "1773", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@117526@macro@FLEXCOMM_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_IRQS", - "location": { - "column": "9", - "line": "1775", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLEXCOMM_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@FMC_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "1792", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@FMC_Type@FI@FCTR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FCTR", - "location": { - "column": "17", - "line": "1793", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FCTR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1792_9" - }, - { - "ID": "c:@SA@FMC_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "1794", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1792_9" - }, - { - "ID": "c:@SA@FMC_Type@FI@FBWST", - "What": "FieldDecl", - "defdec": "Def", - "display": "FBWST", - "location": { - "column": "17", - "line": "1795", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FBWST", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1792_9" - }, - { - "ID": "c:@SA@FMC_Type@FI@RESERVED_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_1", - "location": { - "column": "16", - "line": "1796", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1792_9" - }, - { - "ID": "c:@SA@FMC_Type@FI@FMSSTART", - "What": "FieldDecl", - "defdec": "Def", - "display": "FMSSTART", - "location": { - "column": "17", - "line": "1797", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMSSTART", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1792_9" - }, - { - "ID": "c:@SA@FMC_Type@FI@FMSSTOP", - "What": "FieldDecl", - "defdec": "Def", - "display": "FMSSTOP", - "location": { - "column": "17", - "line": "1798", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMSSTOP", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1792_9" - }, - { - "ID": "c:@SA@FMC_Type@FI@RESERVED_2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_2", - "location": { - "column": "16", - "line": "1799", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_2", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1792_9" - }, - { - "ID": "c:@SA@FMC_Type@FI@FMSW", - "What": "FieldDecl", - "defdec": "Def", - "display": "FMSW", - "location": { - "column": "17", - "line": "1800", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMSW", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1792_9" - }, - { - "ID": "c:@SA@FMC_Type@FI@RESERVED_3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_3", - "location": { - "column": "16", - "line": "1801", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_3", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1792_9" - }, - { - "ID": "c:@SA@FMC_Type@FI@FMSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "FMSTAT", - "location": { - "column": "17", - "line": "1802", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1792_9" - }, - { - "ID": "c:@SA@FMC_Type@FI@RESERVED_4", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_4", - "location": { - "column": "16", - "line": "1803", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_4", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1792_9" - }, - { - "ID": "c:@SA@FMC_Type@FI@FMSTATCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FMSTATCLR", - "location": { - "column": "17", - "line": "1804", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMSTATCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1792_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@FMC_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct FMC_Type", - "location": { - "column": "3", - "line": "1805", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@119377@macro@FMC_FCTR_FS_RD0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FCTR_FS_RD0_MASK", - "location": { - "column": "9", - "line": "1818", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FCTR_FS_RD0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@119434@macro@FMC_FCTR_FS_RD0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FCTR_FS_RD0_SHIFT", - "location": { - "column": "9", - "line": "1819", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FCTR_FS_RD0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@119489@macro@FMC_FCTR_FS_RD0", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FCTR_FS_RD0", - "location": { - "column": "9", - "line": "1820", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FCTR_FS_RD0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@119619@macro@FMC_FCTR_FS_RD1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FCTR_FS_RD1_MASK", - "location": { - "column": "9", - "line": "1821", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FCTR_FS_RD1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@119677@macro@FMC_FCTR_FS_RD1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FCTR_FS_RD1_SHIFT", - "location": { - "column": "9", - "line": "1822", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FCTR_FS_RD1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@119732@macro@FMC_FCTR_FS_RD1", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FCTR_FS_RD1", - "location": { - "column": "9", - "line": "1823", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FCTR_FS_RD1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@119928@macro@FMC_FBWST_WAITSTATES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FBWST_WAITSTATES_MASK", - "location": { - "column": "9", - "line": "1828", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FBWST_WAITSTATES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@119986@macro@FMC_FBWST_WAITSTATES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FBWST_WAITSTATES_SHIFT", - "location": { - "column": "9", - "line": "1829", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FBWST_WAITSTATES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@120041@macro@FMC_FBWST_WAITSTATES", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FBWST_WAITSTATES", - "location": { - "column": "9", - "line": "1830", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FBWST_WAITSTATES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@120263@macro@FMC_FMSSTART_START_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSSTART_START_MASK", - "location": { - "column": "9", - "line": "1835", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSSTART_START_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@120324@macro@FMC_FMSSTART_START_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSSTART_START_SHIFT", - "location": { - "column": "9", - "line": "1836", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSSTART_START_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@120379@macro@FMC_FMSSTART_START", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSSTART_START", - "location": { - "column": "9", - "line": "1837", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSSTART_START", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@120595@macro@FMC_FMSSTOP_STOP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSSTOP_STOP_MASK", - "location": { - "column": "9", - "line": "1842", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSSTOP_STOP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@120656@macro@FMC_FMSSTOP_STOP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSSTOP_STOP_SHIFT", - "location": { - "column": "9", - "line": "1843", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSSTOP_STOP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@120711@macro@FMC_FMSSTOP_STOP", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSSTOP_STOP", - "location": { - "column": "9", - "line": "1844", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSSTOP_STOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@120843@macro@FMC_FMSSTOP_SIG_START_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSSTOP_SIG_START_MASK", - "location": { - "column": "9", - "line": "1845", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSSTOP_SIG_START_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@120904@macro@FMC_FMSSTOP_SIG_START_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSSTOP_SIG_START_SHIFT", - "location": { - "column": "9", - "line": "1846", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSSTOP_SIG_START_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@120960@macro@FMC_FMSSTOP_SIG_START", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSSTOP_SIG_START", - "location": { - "column": "9", - "line": "1847", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSSTOP_SIG_START", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@121179@macro@FMC_FMSW_SW_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSW_SW_MASK", - "location": { - "column": "9", - "line": "1852", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSW_SW_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@121243@macro@FMC_FMSW_SW_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSW_SW_SHIFT", - "location": { - "column": "9", - "line": "1853", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSW_SW_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@121298@macro@FMC_FMSW_SW", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSW_SW", - "location": { - "column": "9", - "line": "1854", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSW_SW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@121462@macro@FMC_FMSW_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSW_COUNT", - "location": { - "column": "9", - "line": "1858", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSW_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@121590@macro@FMC_FMSTAT_SIG_DONE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSTAT_SIG_DONE_MASK", - "location": { - "column": "9", - "line": "1862", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSTAT_SIG_DONE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@121647@macro@FMC_FMSTAT_SIG_DONE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSTAT_SIG_DONE_SHIFT", - "location": { - "column": "9", - "line": "1863", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSTAT_SIG_DONE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@121702@macro@FMC_FMSTAT_SIG_DONE", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSTAT_SIG_DONE", - "location": { - "column": "9", - "line": "1864", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSTAT_SIG_DONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@121933@macro@FMC_FMSTATCLR_SIG_DONE_CLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSTATCLR_SIG_DONE_CLR_MASK", - "location": { - "column": "9", - "line": "1869", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSTATCLR_SIG_DONE_CLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@121990@macro@FMC_FMSTATCLR_SIG_DONE_CLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSTATCLR_SIG_DONE_CLR_SHIFT", - "location": { - "column": "9", - "line": "1870", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSTATCLR_SIG_DONE_CLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@122045@macro@FMC_FMSTATCLR_SIG_DONE_CLR", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_FMSTATCLR_SIG_DONE_CLR", - "location": { - "column": "9", - "line": "1871", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_FMSTATCLR_SIG_DONE_CLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@122355@macro@FMC_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_BASE", - "location": { - "column": "9", - "line": "1882", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@122455@macro@FMC", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC", - "location": { - "column": "9", - "line": "1884", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@122587@macro@FMC_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_BASE_ADDRS", - "location": { - "column": "9", - "line": "1886", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@122708@macro@FMC_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "FMC_BASE_PTRS", - "location": { - "column": "9", - "line": "1888", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FMC_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@GINT_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "1905", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@GINT_Type@FI@CTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTRL", - "location": { - "column": "17", - "line": "1906", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1905_9" - }, - { - "ID": "c:@SA@GINT_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "1907", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1905_9" - }, - { - "ID": "c:@SA@GINT_Type@FI@PORT_POL", - "What": "FieldDecl", - "defdec": "Def", - "display": "PORT_POL", - "location": { - "column": "17", - "line": "1908", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PORT_POL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1905_9" - }, - { - "ID": "c:@SA@GINT_Type@FI@RESERVED_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_1", - "location": { - "column": "16", - "line": "1909", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1905_9" - }, - { - "ID": "c:@SA@GINT_Type@FI@PORT_ENA", - "What": "FieldDecl", - "defdec": "Def", - "display": "PORT_ENA", - "location": { - "column": "17", - "line": "1910", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PORT_ENA", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_1905_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@GINT_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct GINT_Type", - "location": { - "column": "3", - "line": "1911", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@124011@macro@GINT_CTRL_INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_CTRL_INT_MASK", - "location": { - "column": "9", - "line": "1924", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_CTRL_INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@124068@macro@GINT_CTRL_INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_CTRL_INT_SHIFT", - "location": { - "column": "9", - "line": "1925", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_CTRL_INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@124345@macro@GINT_CTRL_INT", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_CTRL_INT", - "location": { - "column": "9", - "line": "1930", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_CTRL_INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@124471@macro@GINT_CTRL_COMB_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_CTRL_COMB_MASK", - "location": { - "column": "9", - "line": "1931", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_CTRL_COMB_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@124528@macro@GINT_CTRL_COMB_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_CTRL_COMB_SHIFT", - "location": { - "column": "9", - "line": "1932", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_CTRL_COMB_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@124920@macro@GINT_CTRL_COMB", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_CTRL_COMB", - "location": { - "column": "9", - "line": "1937", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_CTRL_COMB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@125048@macro@GINT_CTRL_TRIG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_CTRL_TRIG_MASK", - "location": { - "column": "9", - "line": "1938", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_CTRL_TRIG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@125105@macro@GINT_CTRL_TRIG_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_CTRL_TRIG_SHIFT", - "location": { - "column": "9", - "line": "1939", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_CTRL_TRIG_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@125254@macro@GINT_CTRL_TRIG", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_CTRL_TRIG", - "location": { - "column": "9", - "line": "1944", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_CTRL_TRIG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@125479@macro@GINT_PORT_POL_POL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_PORT_POL_POL_MASK", - "location": { - "column": "9", - "line": "1949", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_PORT_POL_POL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@125543@macro@GINT_PORT_POL_POL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_PORT_POL_POL_SHIFT", - "location": { - "column": "9", - "line": "1950", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_PORT_POL_POL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@125598@macro@GINT_PORT_POL_POL", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_PORT_POL_POL", - "location": { - "column": "9", - "line": "1951", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_PORT_POL_POL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@125779@macro@GINT_PORT_POL_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_PORT_POL_COUNT", - "location": { - "column": "9", - "line": "1955", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_PORT_POL_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@125918@macro@GINT_PORT_ENA_ENA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_PORT_ENA_ENA_MASK", - "location": { - "column": "9", - "line": "1959", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_PORT_ENA_ENA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@125982@macro@GINT_PORT_ENA_ENA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_PORT_ENA_ENA_SHIFT", - "location": { - "column": "9", - "line": "1960", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_PORT_ENA_ENA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@126037@macro@GINT_PORT_ENA_ENA", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_PORT_ENA_ENA", - "location": { - "column": "9", - "line": "1961", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_PORT_ENA_ENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@126218@macro@GINT_PORT_ENA_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_PORT_ENA_COUNT", - "location": { - "column": "9", - "line": "1965", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_PORT_ENA_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@126424@macro@GINT0_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT0_BASE", - "location": { - "column": "9", - "line": "1975", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT0_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@126526@macro@GINT0", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT0", - "location": { - "column": "9", - "line": "1977", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@126640@macro@GINT1_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT1_BASE", - "location": { - "column": "9", - "line": "1979", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT1_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@126742@macro@GINT1", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT1", - "location": { - "column": "9", - "line": "1981", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@126878@macro@GINT_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_BASE_ADDRS", - "location": { - "column": "9", - "line": "1983", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@127014@macro@GINT_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_BASE_PTRS", - "location": { - "column": "9", - "line": "1985", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@127136@macro@GINT_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_IRQS", - "location": { - "column": "9", - "line": "1987", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GINT_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@GPIO_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "2004", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@GPIO_Type@FI@B", - "What": "FieldDecl", - "defdec": "Def", - "display": "B", - "location": { - "column": "16", - "line": "2005", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "B", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "2006", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@W", - "What": "FieldDecl", - "defdec": "Def", - "display": "W", - "location": { - "column": "17", - "line": "2007", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "W", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@RESERVED_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_1", - "location": { - "column": "16", - "line": "2008", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@DIR", - "What": "FieldDecl", - "defdec": "Def", - "display": "DIR", - "location": { - "column": "17", - "line": "2009", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DIR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@RESERVED_2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_2", - "location": { - "column": "16", - "line": "2010", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_2", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@MASK", - "What": "FieldDecl", - "defdec": "Def", - "display": "MASK", - "location": { - "column": "17", - "line": "2011", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MASK", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@RESERVED_3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_3", - "location": { - "column": "16", - "line": "2012", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_3", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@PIN", - "What": "FieldDecl", - "defdec": "Def", - "display": "PIN", - "location": { - "column": "17", - "line": "2013", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PIN", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@RESERVED_4", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_4", - "location": { - "column": "16", - "line": "2014", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_4", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@MPIN", - "What": "FieldDecl", - "defdec": "Def", - "display": "MPIN", - "location": { - "column": "17", - "line": "2015", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MPIN", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@RESERVED_5", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_5", - "location": { - "column": "16", - "line": "2016", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_5", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@SET", - "What": "FieldDecl", - "defdec": "Def", - "display": "SET", - "location": { - "column": "17", - "line": "2017", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@RESERVED_6", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_6", - "location": { - "column": "16", - "line": "2018", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_6", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@CLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "CLR", - "location": { - "column": "17", - "line": "2019", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@RESERVED_7", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_7", - "location": { - "column": "16", - "line": "2020", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_7", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@NOT", - "What": "FieldDecl", - "defdec": "Def", - "display": "NOT", - "location": { - "column": "17", - "line": "2021", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "NOT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@RESERVED_8", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_8", - "location": { - "column": "16", - "line": "2022", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_8", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@DIRSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "DIRSET", - "location": { - "column": "17", - "line": "2023", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DIRSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@RESERVED_9", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_9", - "location": { - "column": "16", - "line": "2024", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_9", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@DIRCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "DIRCLR", - "location": { - "column": "17", - "line": "2025", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DIRCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@RESERVED_10", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_10", - "location": { - "column": "16", - "line": "2026", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_10", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - }, - { - "ID": "c:@SA@GPIO_Type@FI@DIRNOT", - "What": "FieldDecl", - "defdec": "Def", - "display": "DIRNOT", - "location": { - "column": "17", - "line": "2027", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DIRNOT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2004_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@GPIO_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct GPIO_Type", - "location": { - "column": "3", - "line": "2028", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@129943@macro@GPIO_B_PBYTE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_B_PBYTE_MASK", - "location": { - "column": "9", - "line": "2041", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_B_PBYTE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@130000@macro@GPIO_B_PBYTE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_B_PBYTE_SHIFT", - "location": { - "column": "9", - "line": "2042", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_B_PBYTE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@130055@macro@GPIO_B_PBYTE", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_B_PBYTE", - "location": { - "column": "9", - "line": "2043", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_B_PBYTE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@130217@macro@GPIO_B_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_B_COUNT", - "location": { - "column": "9", - "line": "2047", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_B_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@130301@macro@GPIO_B_COUNT2", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_B_COUNT2", - "location": { - "column": "9", - "line": "2050", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_B_COUNT2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@130438@macro@GPIO_W_PWORD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_W_PWORD_MASK", - "location": { - "column": "9", - "line": "2054", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_W_PWORD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@130502@macro@GPIO_W_PWORD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_W_PWORD_SHIFT", - "location": { - "column": "9", - "line": "2055", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_W_PWORD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@130557@macro@GPIO_W_PWORD", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_W_PWORD", - "location": { - "column": "9", - "line": "2056", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_W_PWORD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@130721@macro@GPIO_W_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_W_COUNT", - "location": { - "column": "9", - "line": "2060", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_W_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@130805@macro@GPIO_W_COUNT2", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_W_COUNT2", - "location": { - "column": "9", - "line": "2063", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_W_COUNT2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@130914@macro@GPIO_DIR_DIRP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIR_DIRP_MASK", - "location": { - "column": "9", - "line": "2067", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIR_DIRP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@130978@macro@GPIO_DIR_DIRP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIR_DIRP_SHIFT", - "location": { - "column": "9", - "line": "2068", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIR_DIRP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@131033@macro@GPIO_DIR_DIRP", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIR_DIRP", - "location": { - "column": "9", - "line": "2069", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIR_DIRP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@131201@macro@GPIO_DIR_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIR_COUNT", - "location": { - "column": "9", - "line": "2073", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIR_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@131304@macro@GPIO_MASK_MASKP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_MASK_MASKP_MASK", - "location": { - "column": "9", - "line": "2077", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_MASK_MASKP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@131368@macro@GPIO_MASK_MASKP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_MASK_MASKP_SHIFT", - "location": { - "column": "9", - "line": "2078", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_MASK_MASKP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@131423@macro@GPIO_MASK_MASKP", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_MASK_MASKP", - "location": { - "column": "9", - "line": "2079", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_MASK_MASKP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@131596@macro@GPIO_MASK_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_MASK_COUNT", - "location": { - "column": "9", - "line": "2083", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_MASK_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@131702@macro@GPIO_PIN_PORT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_PIN_PORT_MASK", - "location": { - "column": "9", - "line": "2087", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_PIN_PORT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@131766@macro@GPIO_PIN_PORT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_PIN_PORT_SHIFT", - "location": { - "column": "9", - "line": "2088", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_PIN_PORT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@131821@macro@GPIO_PIN_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_PIN_PORT", - "location": { - "column": "9", - "line": "2089", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_PIN_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@131989@macro@GPIO_PIN_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_PIN_COUNT", - "location": { - "column": "9", - "line": "2093", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_PIN_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@132099@macro@GPIO_MPIN_MPORTP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_MPIN_MPORTP_MASK", - "location": { - "column": "9", - "line": "2097", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_MPIN_MPORTP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@132163@macro@GPIO_MPIN_MPORTP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_MPIN_MPORTP_SHIFT", - "location": { - "column": "9", - "line": "2098", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_MPIN_MPORTP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@132218@macro@GPIO_MPIN_MPORTP", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_MPIN_MPORTP", - "location": { - "column": "9", - "line": "2099", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_MPIN_MPORTP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@132393@macro@GPIO_MPIN_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_MPIN_COUNT", - "location": { - "column": "9", - "line": "2103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_MPIN_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@132537@macro@GPIO_SET_SETP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_SET_SETP_MASK", - "location": { - "column": "9", - "line": "2107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_SET_SETP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@132601@macro@GPIO_SET_SETP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_SET_SETP_SHIFT", - "location": { - "column": "9", - "line": "2108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_SET_SETP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@132656@macro@GPIO_SET_SETP", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_SET_SETP", - "location": { - "column": "9", - "line": "2109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_SET_SETP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@132824@macro@GPIO_SET_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_SET_COUNT", - "location": { - "column": "9", - "line": "2113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_SET_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@132923@macro@GPIO_CLR_CLRP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_CLR_CLRP_MASK", - "location": { - "column": "9", - "line": "2117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_CLR_CLRP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@132987@macro@GPIO_CLR_CLRP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_CLR_CLRP_SHIFT", - "location": { - "column": "9", - "line": "2118", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_CLR_CLRP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@133042@macro@GPIO_CLR_CLRP", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_CLR_CLRP", - "location": { - "column": "9", - "line": "2119", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_CLR_CLRP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@133210@macro@GPIO_CLR_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_CLR_COUNT", - "location": { - "column": "9", - "line": "2123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_CLR_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@133310@macro@GPIO_NOT_NOTP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_NOT_NOTP_MASK", - "location": { - "column": "9", - "line": "2127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_NOT_NOTP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@133374@macro@GPIO_NOT_NOTP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_NOT_NOTP_SHIFT", - "location": { - "column": "9", - "line": "2128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_NOT_NOTP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@133429@macro@GPIO_NOT_NOTP", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_NOT_NOTP", - "location": { - "column": "9", - "line": "2129", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_NOT_NOTP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@133597@macro@GPIO_NOT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_NOT_COUNT", - "location": { - "column": "9", - "line": "2133", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_NOT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@133720@macro@GPIO_DIRSET_DIRSETP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIRSET_DIRSETP_MASK", - "location": { - "column": "9", - "line": "2137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIRSET_DIRSETP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@133784@macro@GPIO_DIRSET_DIRSETP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIRSET_DIRSETP_SHIFT", - "location": { - "column": "9", - "line": "2138", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIRSET_DIRSETP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@133839@macro@GPIO_DIRSET_DIRSETP", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIRSET_DIRSETP", - "location": { - "column": "9", - "line": "2139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIRSET_DIRSETP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@134022@macro@GPIO_DIRSET_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIRSET_COUNT", - "location": { - "column": "9", - "line": "2143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIRSET_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@134147@macro@GPIO_DIRCLR_DIRCLRP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIRCLR_DIRCLRP_MASK", - "location": { - "column": "9", - "line": "2147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIRCLR_DIRCLRP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@134211@macro@GPIO_DIRCLR_DIRCLRP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIRCLR_DIRCLRP_SHIFT", - "location": { - "column": "9", - "line": "2148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIRCLR_DIRCLRP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@134266@macro@GPIO_DIRCLR_DIRCLRP", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIRCLR_DIRCLRP", - "location": { - "column": "9", - "line": "2149", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIRCLR_DIRCLRP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@134449@macro@GPIO_DIRCLR_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIRCLR_COUNT", - "location": { - "column": "9", - "line": "2153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIRCLR_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@134575@macro@GPIO_DIRNOT_DIRNOTP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIRNOT_DIRNOTP_MASK", - "location": { - "column": "9", - "line": "2157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIRNOT_DIRNOTP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@134639@macro@GPIO_DIRNOT_DIRNOTP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIRNOT_DIRNOTP_SHIFT", - "location": { - "column": "9", - "line": "2158", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIRNOT_DIRNOTP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@134694@macro@GPIO_DIRNOT_DIRNOTP", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIRNOT_DIRNOTP", - "location": { - "column": "9", - "line": "2159", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIRNOT_DIRNOTP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@134877@macro@GPIO_DIRNOT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_DIRNOT_COUNT", - "location": { - "column": "9", - "line": "2163", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_DIRNOT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@135082@macro@GPIO_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_BASE", - "location": { - "column": "9", - "line": "2173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@135183@macro@GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO", - "location": { - "column": "9", - "line": "2175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@135318@macro@GPIO_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_BASE_ADDRS", - "location": { - "column": "9", - "line": "2177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@135441@macro@GPIO_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_BASE_PTRS", - "location": { - "column": "9", - "line": "2179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "GPIO_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@I2C_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "2196", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@I2C_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "2197", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@CFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "CFG", - "location": { - "column": "17", - "line": "2198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@STAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "STAT", - "location": { - "column": "17", - "line": "2199", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "STAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@INTENSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTENSET", - "location": { - "column": "17", - "line": "2200", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTENSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@INTENCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTENCLR", - "location": { - "column": "17", - "line": "2201", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTENCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@TIMEOUT", - "What": "FieldDecl", - "defdec": "Def", - "display": "TIMEOUT", - "location": { - "column": "17", - "line": "2202", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "TIMEOUT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@CLKDIV", - "What": "FieldDecl", - "defdec": "Def", - "display": "CLKDIV", - "location": { - "column": "17", - "line": "2203", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CLKDIV", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@INTSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTSTAT", - "location": { - "column": "17", - "line": "2204", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@RESERVED_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_1", - "location": { - "column": "16", - "line": "2205", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@MSTCTL", - "What": "FieldDecl", - "defdec": "Def", - "display": "MSTCTL", - "location": { - "column": "17", - "line": "2206", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MSTCTL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@MSTTIME", - "What": "FieldDecl", - "defdec": "Def", - "display": "MSTTIME", - "location": { - "column": "17", - "line": "2207", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MSTTIME", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@MSTDAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "MSTDAT", - "location": { - "column": "17", - "line": "2208", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MSTDAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@RESERVED_2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_2", - "location": { - "column": "16", - "line": "2209", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_2", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@SLVCTL", - "What": "FieldDecl", - "defdec": "Def", - "display": "SLVCTL", - "location": { - "column": "17", - "line": "2210", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SLVCTL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@SLVDAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "SLVDAT", - "location": { - "column": "17", - "line": "2211", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SLVDAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@SLVADR", - "What": "FieldDecl", - "defdec": "Def", - "display": "SLVADR", - "location": { - "column": "17", - "line": "2212", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SLVADR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@SLVQUAL0", - "What": "FieldDecl", - "defdec": "Def", - "display": "SLVQUAL0", - "location": { - "column": "17", - "line": "2213", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SLVQUAL0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@RESERVED_3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_3", - "location": { - "column": "16", - "line": "2214", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_3", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@MONRXDAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "MONRXDAT", - "location": { - "column": "17", - "line": "2215", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MONRXDAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@RESERVED_4", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_4", - "location": { - "column": "16", - "line": "2216", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_4", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - }, - { - "ID": "c:@SA@I2C_Type@FI@ID", - "What": "FieldDecl", - "defdec": "Def", - "display": "ID", - "location": { - "column": "17", - "line": "2217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ID", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2196_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@I2C_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct I2C_Type", - "location": { - "column": "3", - "line": "2218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@138398@macro@I2C_CFG_MSTEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_MSTEN_MASK", - "location": { - "column": "9", - "line": "2231", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_MSTEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@138455@macro@I2C_CFG_MSTEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_MSTEN_SHIFT", - "location": { - "column": "9", - "line": "2232", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_MSTEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@138780@macro@I2C_CFG_MSTEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_MSTEN", - "location": { - "column": "9", - "line": "2237", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_MSTEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@138906@macro@I2C_CFG_SLVEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_SLVEN_MASK", - "location": { - "column": "9", - "line": "2238", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_SLVEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@138963@macro@I2C_CFG_SLVEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_SLVEN_SHIFT", - "location": { - "column": "9", - "line": "2239", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_SLVEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@139283@macro@I2C_CFG_SLVEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_SLVEN", - "location": { - "column": "9", - "line": "2244", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_SLVEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@139409@macro@I2C_CFG_MONEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_MONEN_MASK", - "location": { - "column": "9", - "line": "2245", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_MONEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@139466@macro@I2C_CFG_MONEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_MONEN_SHIFT", - "location": { - "column": "9", - "line": "2246", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_MONEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@139796@macro@I2C_CFG_MONEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_MONEN", - "location": { - "column": "9", - "line": "2251", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_MONEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@139922@macro@I2C_CFG_TIMEOUTEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_TIMEOUTEN_MASK", - "location": { - "column": "9", - "line": "2252", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_TIMEOUTEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@139979@macro@I2C_CFG_TIMEOUTEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_TIMEOUTEN_SHIFT", - "location": { - "column": "9", - "line": "2253", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_TIMEOUTEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@140388@macro@I2C_CFG_TIMEOUTEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_TIMEOUTEN", - "location": { - "column": "9", - "line": "2258", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_TIMEOUTEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@140522@macro@I2C_CFG_MONCLKSTR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_MONCLKSTR_MASK", - "location": { - "column": "9", - "line": "2259", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_MONCLKSTR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@140580@macro@I2C_CFG_MONCLKSTR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_MONCLKSTR_SHIFT", - "location": { - "column": "9", - "line": "2260", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_MONCLKSTR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@141114@macro@I2C_CFG_MONCLKSTR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_MONCLKSTR", - "location": { - "column": "9", - "line": "2265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_MONCLKSTR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@141248@macro@I2C_CFG_HSCAPABLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_HSCAPABLE_MASK", - "location": { - "column": "9", - "line": "2266", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_HSCAPABLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@141306@macro@I2C_CFG_HSCAPABLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_HSCAPABLE_SHIFT", - "location": { - "column": "9", - "line": "2267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_HSCAPABLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@142188@macro@I2C_CFG_HSCAPABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CFG_HSCAPABLE", - "location": { - "column": "9", - "line": "2272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CFG_HSCAPABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@142425@macro@I2C_STAT_MSTPENDING_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MSTPENDING_MASK", - "location": { - "column": "9", - "line": "2277", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MSTPENDING_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@142482@macro@I2C_STAT_MSTPENDING_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MSTPENDING_SHIFT", - "location": { - "column": "9", - "line": "2278", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MSTPENDING_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@143384@macro@I2C_STAT_MSTPENDING", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MSTPENDING", - "location": { - "column": "9", - "line": "2283", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MSTPENDING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@143522@macro@I2C_STAT_MSTSTATE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MSTSTATE_MASK", - "location": { - "column": "9", - "line": "2284", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MSTSTATE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@143579@macro@I2C_STAT_MSTSTATE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MSTSTATE_SHIFT", - "location": { - "column": "9", - "line": "2285", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MSTSTATE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@144466@macro@I2C_STAT_MSTSTATE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MSTSTATE", - "location": { - "column": "9", - "line": "2293", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MSTSTATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@144600@macro@I2C_STAT_MSTARBLOSS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MSTARBLOSS_MASK", - "location": { - "column": "9", - "line": "2294", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MSTARBLOSS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@144658@macro@I2C_STAT_MSTARBLOSS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MSTARBLOSS_SHIFT", - "location": { - "column": "9", - "line": "2295", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MSTARBLOSS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@145254@macro@I2C_STAT_MSTARBLOSS", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MSTARBLOSS", - "location": { - "column": "9", - "line": "2300", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MSTARBLOSS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@145392@macro@I2C_STAT_MSTSTSTPERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MSTSTSTPERR_MASK", - "location": { - "column": "9", - "line": "2301", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MSTSTSTPERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@145450@macro@I2C_STAT_MSTSTSTPERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MSTSTSTPERR_SHIFT", - "location": { - "column": "9", - "line": "2302", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MSTSTSTPERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@146085@macro@I2C_STAT_MSTSTSTPERR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MSTSTSTPERR", - "location": { - "column": "9", - "line": "2307", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MSTSTSTPERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@146225@macro@I2C_STAT_SLVPENDING_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVPENDING_MASK", - "location": { - "column": "9", - "line": "2308", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVPENDING_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@146284@macro@I2C_STAT_SLVPENDING_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVPENDING_SHIFT", - "location": { - "column": "9", - "line": "2309", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVPENDING_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@147409@macro@I2C_STAT_SLVPENDING", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVPENDING", - "location": { - "column": "9", - "line": "2314", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVPENDING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@147547@macro@I2C_STAT_SLVSTATE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVSTATE_MASK", - "location": { - "column": "9", - "line": "2315", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVSTATE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@147606@macro@I2C_STAT_SLVSTATE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVSTATE_SHIFT", - "location": { - "column": "9", - "line": "2316", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVSTATE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@148260@macro@I2C_STAT_SLVSTATE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVSTATE", - "location": { - "column": "9", - "line": "2322", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVSTATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@148394@macro@I2C_STAT_SLVNOTSTR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVNOTSTR_MASK", - "location": { - "column": "9", - "line": "2323", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVNOTSTR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@148453@macro@I2C_STAT_SLVNOTSTR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVNOTSTR_SHIFT", - "location": { - "column": "9", - "line": "2324", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVNOTSTR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@149085@macro@I2C_STAT_SLVNOTSTR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVNOTSTR", - "location": { - "column": "9", - "line": "2329", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVNOTSTR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@149221@macro@I2C_STAT_SLVIDX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVIDX_MASK", - "location": { - "column": "9", - "line": "2330", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVIDX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@149281@macro@I2C_STAT_SLVIDX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVIDX_SHIFT", - "location": { - "column": "9", - "line": "2331", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVIDX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@149930@macro@I2C_STAT_SLVIDX", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVIDX", - "location": { - "column": "9", - "line": "2338", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVIDX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@150060@macro@I2C_STAT_SLVSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVSEL_MASK", - "location": { - "column": "9", - "line": "2339", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@150120@macro@I2C_STAT_SLVSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVSEL_SHIFT", - "location": { - "column": "9", - "line": "2340", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@150858@macro@I2C_STAT_SLVSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVSEL", - "location": { - "column": "9", - "line": "2345", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@150988@macro@I2C_STAT_SLVDESEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVDESEL_MASK", - "location": { - "column": "9", - "line": "2346", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVDESEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@151048@macro@I2C_STAT_SLVDESEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVDESEL_SHIFT", - "location": { - "column": "9", - "line": "2347", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVDESEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@151643@macro@I2C_STAT_SLVDESEL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SLVDESEL", - "location": { - "column": "9", - "line": "2352", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SLVDESEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@151777@macro@I2C_STAT_MONRDY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MONRDY_MASK", - "location": { - "column": "9", - "line": "2353", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MONRDY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@151838@macro@I2C_STAT_MONRDY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MONRDY_SHIFT", - "location": { - "column": "9", - "line": "2354", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MONRDY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@152139@macro@I2C_STAT_MONRDY", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MONRDY", - "location": { - "column": "9", - "line": "2359", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MONRDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@152269@macro@I2C_STAT_MONOV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MONOV_MASK", - "location": { - "column": "9", - "line": "2360", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MONOV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@152330@macro@I2C_STAT_MONOV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MONOV_SHIFT", - "location": { - "column": "9", - "line": "2361", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MONOV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@152680@macro@I2C_STAT_MONOV", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MONOV", - "location": { - "column": "9", - "line": "2366", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MONOV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@152808@macro@I2C_STAT_MONACTIVE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MONACTIVE_MASK", - "location": { - "column": "9", - "line": "2367", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MONACTIVE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@152869@macro@I2C_STAT_MONACTIVE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MONACTIVE_SHIFT", - "location": { - "column": "9", - "line": "2368", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MONACTIVE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@153309@macro@I2C_STAT_MONACTIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MONACTIVE", - "location": { - "column": "9", - "line": "2373", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MONACTIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@153445@macro@I2C_STAT_MONIDLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MONIDLE_MASK", - "location": { - "column": "9", - "line": "2374", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MONIDLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@153506@macro@I2C_STAT_MONIDLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MONIDLE_SHIFT", - "location": { - "column": "9", - "line": "2375", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MONIDLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@154122@macro@I2C_STAT_MONIDLE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_MONIDLE", - "location": { - "column": "9", - "line": "2380", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_MONIDLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@154254@macro@I2C_STAT_EVENTTIMEOUT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_EVENTTIMEOUT_MASK", - "location": { - "column": "9", - "line": "2381", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_EVENTTIMEOUT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@154317@macro@I2C_STAT_EVENTTIMEOUT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_EVENTTIMEOUT_SHIFT", - "location": { - "column": "9", - "line": "2382", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_EVENTTIMEOUT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@154864@macro@I2C_STAT_EVENTTIMEOUT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_EVENTTIMEOUT", - "location": { - "column": "9", - "line": "2387", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_EVENTTIMEOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@155006@macro@I2C_STAT_SCLTIMEOUT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SCLTIMEOUT_MASK", - "location": { - "column": "9", - "line": "2388", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SCLTIMEOUT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@155069@macro@I2C_STAT_SCLTIMEOUT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SCLTIMEOUT_SHIFT", - "location": { - "column": "9", - "line": "2389", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SCLTIMEOUT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@155435@macro@I2C_STAT_SCLTIMEOUT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_STAT_SCLTIMEOUT", - "location": { - "column": "9", - "line": "2394", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_STAT_SCLTIMEOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@155662@macro@I2C_INTENSET_MSTPENDINGEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MSTPENDINGEN_MASK", - "location": { - "column": "9", - "line": "2399", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MSTPENDINGEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@155719@macro@I2C_INTENSET_MSTPENDINGEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MSTPENDINGEN_SHIFT", - "location": { - "column": "9", - "line": "2400", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MSTPENDINGEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@155946@macro@I2C_INTENSET_MSTPENDINGEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MSTPENDINGEN", - "location": { - "column": "9", - "line": "2405", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MSTPENDINGEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@156096@macro@I2C_INTENSET_MSTARBLOSSEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MSTARBLOSSEN_MASK", - "location": { - "column": "9", - "line": "2406", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MSTARBLOSSEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@156154@macro@I2C_INTENSET_MSTARBLOSSEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MSTARBLOSSEN_SHIFT", - "location": { - "column": "9", - "line": "2407", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MSTARBLOSSEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@156390@macro@I2C_INTENSET_MSTARBLOSSEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MSTARBLOSSEN", - "location": { - "column": "9", - "line": "2412", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MSTARBLOSSEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@156540@macro@I2C_INTENSET_MSTSTSTPERREN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MSTSTSTPERREN_MASK", - "location": { - "column": "9", - "line": "2413", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MSTSTSTPERREN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@156598@macro@I2C_INTENSET_MSTSTSTPERREN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MSTSTSTPERREN_SHIFT", - "location": { - "column": "9", - "line": "2414", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MSTSTSTPERREN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@156837@macro@I2C_INTENSET_MSTSTSTPERREN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MSTSTSTPERREN", - "location": { - "column": "9", - "line": "2419", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MSTSTSTPERREN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@156989@macro@I2C_INTENSET_SLVPENDINGEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_SLVPENDINGEN_MASK", - "location": { - "column": "9", - "line": "2420", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_SLVPENDINGEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@157048@macro@I2C_INTENSET_SLVPENDINGEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_SLVPENDINGEN_SHIFT", - "location": { - "column": "9", - "line": "2421", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_SLVPENDINGEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@157274@macro@I2C_INTENSET_SLVPENDINGEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_SLVPENDINGEN", - "location": { - "column": "9", - "line": "2426", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_SLVPENDINGEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@157424@macro@I2C_INTENSET_SLVNOTSTREN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_SLVNOTSTREN_MASK", - "location": { - "column": "9", - "line": "2427", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_SLVNOTSTREN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@157483@macro@I2C_INTENSET_SLVNOTSTREN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_SLVNOTSTREN_SHIFT", - "location": { - "column": "9", - "line": "2428", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_SLVNOTSTREN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@157714@macro@I2C_INTENSET_SLVNOTSTREN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_SLVNOTSTREN", - "location": { - "column": "9", - "line": "2433", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_SLVNOTSTREN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@157862@macro@I2C_INTENSET_SLVDESELEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_SLVDESELEN_MASK", - "location": { - "column": "9", - "line": "2434", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_SLVDESELEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@157922@macro@I2C_INTENSET_SLVDESELEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_SLVDESELEN_SHIFT", - "location": { - "column": "9", - "line": "2435", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_SLVDESELEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@158144@macro@I2C_INTENSET_SLVDESELEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_SLVDESELEN", - "location": { - "column": "9", - "line": "2440", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_SLVDESELEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@158290@macro@I2C_INTENSET_MONRDYEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MONRDYEN_MASK", - "location": { - "column": "9", - "line": "2441", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MONRDYEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@158351@macro@I2C_INTENSET_MONRDYEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MONRDYEN_SHIFT", - "location": { - "column": "9", - "line": "2442", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MONRDYEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@158571@macro@I2C_INTENSET_MONRDYEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MONRDYEN", - "location": { - "column": "9", - "line": "2447", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MONRDYEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@158713@macro@I2C_INTENSET_MONOVEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MONOVEN_MASK", - "location": { - "column": "9", - "line": "2448", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MONOVEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@158774@macro@I2C_INTENSET_MONOVEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MONOVEN_SHIFT", - "location": { - "column": "9", - "line": "2449", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MONOVEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@158988@macro@I2C_INTENSET_MONOVEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MONOVEN", - "location": { - "column": "9", - "line": "2454", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MONOVEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@159128@macro@I2C_INTENSET_MONIDLEEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MONIDLEEN_MASK", - "location": { - "column": "9", - "line": "2455", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MONIDLEEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@159189@macro@I2C_INTENSET_MONIDLEEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MONIDLEEN_SHIFT", - "location": { - "column": "9", - "line": "2456", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MONIDLEEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@159406@macro@I2C_INTENSET_MONIDLEEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_MONIDLEEN", - "location": { - "column": "9", - "line": "2461", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_MONIDLEEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@159550@macro@I2C_INTENSET_EVENTTIMEOUTEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_EVENTTIMEOUTEN_MASK", - "location": { - "column": "9", - "line": "2462", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_EVENTTIMEOUTEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@159613@macro@I2C_INTENSET_EVENTTIMEOUTEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_EVENTTIMEOUTEN_SHIFT", - "location": { - "column": "9", - "line": "2463", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_EVENTTIMEOUTEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@159851@macro@I2C_INTENSET_EVENTTIMEOUTEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_EVENTTIMEOUTEN", - "location": { - "column": "9", - "line": "2468", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_EVENTTIMEOUTEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@160005@macro@I2C_INTENSET_SCLTIMEOUTEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_SCLTIMEOUTEN_MASK", - "location": { - "column": "9", - "line": "2469", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_SCLTIMEOUTEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@160068@macro@I2C_INTENSET_SCLTIMEOUTEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_SCLTIMEOUTEN_SHIFT", - "location": { - "column": "9", - "line": "2470", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_SCLTIMEOUTEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@160298@macro@I2C_INTENSET_SCLTIMEOUTEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENSET_SCLTIMEOUTEN", - "location": { - "column": "9", - "line": "2475", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENSET_SCLTIMEOUTEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@160530@macro@I2C_INTENCLR_MSTPENDINGCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MSTPENDINGCLR_MASK", - "location": { - "column": "9", - "line": "2480", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MSTPENDINGCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@160587@macro@I2C_INTENCLR_MSTPENDINGCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MSTPENDINGCLR_SHIFT", - "location": { - "column": "9", - "line": "2481", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MSTPENDINGCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@160642@macro@I2C_INTENCLR_MSTPENDINGCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MSTPENDINGCLR", - "location": { - "column": "9", - "line": "2482", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MSTPENDINGCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@160794@macro@I2C_INTENCLR_MSTARBLOSSCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MSTARBLOSSCLR_MASK", - "location": { - "column": "9", - "line": "2483", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MSTARBLOSSCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@160852@macro@I2C_INTENCLR_MSTARBLOSSCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MSTARBLOSSCLR_SHIFT", - "location": { - "column": "9", - "line": "2484", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MSTARBLOSSCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@160907@macro@I2C_INTENCLR_MSTARBLOSSCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MSTARBLOSSCLR", - "location": { - "column": "9", - "line": "2485", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MSTARBLOSSCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@161059@macro@I2C_INTENCLR_MSTSTSTPERRCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MSTSTSTPERRCLR_MASK", - "location": { - "column": "9", - "line": "2486", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MSTSTSTPERRCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@161117@macro@I2C_INTENCLR_MSTSTSTPERRCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MSTSTSTPERRCLR_SHIFT", - "location": { - "column": "9", - "line": "2487", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MSTSTSTPERRCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@161172@macro@I2C_INTENCLR_MSTSTSTPERRCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MSTSTSTPERRCLR", - "location": { - "column": "9", - "line": "2488", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MSTSTSTPERRCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@161326@macro@I2C_INTENCLR_SLVPENDINGCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_SLVPENDINGCLR_MASK", - "location": { - "column": "9", - "line": "2489", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_SLVPENDINGCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@161385@macro@I2C_INTENCLR_SLVPENDINGCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_SLVPENDINGCLR_SHIFT", - "location": { - "column": "9", - "line": "2490", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_SLVPENDINGCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@161440@macro@I2C_INTENCLR_SLVPENDINGCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_SLVPENDINGCLR", - "location": { - "column": "9", - "line": "2491", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_SLVPENDINGCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@161592@macro@I2C_INTENCLR_SLVNOTSTRCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_SLVNOTSTRCLR_MASK", - "location": { - "column": "9", - "line": "2492", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_SLVNOTSTRCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@161651@macro@I2C_INTENCLR_SLVNOTSTRCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_SLVNOTSTRCLR_SHIFT", - "location": { - "column": "9", - "line": "2493", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_SLVNOTSTRCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@161707@macro@I2C_INTENCLR_SLVNOTSTRCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_SLVNOTSTRCLR", - "location": { - "column": "9", - "line": "2494", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_SLVNOTSTRCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@161857@macro@I2C_INTENCLR_SLVDESELCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_SLVDESELCLR_MASK", - "location": { - "column": "9", - "line": "2495", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_SLVDESELCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@161917@macro@I2C_INTENCLR_SLVDESELCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_SLVDESELCLR_SHIFT", - "location": { - "column": "9", - "line": "2496", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_SLVDESELCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@161973@macro@I2C_INTENCLR_SLVDESELCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_SLVDESELCLR", - "location": { - "column": "9", - "line": "2497", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_SLVDESELCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@162121@macro@I2C_INTENCLR_MONRDYCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MONRDYCLR_MASK", - "location": { - "column": "9", - "line": "2498", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MONRDYCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@162182@macro@I2C_INTENCLR_MONRDYCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MONRDYCLR_SHIFT", - "location": { - "column": "9", - "line": "2499", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MONRDYCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@162238@macro@I2C_INTENCLR_MONRDYCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MONRDYCLR", - "location": { - "column": "9", - "line": "2500", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MONRDYCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@162382@macro@I2C_INTENCLR_MONOVCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MONOVCLR_MASK", - "location": { - "column": "9", - "line": "2501", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MONOVCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@162443@macro@I2C_INTENCLR_MONOVCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MONOVCLR_SHIFT", - "location": { - "column": "9", - "line": "2502", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MONOVCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@162499@macro@I2C_INTENCLR_MONOVCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MONOVCLR", - "location": { - "column": "9", - "line": "2503", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MONOVCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@162641@macro@I2C_INTENCLR_MONIDLECLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MONIDLECLR_MASK", - "location": { - "column": "9", - "line": "2504", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MONIDLECLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@162702@macro@I2C_INTENCLR_MONIDLECLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MONIDLECLR_SHIFT", - "location": { - "column": "9", - "line": "2505", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MONIDLECLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@162758@macro@I2C_INTENCLR_MONIDLECLR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_MONIDLECLR", - "location": { - "column": "9", - "line": "2506", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_MONIDLECLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@162904@macro@I2C_INTENCLR_EVENTTIMEOUTCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_EVENTTIMEOUTCLR_MASK", - "location": { - "column": "9", - "line": "2507", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_EVENTTIMEOUTCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@162967@macro@I2C_INTENCLR_EVENTTIMEOUTCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_EVENTTIMEOUTCLR_SHIFT", - "location": { - "column": "9", - "line": "2508", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_EVENTTIMEOUTCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@163023@macro@I2C_INTENCLR_EVENTTIMEOUTCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_EVENTTIMEOUTCLR", - "location": { - "column": "9", - "line": "2509", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_EVENTTIMEOUTCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@163179@macro@I2C_INTENCLR_SCLTIMEOUTCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_SCLTIMEOUTCLR_MASK", - "location": { - "column": "9", - "line": "2510", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_SCLTIMEOUTCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@163242@macro@I2C_INTENCLR_SCLTIMEOUTCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_SCLTIMEOUTCLR_SHIFT", - "location": { - "column": "9", - "line": "2511", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_SCLTIMEOUTCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@163298@macro@I2C_INTENCLR_SCLTIMEOUTCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTENCLR_SCLTIMEOUTCLR", - "location": { - "column": "9", - "line": "2512", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTENCLR_SCLTIMEOUTCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@163523@macro@I2C_TIMEOUT_TOMIN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_TIMEOUT_TOMIN_MASK", - "location": { - "column": "9", - "line": "2517", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_TIMEOUT_TOMIN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@163580@macro@I2C_TIMEOUT_TOMIN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_TIMEOUT_TOMIN_SHIFT", - "location": { - "column": "9", - "line": "2518", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_TIMEOUT_TOMIN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@163635@macro@I2C_TIMEOUT_TOMIN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_TIMEOUT_TOMIN", - "location": { - "column": "9", - "line": "2519", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_TIMEOUT_TOMIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@163769@macro@I2C_TIMEOUT_TO_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_TIMEOUT_TO_MASK", - "location": { - "column": "9", - "line": "2520", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_TIMEOUT_TO_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@163829@macro@I2C_TIMEOUT_TO_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_TIMEOUT_TO_SHIFT", - "location": { - "column": "9", - "line": "2521", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_TIMEOUT_TO_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@163884@macro@I2C_TIMEOUT_TO", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_TIMEOUT_TO", - "location": { - "column": "9", - "line": "2522", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_TIMEOUT_TO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@164227@macro@I2C_CLKDIV_DIVVAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CLKDIV_DIVVAL_MASK", - "location": { - "column": "9", - "line": "2527", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CLKDIV_DIVVAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@164287@macro@I2C_CLKDIV_DIVVAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CLKDIV_DIVVAL_SHIFT", - "location": { - "column": "9", - "line": "2528", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CLKDIV_DIVVAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@164342@macro@I2C_CLKDIV_DIVVAL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_CLKDIV_DIVVAL", - "location": { - "column": "9", - "line": "2529", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_CLKDIV_DIVVAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@164592@macro@I2C_INTSTAT_MSTPENDING_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MSTPENDING_MASK", - "location": { - "column": "9", - "line": "2534", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MSTPENDING_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@164649@macro@I2C_INTSTAT_MSTPENDING_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MSTPENDING_SHIFT", - "location": { - "column": "9", - "line": "2535", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MSTPENDING_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@164704@macro@I2C_INTSTAT_MSTPENDING", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MSTPENDING", - "location": { - "column": "9", - "line": "2536", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MSTPENDING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@164848@macro@I2C_INTSTAT_MSTARBLOSS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MSTARBLOSS_MASK", - "location": { - "column": "9", - "line": "2537", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MSTARBLOSS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@164906@macro@I2C_INTSTAT_MSTARBLOSS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MSTARBLOSS_SHIFT", - "location": { - "column": "9", - "line": "2538", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MSTARBLOSS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@164961@macro@I2C_INTSTAT_MSTARBLOSS", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MSTARBLOSS", - "location": { - "column": "9", - "line": "2539", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MSTARBLOSS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@165105@macro@I2C_INTSTAT_MSTSTSTPERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MSTSTSTPERR_MASK", - "location": { - "column": "9", - "line": "2540", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MSTSTSTPERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@165163@macro@I2C_INTSTAT_MSTSTSTPERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MSTSTSTPERR_SHIFT", - "location": { - "column": "9", - "line": "2541", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MSTSTSTPERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@165218@macro@I2C_INTSTAT_MSTSTSTPERR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MSTSTSTPERR", - "location": { - "column": "9", - "line": "2542", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MSTSTSTPERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@165364@macro@I2C_INTSTAT_SLVPENDING_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_SLVPENDING_MASK", - "location": { - "column": "9", - "line": "2543", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_SLVPENDING_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@165423@macro@I2C_INTSTAT_SLVPENDING_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_SLVPENDING_SHIFT", - "location": { - "column": "9", - "line": "2544", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_SLVPENDING_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@165478@macro@I2C_INTSTAT_SLVPENDING", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_SLVPENDING", - "location": { - "column": "9", - "line": "2545", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_SLVPENDING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@165622@macro@I2C_INTSTAT_SLVNOTSTR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_SLVNOTSTR_MASK", - "location": { - "column": "9", - "line": "2546", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_SLVNOTSTR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@165681@macro@I2C_INTSTAT_SLVNOTSTR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_SLVNOTSTR_SHIFT", - "location": { - "column": "9", - "line": "2547", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_SLVNOTSTR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@165737@macro@I2C_INTSTAT_SLVNOTSTR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_SLVNOTSTR", - "location": { - "column": "9", - "line": "2548", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_SLVNOTSTR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@165879@macro@I2C_INTSTAT_SLVDESEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_SLVDESEL_MASK", - "location": { - "column": "9", - "line": "2549", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_SLVDESEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@165939@macro@I2C_INTSTAT_SLVDESEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_SLVDESEL_SHIFT", - "location": { - "column": "9", - "line": "2550", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_SLVDESEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@165995@macro@I2C_INTSTAT_SLVDESEL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_SLVDESEL", - "location": { - "column": "9", - "line": "2551", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_SLVDESEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@166135@macro@I2C_INTSTAT_MONRDY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MONRDY_MASK", - "location": { - "column": "9", - "line": "2552", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MONRDY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@166196@macro@I2C_INTSTAT_MONRDY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MONRDY_SHIFT", - "location": { - "column": "9", - "line": "2553", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MONRDY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@166252@macro@I2C_INTSTAT_MONRDY", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MONRDY", - "location": { - "column": "9", - "line": "2554", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MONRDY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@166388@macro@I2C_INTSTAT_MONOV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MONOV_MASK", - "location": { - "column": "9", - "line": "2555", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MONOV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@166449@macro@I2C_INTSTAT_MONOV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MONOV_SHIFT", - "location": { - "column": "9", - "line": "2556", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MONOV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@166505@macro@I2C_INTSTAT_MONOV", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MONOV", - "location": { - "column": "9", - "line": "2557", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MONOV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@166639@macro@I2C_INTSTAT_MONIDLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MONIDLE_MASK", - "location": { - "column": "9", - "line": "2558", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MONIDLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@166700@macro@I2C_INTSTAT_MONIDLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MONIDLE_SHIFT", - "location": { - "column": "9", - "line": "2559", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MONIDLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@166756@macro@I2C_INTSTAT_MONIDLE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_MONIDLE", - "location": { - "column": "9", - "line": "2560", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_MONIDLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@166894@macro@I2C_INTSTAT_EVENTTIMEOUT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_EVENTTIMEOUT_MASK", - "location": { - "column": "9", - "line": "2561", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_EVENTTIMEOUT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@166957@macro@I2C_INTSTAT_EVENTTIMEOUT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_EVENTTIMEOUT_SHIFT", - "location": { - "column": "9", - "line": "2562", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_EVENTTIMEOUT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@167013@macro@I2C_INTSTAT_EVENTTIMEOUT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_EVENTTIMEOUT", - "location": { - "column": "9", - "line": "2563", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_EVENTTIMEOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@167161@macro@I2C_INTSTAT_SCLTIMEOUT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_SCLTIMEOUT_MASK", - "location": { - "column": "9", - "line": "2564", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_SCLTIMEOUT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@167224@macro@I2C_INTSTAT_SCLTIMEOUT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_SCLTIMEOUT_SHIFT", - "location": { - "column": "9", - "line": "2565", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_SCLTIMEOUT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@167280@macro@I2C_INTSTAT_SCLTIMEOUT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_INTSTAT_SCLTIMEOUT", - "location": { - "column": "9", - "line": "2566", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_INTSTAT_SCLTIMEOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@167496@macro@I2C_MSTCTL_MSTCONTINUE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTCTL_MSTCONTINUE_MASK", - "location": { - "column": "9", - "line": "2571", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTCTL_MSTCONTINUE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@167553@macro@I2C_MSTCTL_MSTCONTINUE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTCTL_MSTCONTINUE_SHIFT", - "location": { - "column": "9", - "line": "2572", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTCTL_MSTCONTINUE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@167905@macro@I2C_MSTCTL_MSTCONTINUE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTCTL_MSTCONTINUE", - "location": { - "column": "9", - "line": "2577", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTCTL_MSTCONTINUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@168049@macro@I2C_MSTCTL_MSTSTART_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTCTL_MSTSTART_MASK", - "location": { - "column": "9", - "line": "2578", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTCTL_MSTSTART_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@168106@macro@I2C_MSTCTL_MSTSTART_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTCTL_MSTSTART_SHIFT", - "location": { - "column": "9", - "line": "2579", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTCTL_MSTSTART_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@168333@macro@I2C_MSTCTL_MSTSTART", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTCTL_MSTSTART", - "location": { - "column": "9", - "line": "2584", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTCTL_MSTSTART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@168471@macro@I2C_MSTCTL_MSTSTOP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTCTL_MSTSTOP_MASK", - "location": { - "column": "9", - "line": "2585", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTCTL_MSTSTOP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@168528@macro@I2C_MSTCTL_MSTSTOP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTCTL_MSTSTOP_SHIFT", - "location": { - "column": "9", - "line": "2586", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTCTL_MSTSTOP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@168854@macro@I2C_MSTCTL_MSTSTOP", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTCTL_MSTSTOP", - "location": { - "column": "9", - "line": "2591", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTCTL_MSTSTOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@168990@macro@I2C_MSTCTL_MSTDMA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTCTL_MSTDMA_MASK", - "location": { - "column": "9", - "line": "2592", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTCTL_MSTDMA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@169047@macro@I2C_MSTCTL_MSTDMA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTCTL_MSTDMA_SHIFT", - "location": { - "column": "9", - "line": "2593", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTCTL_MSTDMA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@169955@macro@I2C_MSTCTL_MSTDMA", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTCTL_MSTDMA", - "location": { - "column": "9", - "line": "2598", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTCTL_MSTDMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@170166@macro@I2C_MSTTIME_MSTSCLLOW_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTTIME_MSTSCLLOW_MASK", - "location": { - "column": "9", - "line": "2603", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTTIME_MSTSCLLOW_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@170223@macro@I2C_MSTTIME_MSTSCLLOW_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTTIME_MSTSCLLOW_SHIFT", - "location": { - "column": "9", - "line": "2604", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTTIME_MSTSCLLOW_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@171327@macro@I2C_MSTTIME_MSTSCLLOW", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTTIME_MSTSCLLOW", - "location": { - "column": "9", - "line": "2615", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTTIME_MSTSCLLOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@171469@macro@I2C_MSTTIME_MSTSCLHIGH_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTTIME_MSTSCLHIGH_MASK", - "location": { - "column": "9", - "line": "2616", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTTIME_MSTSCLHIGH_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@171527@macro@I2C_MSTTIME_MSTSCLHIGH_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTTIME_MSTSCLHIGH_SHIFT", - "location": { - "column": "9", - "line": "2617", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTTIME_MSTSCLHIGH_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@172634@macro@I2C_MSTTIME_MSTSCLHIGH", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTTIME_MSTSCLHIGH", - "location": { - "column": "9", - "line": "2628", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTTIME_MSTSCLHIGH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@172881@macro@I2C_MSTDAT_DATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTDAT_DATA_MASK", - "location": { - "column": "9", - "line": "2633", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTDAT_DATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@172939@macro@I2C_MSTDAT_DATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTDAT_DATA_SHIFT", - "location": { - "column": "9", - "line": "2634", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTDAT_DATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@172994@macro@I2C_MSTDAT_DATA", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MSTDAT_DATA", - "location": { - "column": "9", - "line": "2635", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MSTDAT_DATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@173195@macro@I2C_SLVCTL_SLVCONTINUE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_SLVCONTINUE_MASK", - "location": { - "column": "9", - "line": "2640", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_SLVCONTINUE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@173252@macro@I2C_SLVCTL_SLVCONTINUE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_SLVCONTINUE_SHIFT", - "location": { - "column": "9", - "line": "2641", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_SLVCONTINUE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@173736@macro@I2C_SLVCTL_SLVCONTINUE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_SLVCONTINUE", - "location": { - "column": "9", - "line": "2646", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_SLVCONTINUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@173880@macro@I2C_SLVCTL_SLVNACK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_SLVNACK_MASK", - "location": { - "column": "9", - "line": "2647", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_SLVNACK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@173937@macro@I2C_SLVCTL_SLVNACK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_SLVNACK_SHIFT", - "location": { - "column": "9", - "line": "2648", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_SLVNACK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@174178@macro@I2C_SLVCTL_SLVNACK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_SLVNACK", - "location": { - "column": "9", - "line": "2653", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_SLVNACK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@174314@macro@I2C_SLVCTL_SLVDMA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_SLVDMA_MASK", - "location": { - "column": "9", - "line": "2654", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_SLVDMA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@174371@macro@I2C_SLVCTL_SLVDMA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_SLVDMA_SHIFT", - "location": { - "column": "9", - "line": "2655", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_SLVDMA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@174626@macro@I2C_SLVCTL_SLVDMA", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_SLVDMA", - "location": { - "column": "9", - "line": "2660", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_SLVDMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@174760@macro@I2C_SLVCTL_AUTOACK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_AUTOACK_MASK", - "location": { - "column": "9", - "line": "2661", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_AUTOACK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@174819@macro@I2C_SLVCTL_AUTOACK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_AUTOACK_SHIFT", - "location": { - "column": "9", - "line": "2662", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_AUTOACK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@175891@macro@I2C_SLVCTL_AUTOACK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_AUTOACK", - "location": { - "column": "9", - "line": "2667", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_AUTOACK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@176027@macro@I2C_SLVCTL_AUTOMATCHREAD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_AUTOMATCHREAD_MASK", - "location": { - "column": "9", - "line": "2668", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_AUTOMATCHREAD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@176086@macro@I2C_SLVCTL_AUTOMATCHREAD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_AUTOMATCHREAD_SHIFT", - "location": { - "column": "9", - "line": "2669", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_AUTOMATCHREAD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@176615@macro@I2C_SLVCTL_AUTOMATCHREAD", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVCTL_AUTOMATCHREAD", - "location": { - "column": "9", - "line": "2674", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVCTL_AUTOMATCHREAD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@176865@macro@I2C_SLVDAT_DATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVDAT_DATA_MASK", - "location": { - "column": "9", - "line": "2679", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVDAT_DATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@176923@macro@I2C_SLVDAT_DATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVDAT_DATA_SHIFT", - "location": { - "column": "9", - "line": "2680", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVDAT_DATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@176978@macro@I2C_SLVDAT_DATA", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVDAT_DATA", - "location": { - "column": "9", - "line": "2681", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVDAT_DATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@177179@macro@I2C_SLVADR_SADISABLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVADR_SADISABLE_MASK", - "location": { - "column": "9", - "line": "2686", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVADR_SADISABLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@177236@macro@I2C_SLVADR_SADISABLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVADR_SADISABLE_SHIFT", - "location": { - "column": "9", - "line": "2687", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVADR_SADISABLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@177431@macro@I2C_SLVADR_SADISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVADR_SADISABLE", - "location": { - "column": "9", - "line": "2692", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVADR_SADISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@177571@macro@I2C_SLVADR_SLVADR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVADR_SLVADR_MASK", - "location": { - "column": "9", - "line": "2693", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVADR_SLVADR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@177629@macro@I2C_SLVADR_SLVADR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVADR_SLVADR_SHIFT", - "location": { - "column": "9", - "line": "2694", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVADR_SLVADR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@177684@macro@I2C_SLVADR_SLVADR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVADR_SLVADR", - "location": { - "column": "9", - "line": "2695", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVADR_SLVADR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@177818@macro@I2C_SLVADR_AUTONACK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVADR_AUTONACK_MASK", - "location": { - "column": "9", - "line": "2696", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVADR_AUTONACK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@177878@macro@I2C_SLVADR_AUTONACK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVADR_AUTONACK_SHIFT", - "location": { - "column": "9", - "line": "2697", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVADR_AUTONACK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@178353@macro@I2C_SLVADR_AUTONACK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVADR_AUTONACK", - "location": { - "column": "9", - "line": "2702", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVADR_AUTONACK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@178535@macro@I2C_SLVADR_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVADR_COUNT", - "location": { - "column": "9", - "line": "2706", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVADR_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@178663@macro@I2C_SLVQUAL0_QUALMODE0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVQUAL0_QUALMODE0_MASK", - "location": { - "column": "9", - "line": "2710", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVQUAL0_QUALMODE0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@178720@macro@I2C_SLVQUAL0_QUALMODE0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVQUAL0_QUALMODE0_SHIFT", - "location": { - "column": "9", - "line": "2711", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVQUAL0_QUALMODE0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@179015@macro@I2C_SLVQUAL0_QUALMODE0", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVQUAL0_QUALMODE0", - "location": { - "column": "9", - "line": "2716", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVQUAL0_QUALMODE0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@179159@macro@I2C_SLVQUAL0_SLVQUAL0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVQUAL0_SLVQUAL0_MASK", - "location": { - "column": "9", - "line": "2717", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVQUAL0_SLVQUAL0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@179217@macro@I2C_SLVQUAL0_SLVQUAL0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVQUAL0_SLVQUAL0_SHIFT", - "location": { - "column": "9", - "line": "2718", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVQUAL0_SLVQUAL0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@179272@macro@I2C_SLVQUAL0_SLVQUAL0", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_SLVQUAL0_SLVQUAL0", - "location": { - "column": "9", - "line": "2719", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_SLVQUAL0_SLVQUAL0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@179495@macro@I2C_MONRXDAT_MONRXDAT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MONRXDAT_MONRXDAT_MASK", - "location": { - "column": "9", - "line": "2724", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MONRXDAT_MONRXDAT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@179553@macro@I2C_MONRXDAT_MONRXDAT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MONRXDAT_MONRXDAT_SHIFT", - "location": { - "column": "9", - "line": "2725", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MONRXDAT_MONRXDAT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@179608@macro@I2C_MONRXDAT_MONRXDAT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MONRXDAT_MONRXDAT", - "location": { - "column": "9", - "line": "2726", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MONRXDAT_MONRXDAT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@179750@macro@I2C_MONRXDAT_MONSTART_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MONRXDAT_MONSTART_MASK", - "location": { - "column": "9", - "line": "2727", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MONRXDAT_MONSTART_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@179809@macro@I2C_MONRXDAT_MONSTART_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MONRXDAT_MONSTART_SHIFT", - "location": { - "column": "9", - "line": "2728", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MONRXDAT_MONSTART_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@180096@macro@I2C_MONRXDAT_MONSTART", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MONRXDAT_MONSTART", - "location": { - "column": "9", - "line": "2733", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MONRXDAT_MONSTART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@180238@macro@I2C_MONRXDAT_MONRESTART_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MONRXDAT_MONRESTART_MASK", - "location": { - "column": "9", - "line": "2734", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MONRXDAT_MONRESTART_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@180297@macro@I2C_MONRXDAT_MONRESTART_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MONRXDAT_MONRESTART_SHIFT", - "location": { - "column": "9", - "line": "2735", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MONRXDAT_MONRESTART_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@180631@macro@I2C_MONRXDAT_MONRESTART", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MONRXDAT_MONRESTART", - "location": { - "column": "9", - "line": "2740", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MONRXDAT_MONRESTART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@180777@macro@I2C_MONRXDAT_MONNACK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MONRXDAT_MONNACK_MASK", - "location": { - "column": "9", - "line": "2741", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MONRXDAT_MONNACK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@180836@macro@I2C_MONRXDAT_MONNACK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MONRXDAT_MONNACK_SHIFT", - "location": { - "column": "9", - "line": "2742", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MONRXDAT_MONNACK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@181200@macro@I2C_MONRXDAT_MONNACK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_MONRXDAT_MONNACK", - "location": { - "column": "9", - "line": "2747", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_MONRXDAT_MONNACK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@181419@macro@I2C_ID_APERTURE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ID_APERTURE_MASK", - "location": { - "column": "9", - "line": "2752", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_ID_APERTURE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@181477@macro@I2C_ID_APERTURE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ID_APERTURE_SHIFT", - "location": { - "column": "9", - "line": "2753", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_ID_APERTURE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@181532@macro@I2C_ID_APERTURE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ID_APERTURE", - "location": { - "column": "9", - "line": "2754", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_ID_APERTURE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@181662@macro@I2C_ID_MINOR_REV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ID_MINOR_REV_MASK", - "location": { - "column": "9", - "line": "2755", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_ID_MINOR_REV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@181721@macro@I2C_ID_MINOR_REV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ID_MINOR_REV_SHIFT", - "location": { - "column": "9", - "line": "2756", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_ID_MINOR_REV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@181776@macro@I2C_ID_MINOR_REV", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ID_MINOR_REV", - "location": { - "column": "9", - "line": "2757", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_ID_MINOR_REV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@181908@macro@I2C_ID_MAJOR_REV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ID_MAJOR_REV_MASK", - "location": { - "column": "9", - "line": "2758", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_ID_MAJOR_REV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@181968@macro@I2C_ID_MAJOR_REV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ID_MAJOR_REV_SHIFT", - "location": { - "column": "9", - "line": "2759", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_ID_MAJOR_REV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@182024@macro@I2C_ID_MAJOR_REV", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ID_MAJOR_REV", - "location": { - "column": "9", - "line": "2760", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_ID_MAJOR_REV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@182156@macro@I2C_ID_ID_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ID_ID_MASK", - "location": { - "column": "9", - "line": "2761", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_ID_ID_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@182220@macro@I2C_ID_ID_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ID_ID_SHIFT", - "location": { - "column": "9", - "line": "2762", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_ID_ID_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@182276@macro@I2C_ID_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_ID_ID", - "location": { - "column": "9", - "line": "2763", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_ID_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@182553@macro@I2C0_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C0_BASE", - "location": { - "column": "9", - "line": "2774", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C0_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@182654@macro@I2C0", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C0", - "location": { - "column": "9", - "line": "2776", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@182765@macro@I2C1_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C1_BASE", - "location": { - "column": "9", - "line": "2778", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C1_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@182866@macro@I2C1", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C1", - "location": { - "column": "9", - "line": "2780", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@182977@macro@I2C2_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C2_BASE", - "location": { - "column": "9", - "line": "2782", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C2_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@183078@macro@I2C2", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C2", - "location": { - "column": "9", - "line": "2784", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@183189@macro@I2C3_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C3_BASE", - "location": { - "column": "9", - "line": "2786", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C3_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@183290@macro@I2C3", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C3", - "location": { - "column": "9", - "line": "2788", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@183401@macro@I2C4_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C4_BASE", - "location": { - "column": "9", - "line": "2790", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C4_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@183502@macro@I2C4", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C4", - "location": { - "column": "9", - "line": "2792", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@183613@macro@I2C5_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C5_BASE", - "location": { - "column": "9", - "line": "2794", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C5_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@183714@macro@I2C5", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C5", - "location": { - "column": "9", - "line": "2796", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@183825@macro@I2C6_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C6_BASE", - "location": { - "column": "9", - "line": "2798", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C6_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@183926@macro@I2C6", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C6", - "location": { - "column": "9", - "line": "2800", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@184037@macro@I2C7_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C7_BASE", - "location": { - "column": "9", - "line": "2802", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C7_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@184138@macro@I2C7", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C7", - "location": { - "column": "9", - "line": "2804", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@184271@macro@I2C_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_BASE_ADDRS", - "location": { - "column": "9", - "line": "2806", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@184470@macro@I2C_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_BASE_PTRS", - "location": { - "column": "9", - "line": "2808", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@184625@macro@I2C_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "I2C_IRQS", - "location": { - "column": "9", - "line": "2810", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2C_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@I2S_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "2827", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@I2S_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "2828", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@CFG1", - "What": "FieldDecl", - "defdec": "Def", - "display": "CFG1", - "location": { - "column": "17", - "line": "2829", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CFG1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@CFG2", - "What": "FieldDecl", - "defdec": "Def", - "display": "CFG2", - "location": { - "column": "17", - "line": "2830", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CFG2", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@STAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "STAT", - "location": { - "column": "17", - "line": "2831", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "STAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@RESERVED_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_1", - "location": { - "column": "16", - "line": "2832", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@DIV", - "What": "FieldDecl", - "defdec": "Def", - "display": "DIV", - "location": { - "column": "17", - "line": "2833", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DIV", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@RESERVED_2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_2", - "location": { - "column": "16", - "line": "2834", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_2", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@FIFOCFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOCFG", - "location": { - "column": "17", - "line": "2835", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOCFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@FIFOSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOSTAT", - "location": { - "column": "17", - "line": "2836", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@FIFOTRIG", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOTRIG", - "location": { - "column": "17", - "line": "2837", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOTRIG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@RESERVED_3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_3", - "location": { - "column": "16", - "line": "2838", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_3", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@FIFOINTENSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOINTENSET", - "location": { - "column": "17", - "line": "2839", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOINTENSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@FIFOINTENCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOINTENCLR", - "location": { - "column": "17", - "line": "2840", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOINTENCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@FIFOINTSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOINTSTAT", - "location": { - "column": "17", - "line": "2841", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOINTSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@RESERVED_4", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_4", - "location": { - "column": "16", - "line": "2842", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_4", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@FIFOWR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOWR", - "location": { - "column": "17", - "line": "2843", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOWR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@FIFOWR48H", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOWR48H", - "location": { - "column": "17", - "line": "2844", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOWR48H", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@RESERVED_5", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_5", - "location": { - "column": "16", - "line": "2845", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_5", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@FIFORD", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFORD", - "location": { - "column": "17", - "line": "2846", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFORD", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@FIFORD48H", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFORD48H", - "location": { - "column": "17", - "line": "2847", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFORD48H", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@RESERVED_6", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_6", - "location": { - "column": "16", - "line": "2848", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_6", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@FIFORDNOPOP", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFORDNOPOP", - "location": { - "column": "17", - "line": "2849", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFORDNOPOP", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@FIFORD48HNOPOP", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFORD48HNOPOP", - "location": { - "column": "17", - "line": "2850", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFORD48HNOPOP", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@RESERVED_7", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_7", - "location": { - "column": "16", - "line": "2851", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_7", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - }, - { - "ID": "c:@SA@I2S_Type@FI@ID", - "What": "FieldDecl", - "defdec": "Def", - "display": "ID", - "location": { - "column": "17", - "line": "2852", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ID", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_2827_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@I2S_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct I2S_Type", - "location": { - "column": "3", - "line": "2853", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@188038@macro@I2S_CFG1_MAINENABLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_MAINENABLE_MASK", - "location": { - "column": "9", - "line": "2866", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_MAINENABLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@188095@macro@I2S_CFG1_MAINENABLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_MAINENABLE_SHIFT", - "location": { - "column": "9", - "line": "2867", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_MAINENABLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@188520@macro@I2S_CFG1_MAINENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_MAINENABLE", - "location": { - "column": "9", - "line": "2872", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_MAINENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@188658@macro@I2S_CFG1_DATAPAUSE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_DATAPAUSE_MASK", - "location": { - "column": "9", - "line": "2873", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_DATAPAUSE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@188715@macro@I2S_CFG1_DATAPAUSE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_DATAPAUSE_SHIFT", - "location": { - "column": "9", - "line": "2874", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_DATAPAUSE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@189699@macro@I2S_CFG1_DATAPAUSE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_DATAPAUSE", - "location": { - "column": "9", - "line": "2879", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_DATAPAUSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@189835@macro@I2S_CFG1_PAIRCOUNT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_PAIRCOUNT_MASK", - "location": { - "column": "9", - "line": "2880", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_PAIRCOUNT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@189892@macro@I2S_CFG1_PAIRCOUNT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_PAIRCOUNT_SHIFT", - "location": { - "column": "9", - "line": "2881", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_PAIRCOUNT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@190504@macro@I2S_CFG1_PAIRCOUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_PAIRCOUNT", - "location": { - "column": "9", - "line": "2888", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_PAIRCOUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@190640@macro@I2S_CFG1_MSTSLVCFG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_MSTSLVCFG_MASK", - "location": { - "column": "9", - "line": "2889", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_MSTSLVCFG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@190698@macro@I2S_CFG1_MSTSLVCFG_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_MSTSLVCFG_SHIFT", - "location": { - "column": "9", - "line": "2890", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_MSTSLVCFG_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@191418@macro@I2S_CFG1_MSTSLVCFG", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_MSTSLVCFG", - "location": { - "column": "9", - "line": "2897", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_MSTSLVCFG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@191554@macro@I2S_CFG1_MODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_MODE_MASK", - "location": { - "column": "9", - "line": "2898", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_MODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@191612@macro@I2S_CFG1_MODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_MODE_SHIFT", - "location": { - "column": "9", - "line": "2899", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_MODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@192602@macro@I2S_CFG1_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_MODE", - "location": { - "column": "9", - "line": "2906", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@192728@macro@I2S_CFG1_RIGHTLOW_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_RIGHTLOW_MASK", - "location": { - "column": "9", - "line": "2907", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_RIGHTLOW_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@192787@macro@I2S_CFG1_RIGHTLOW_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_RIGHTLOW_SHIFT", - "location": { - "column": "9", - "line": "2908", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_RIGHTLOW_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@193711@macro@I2S_CFG1_RIGHTLOW", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_RIGHTLOW", - "location": { - "column": "9", - "line": "2913", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_RIGHTLOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@193845@macro@I2S_CFG1_LEFTJUST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_LEFTJUST_MASK", - "location": { - "column": "9", - "line": "2914", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_LEFTJUST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@193904@macro@I2S_CFG1_LEFTJUST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_LEFTJUST_SHIFT", - "location": { - "column": "9", - "line": "2915", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_LEFTJUST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@194530@macro@I2S_CFG1_LEFTJUST", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_LEFTJUST", - "location": { - "column": "9", - "line": "2920", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_LEFTJUST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@194664@macro@I2S_CFG1_ONECHANNEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_ONECHANNEL_MASK", - "location": { - "column": "9", - "line": "2921", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_ONECHANNEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@194723@macro@I2S_CFG1_ONECHANNEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_ONECHANNEL_SHIFT", - "location": { - "column": "9", - "line": "2922", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_ONECHANNEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@195712@macro@I2S_CFG1_ONECHANNEL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_ONECHANNEL", - "location": { - "column": "9", - "line": "2927", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_ONECHANNEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@195850@macro@I2S_CFG1_SCK_POL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_SCK_POL_MASK", - "location": { - "column": "9", - "line": "2928", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_SCK_POL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@195910@macro@I2S_CFG1_SCK_POL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_SCK_POL_SHIFT", - "location": { - "column": "9", - "line": "2929", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_SCK_POL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@196181@macro@I2S_CFG1_SCK_POL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_SCK_POL", - "location": { - "column": "9", - "line": "2934", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_SCK_POL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@196313@macro@I2S_CFG1_WS_POL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_WS_POL_MASK", - "location": { - "column": "9", - "line": "2935", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_WS_POL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@196373@macro@I2S_CFG1_WS_POL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_WS_POL_SHIFT", - "location": { - "column": "9", - "line": "2936", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_WS_POL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@196679@macro@I2S_CFG1_WS_POL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_WS_POL", - "location": { - "column": "9", - "line": "2941", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_WS_POL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@196809@macro@I2S_CFG1_DATALEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_DATALEN_MASK", - "location": { - "column": "9", - "line": "2942", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_DATALEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@196871@macro@I2S_CFG1_DATALEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_DATALEN_SHIFT", - "location": { - "column": "9", - "line": "2943", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_DATALEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@196927@macro@I2S_CFG1_DATALEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG1_DATALEN", - "location": { - "column": "9", - "line": "2944", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG1_DATALEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@197159@macro@I2S_CFG2_FRAMELEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG2_FRAMELEN_MASK", - "location": { - "column": "9", - "line": "2949", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG2_FRAMELEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@197218@macro@I2S_CFG2_FRAMELEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG2_FRAMELEN_SHIFT", - "location": { - "column": "9", - "line": "2950", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG2_FRAMELEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@197273@macro@I2S_CFG2_FRAMELEN", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG2_FRAMELEN", - "location": { - "column": "9", - "line": "2951", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG2_FRAMELEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@197407@macro@I2S_CFG2_POSITION_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG2_POSITION_MASK", - "location": { - "column": "9", - "line": "2952", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG2_POSITION_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@197470@macro@I2S_CFG2_POSITION_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG2_POSITION_SHIFT", - "location": { - "column": "9", - "line": "2953", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG2_POSITION_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@197526@macro@I2S_CFG2_POSITION", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_CFG2_POSITION", - "location": { - "column": "9", - "line": "2954", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_CFG2_POSITION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@197751@macro@I2S_STAT_BUSY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_STAT_BUSY_MASK", - "location": { - "column": "9", - "line": "2959", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_STAT_BUSY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@197808@macro@I2S_STAT_BUSY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_STAT_BUSY_SHIFT", - "location": { - "column": "9", - "line": "2960", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_STAT_BUSY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@198149@macro@I2S_STAT_BUSY", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_STAT_BUSY", - "location": { - "column": "9", - "line": "2965", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_STAT_BUSY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@198275@macro@I2S_STAT_SLVFRMERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_STAT_SLVFRMERR_MASK", - "location": { - "column": "9", - "line": "2966", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_STAT_SLVFRMERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@198332@macro@I2S_STAT_SLVFRMERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_STAT_SLVFRMERR_SHIFT", - "location": { - "column": "9", - "line": "2967", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_STAT_SLVFRMERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@198835@macro@I2S_STAT_SLVFRMERR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_STAT_SLVFRMERR", - "location": { - "column": "9", - "line": "2972", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_STAT_SLVFRMERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@198971@macro@I2S_STAT_LR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_STAT_LR_MASK", - "location": { - "column": "9", - "line": "2973", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_STAT_LR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@199028@macro@I2S_STAT_LR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_STAT_LR_SHIFT", - "location": { - "column": "9", - "line": "2974", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_STAT_LR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@199384@macro@I2S_STAT_LR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_STAT_LR", - "location": { - "column": "9", - "line": "2979", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_STAT_LR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@199506@macro@I2S_STAT_DATAPAUSED_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_STAT_DATAPAUSED_MASK", - "location": { - "column": "9", - "line": "2980", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_STAT_DATAPAUSED_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@199563@macro@I2S_STAT_DATAPAUSED_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_STAT_DATAPAUSED_SHIFT", - "location": { - "column": "9", - "line": "2981", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_STAT_DATAPAUSED_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@199971@macro@I2S_STAT_DATAPAUSED", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_STAT_DATAPAUSED", - "location": { - "column": "9", - "line": "2986", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_STAT_DATAPAUSED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@200195@macro@I2S_DIV_DIV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_DIV_DIV_MASK", - "location": { - "column": "9", - "line": "2991", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_DIV_DIV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@200254@macro@I2S_DIV_DIV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_DIV_DIV_SHIFT", - "location": { - "column": "9", - "line": "2992", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_DIV_DIV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@200309@macro@I2S_DIV_DIV", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_DIV_DIV", - "location": { - "column": "9", - "line": "2993", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_DIV_DIV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@200519@macro@I2S_FIFOCFG_ENABLETX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_ENABLETX_MASK", - "location": { - "column": "9", - "line": "2998", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_ENABLETX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@200576@macro@I2S_FIFOCFG_ENABLETX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_ENABLETX_SHIFT", - "location": { - "column": "9", - "line": "2999", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_ENABLETX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@200762@macro@I2S_FIFOCFG_ENABLETX", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_ENABLETX", - "location": { - "column": "9", - "line": "3004", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_ENABLETX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@200902@macro@I2S_FIFOCFG_ENABLERX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_ENABLERX_MASK", - "location": { - "column": "9", - "line": "3005", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_ENABLERX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@200959@macro@I2S_FIFOCFG_ENABLERX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_ENABLERX_SHIFT", - "location": { - "column": "9", - "line": "3006", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_ENABLERX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@201142@macro@I2S_FIFOCFG_ENABLERX", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_ENABLERX", - "location": { - "column": "9", - "line": "3011", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_ENABLERX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@201282@macro@I2S_FIFOCFG_TXI2SSE0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_TXI2SSE0_MASK", - "location": { - "column": "9", - "line": "3012", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_TXI2SSE0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@201339@macro@I2S_FIFOCFG_TXI2SSE0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_TXI2SSE0_SHIFT", - "location": { - "column": "9", - "line": "3013", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_TXI2SSE0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@201944@macro@I2S_FIFOCFG_TXI2SSE0", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_TXI2SSE0", - "location": { - "column": "9", - "line": "3018", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_TXI2SSE0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@202084@macro@I2S_FIFOCFG_PACK48_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_PACK48_MASK", - "location": { - "column": "9", - "line": "3019", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_PACK48_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@202141@macro@I2S_FIFOCFG_PACK48_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_PACK48_SHIFT", - "location": { - "column": "9", - "line": "3020", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_PACK48_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@202486@macro@I2S_FIFOCFG_PACK48", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_PACK48", - "location": { - "column": "9", - "line": "3025", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_PACK48", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@202622@macro@I2S_FIFOCFG_SIZE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_SIZE_MASK", - "location": { - "column": "9", - "line": "3026", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_SIZE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@202680@macro@I2S_FIFOCFG_SIZE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_SIZE_SHIFT", - "location": { - "column": "9", - "line": "3027", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_SIZE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@202735@macro@I2S_FIFOCFG_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_SIZE", - "location": { - "column": "9", - "line": "3028", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@202867@macro@I2S_FIFOCFG_DMATX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_DMATX_MASK", - "location": { - "column": "9", - "line": "3029", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_DMATX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@202927@macro@I2S_FIFOCFG_DMATX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_DMATX_SHIFT", - "location": { - "column": "9", - "line": "3030", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_DMATX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@203223@macro@I2S_FIFOCFG_DMATX", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_DMATX", - "location": { - "column": "9", - "line": "3035", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_DMATX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@203357@macro@I2S_FIFOCFG_DMARX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_DMARX_MASK", - "location": { - "column": "9", - "line": "3036", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_DMARX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@203417@macro@I2S_FIFOCFG_DMARX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_DMARX_SHIFT", - "location": { - "column": "9", - "line": "3037", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_DMARX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@203711@macro@I2S_FIFOCFG_DMARX", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_DMARX", - "location": { - "column": "9", - "line": "3042", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_DMARX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@203845@macro@I2S_FIFOCFG_WAKETX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_WAKETX_MASK", - "location": { - "column": "9", - "line": "3043", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_WAKETX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@203905@macro@I2S_FIFOCFG_WAKETX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_WAKETX_SHIFT", - "location": { - "column": "9", - "line": "3044", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_WAKETX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@204624@macro@I2S_FIFOCFG_WAKETX", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_WAKETX", - "location": { - "column": "9", - "line": "3049", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_WAKETX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@204760@macro@I2S_FIFOCFG_WAKERX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_WAKERX_MASK", - "location": { - "column": "9", - "line": "3050", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_WAKERX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@204820@macro@I2S_FIFOCFG_WAKERX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_WAKERX_SHIFT", - "location": { - "column": "9", - "line": "3051", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_WAKERX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@205537@macro@I2S_FIFOCFG_WAKERX", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_WAKERX", - "location": { - "column": "9", - "line": "3056", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_WAKERX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@205673@macro@I2S_FIFOCFG_EMPTYTX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_EMPTYTX_MASK", - "location": { - "column": "9", - "line": "3057", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_EMPTYTX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@205734@macro@I2S_FIFOCFG_EMPTYTX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_EMPTYTX_SHIFT", - "location": { - "column": "9", - "line": "3058", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_EMPTYTX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@205790@macro@I2S_FIFOCFG_EMPTYTX", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_EMPTYTX", - "location": { - "column": "9", - "line": "3059", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_EMPTYTX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@205928@macro@I2S_FIFOCFG_EMPTYRX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_EMPTYRX_MASK", - "location": { - "column": "9", - "line": "3060", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_EMPTYRX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@205989@macro@I2S_FIFOCFG_EMPTYRX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_EMPTYRX_SHIFT", - "location": { - "column": "9", - "line": "3061", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_EMPTYRX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@206045@macro@I2S_FIFOCFG_EMPTYRX", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOCFG_EMPTYRX", - "location": { - "column": "9", - "line": "3062", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOCFG_EMPTYRX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@206254@macro@I2S_FIFOSTAT_TXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_TXERR_MASK", - "location": { - "column": "9", - "line": "3067", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_TXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@206311@macro@I2S_FIFOSTAT_TXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_TXERR_SHIFT", - "location": { - "column": "9", - "line": "3068", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_TXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@206366@macro@I2S_FIFOSTAT_TXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_TXERR", - "location": { - "column": "9", - "line": "3069", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_TXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@206502@macro@I2S_FIFOSTAT_RXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_RXERR_MASK", - "location": { - "column": "9", - "line": "3070", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_RXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@206559@macro@I2S_FIFOSTAT_RXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_RXERR_SHIFT", - "location": { - "column": "9", - "line": "3071", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_RXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@206614@macro@I2S_FIFOSTAT_RXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_RXERR", - "location": { - "column": "9", - "line": "3072", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_RXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@206750@macro@I2S_FIFOSTAT_PERINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_PERINT_MASK", - "location": { - "column": "9", - "line": "3073", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_PERINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@206807@macro@I2S_FIFOSTAT_PERINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_PERINT_SHIFT", - "location": { - "column": "9", - "line": "3074", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_PERINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@206862@macro@I2S_FIFOSTAT_PERINT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_PERINT", - "location": { - "column": "9", - "line": "3075", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_PERINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@207000@macro@I2S_FIFOSTAT_TXEMPTY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_TXEMPTY_MASK", - "location": { - "column": "9", - "line": "3076", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_TXEMPTY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@207058@macro@I2S_FIFOSTAT_TXEMPTY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_TXEMPTY_SHIFT", - "location": { - "column": "9", - "line": "3077", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_TXEMPTY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@207113@macro@I2S_FIFOSTAT_TXEMPTY", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_TXEMPTY", - "location": { - "column": "9", - "line": "3078", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_TXEMPTY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@207253@macro@I2S_FIFOSTAT_TXNOTFULL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_TXNOTFULL_MASK", - "location": { - "column": "9", - "line": "3079", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_TXNOTFULL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@207311@macro@I2S_FIFOSTAT_TXNOTFULL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_TXNOTFULL_SHIFT", - "location": { - "column": "9", - "line": "3080", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_TXNOTFULL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@207366@macro@I2S_FIFOSTAT_TXNOTFULL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_TXNOTFULL", - "location": { - "column": "9", - "line": "3081", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_TXNOTFULL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@207510@macro@I2S_FIFOSTAT_RXNOTEMPTY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_RXNOTEMPTY_MASK", - "location": { - "column": "9", - "line": "3082", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_RXNOTEMPTY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@207568@macro@I2S_FIFOSTAT_RXNOTEMPTY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_RXNOTEMPTY_SHIFT", - "location": { - "column": "9", - "line": "3083", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_RXNOTEMPTY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@207623@macro@I2S_FIFOSTAT_RXNOTEMPTY", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_RXNOTEMPTY", - "location": { - "column": "9", - "line": "3084", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_RXNOTEMPTY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@207769@macro@I2S_FIFOSTAT_RXFULL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_RXFULL_MASK", - "location": { - "column": "9", - "line": "3085", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_RXFULL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@207827@macro@I2S_FIFOSTAT_RXFULL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_RXFULL_SHIFT", - "location": { - "column": "9", - "line": "3086", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_RXFULL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@207882@macro@I2S_FIFOSTAT_RXFULL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_RXFULL", - "location": { - "column": "9", - "line": "3087", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_RXFULL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@208020@macro@I2S_FIFOSTAT_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_TXLVL_MASK", - "location": { - "column": "9", - "line": "3088", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@208080@macro@I2S_FIFOSTAT_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "3089", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@208135@macro@I2S_FIFOSTAT_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_TXLVL", - "location": { - "column": "9", - "line": "3090", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@208271@macro@I2S_FIFOSTAT_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_RXLVL_MASK", - "location": { - "column": "9", - "line": "3091", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@208333@macro@I2S_FIFOSTAT_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "3092", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@208389@macro@I2S_FIFOSTAT_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOSTAT_RXLVL", - "location": { - "column": "9", - "line": "3093", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOSTAT_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@208627@macro@I2S_FIFOTRIG_TXLVLENA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOTRIG_TXLVLENA_MASK", - "location": { - "column": "9", - "line": "3098", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOTRIG_TXLVLENA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@208684@macro@I2S_FIFOTRIG_TXLVLENA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOTRIG_TXLVLENA_SHIFT", - "location": { - "column": "9", - "line": "3099", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOTRIG_TXLVLENA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@209108@macro@I2S_FIFOTRIG_TXLVLENA", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOTRIG_TXLVLENA", - "location": { - "column": "9", - "line": "3104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOTRIG_TXLVLENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@209250@macro@I2S_FIFOTRIG_RXLVLENA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOTRIG_RXLVLENA_MASK", - "location": { - "column": "9", - "line": "3105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOTRIG_RXLVLENA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@209307@macro@I2S_FIFOTRIG_RXLVLENA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOTRIG_RXLVLENA_SHIFT", - "location": { - "column": "9", - "line": "3106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOTRIG_RXLVLENA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@209728@macro@I2S_FIFOTRIG_RXLVLENA", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOTRIG_RXLVLENA", - "location": { - "column": "9", - "line": "3111", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOTRIG_RXLVLENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@209870@macro@I2S_FIFOTRIG_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOTRIG_TXLVL_MASK", - "location": { - "column": "9", - "line": "3112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOTRIG_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@209929@macro@I2S_FIFOTRIG_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOTRIG_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "3113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOTRIG_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@209984@macro@I2S_FIFOTRIG_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOTRIG_TXLVL", - "location": { - "column": "9", - "line": "3114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOTRIG_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@210120@macro@I2S_FIFOTRIG_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOTRIG_RXLVL_MASK", - "location": { - "column": "9", - "line": "3115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOTRIG_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@210181@macro@I2S_FIFOTRIG_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOTRIG_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "3116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOTRIG_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@210237@macro@I2S_FIFOTRIG_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOTRIG_RXLVL", - "location": { - "column": "9", - "line": "3117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOTRIG_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@210480@macro@I2S_FIFOINTENSET_TXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENSET_TXERR_MASK", - "location": { - "column": "9", - "line": "3122", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENSET_TXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@210537@macro@I2S_FIFOINTENSET_TXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENSET_TXERR_SHIFT", - "location": { - "column": "9", - "line": "3123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENSET_TXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@210863@macro@I2S_FIFOINTENSET_TXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENSET_TXERR", - "location": { - "column": "9", - "line": "3128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENSET_TXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@211007@macro@I2S_FIFOINTENSET_RXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENSET_RXERR_MASK", - "location": { - "column": "9", - "line": "3129", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENSET_RXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@211064@macro@I2S_FIFOINTENSET_RXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENSET_RXERR_SHIFT", - "location": { - "column": "9", - "line": "3130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENSET_RXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@211387@macro@I2S_FIFOINTENSET_RXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENSET_RXERR", - "location": { - "column": "9", - "line": "3135", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENSET_RXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@211531@macro@I2S_FIFOINTENSET_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENSET_TXLVL_MASK", - "location": { - "column": "9", - "line": "3136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENSET_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@211588@macro@I2S_FIFOINTENSET_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENSET_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "3137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENSET_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@212041@macro@I2S_FIFOINTENSET_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENSET_TXLVL", - "location": { - "column": "9", - "line": "3142", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENSET_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@212185@macro@I2S_FIFOINTENSET_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENSET_RXLVL_MASK", - "location": { - "column": "9", - "line": "3143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENSET_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@212242@macro@I2S_FIFOINTENSET_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENSET_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "3144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENSET_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@212703@macro@I2S_FIFOINTENSET_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENSET_RXLVL", - "location": { - "column": "9", - "line": "3149", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENSET_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@212957@macro@I2S_FIFOINTENCLR_TXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENCLR_TXERR_MASK", - "location": { - "column": "9", - "line": "3154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENCLR_TXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@213014@macro@I2S_FIFOINTENCLR_TXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENCLR_TXERR_SHIFT", - "location": { - "column": "9", - "line": "3155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENCLR_TXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@213069@macro@I2S_FIFOINTENCLR_TXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENCLR_TXERR", - "location": { - "column": "9", - "line": "3156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENCLR_TXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@213213@macro@I2S_FIFOINTENCLR_RXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENCLR_RXERR_MASK", - "location": { - "column": "9", - "line": "3157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENCLR_RXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@213270@macro@I2S_FIFOINTENCLR_RXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENCLR_RXERR_SHIFT", - "location": { - "column": "9", - "line": "3158", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENCLR_RXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@213325@macro@I2S_FIFOINTENCLR_RXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENCLR_RXERR", - "location": { - "column": "9", - "line": "3159", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENCLR_RXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@213469@macro@I2S_FIFOINTENCLR_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENCLR_TXLVL_MASK", - "location": { - "column": "9", - "line": "3160", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENCLR_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@213526@macro@I2S_FIFOINTENCLR_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENCLR_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "3161", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENCLR_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@213581@macro@I2S_FIFOINTENCLR_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENCLR_TXLVL", - "location": { - "column": "9", - "line": "3162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENCLR_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@213725@macro@I2S_FIFOINTENCLR_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENCLR_RXLVL_MASK", - "location": { - "column": "9", - "line": "3163", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENCLR_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@213782@macro@I2S_FIFOINTENCLR_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENCLR_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "3164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENCLR_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@213837@macro@I2S_FIFOINTENCLR_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTENCLR_RXLVL", - "location": { - "column": "9", - "line": "3165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTENCLR_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@214065@macro@I2S_FIFOINTSTAT_TXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_TXERR_MASK", - "location": { - "column": "9", - "line": "3170", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_TXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@214122@macro@I2S_FIFOINTSTAT_TXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_TXERR_SHIFT", - "location": { - "column": "9", - "line": "3171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_TXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@214177@macro@I2S_FIFOINTSTAT_TXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_TXERR", - "location": { - "column": "9", - "line": "3172", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_TXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@214319@macro@I2S_FIFOINTSTAT_RXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_RXERR_MASK", - "location": { - "column": "9", - "line": "3173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_RXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@214376@macro@I2S_FIFOINTSTAT_RXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_RXERR_SHIFT", - "location": { - "column": "9", - "line": "3174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_RXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@214431@macro@I2S_FIFOINTSTAT_RXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_RXERR", - "location": { - "column": "9", - "line": "3175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_RXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@214573@macro@I2S_FIFOINTSTAT_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_TXLVL_MASK", - "location": { - "column": "9", - "line": "3176", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@214630@macro@I2S_FIFOINTSTAT_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "3177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@214685@macro@I2S_FIFOINTSTAT_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_TXLVL", - "location": { - "column": "9", - "line": "3178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@214827@macro@I2S_FIFOINTSTAT_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_RXLVL_MASK", - "location": { - "column": "9", - "line": "3179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@214884@macro@I2S_FIFOINTSTAT_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "3180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@214939@macro@I2S_FIFOINTSTAT_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_RXLVL", - "location": { - "column": "9", - "line": "3181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@215081@macro@I2S_FIFOINTSTAT_PERINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_PERINT_MASK", - "location": { - "column": "9", - "line": "3182", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_PERINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@215139@macro@I2S_FIFOINTSTAT_PERINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_PERINT_SHIFT", - "location": { - "column": "9", - "line": "3183", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_PERINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@215194@macro@I2S_FIFOINTSTAT_PERINT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOINTSTAT_PERINT", - "location": { - "column": "9", - "line": "3184", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOINTSTAT_PERINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@215402@macro@I2S_FIFOWR_TXDATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOWR_TXDATA_MASK", - "location": { - "column": "9", - "line": "3189", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOWR_TXDATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@215466@macro@I2S_FIFOWR_TXDATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOWR_TXDATA_SHIFT", - "location": { - "column": "9", - "line": "3190", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOWR_TXDATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@215521@macro@I2S_FIFOWR_TXDATA", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOWR_TXDATA", - "location": { - "column": "9", - "line": "3191", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOWR_TXDATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@215822@macro@I2S_FIFOWR48H_TXDATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOWR48H_TXDATA_MASK", - "location": { - "column": "9", - "line": "3196", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOWR48H_TXDATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@215884@macro@I2S_FIFOWR48H_TXDATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOWR48H_TXDATA_SHIFT", - "location": { - "column": "9", - "line": "3197", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOWR48H_TXDATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@215939@macro@I2S_FIFOWR48H_TXDATA", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFOWR48H_TXDATA", - "location": { - "column": "9", - "line": "3198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFOWR48H_TXDATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@216142@macro@I2S_FIFORD_RXDATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFORD_RXDATA_MASK", - "location": { - "column": "9", - "line": "3203", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFORD_RXDATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@216206@macro@I2S_FIFORD_RXDATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFORD_RXDATA_SHIFT", - "location": { - "column": "9", - "line": "3204", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFORD_RXDATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@216261@macro@I2S_FIFORD_RXDATA", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFORD_RXDATA", - "location": { - "column": "9", - "line": "3205", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFORD_RXDATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@216561@macro@I2S_FIFORD48H_RXDATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFORD48H_RXDATA_MASK", - "location": { - "column": "9", - "line": "3210", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFORD48H_RXDATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@216623@macro@I2S_FIFORD48H_RXDATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFORD48H_RXDATA_SHIFT", - "location": { - "column": "9", - "line": "3211", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFORD48H_RXDATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@216678@macro@I2S_FIFORD48H_RXDATA", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFORD48H_RXDATA", - "location": { - "column": "9", - "line": "3212", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFORD48H_RXDATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@216903@macro@I2S_FIFORDNOPOP_RXDATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFORDNOPOP_RXDATA_MASK", - "location": { - "column": "9", - "line": "3217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFORDNOPOP_RXDATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@216967@macro@I2S_FIFORDNOPOP_RXDATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFORDNOPOP_RXDATA_SHIFT", - "location": { - "column": "9", - "line": "3218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFORDNOPOP_RXDATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@217022@macro@I2S_FIFORDNOPOP_RXDATA", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFORDNOPOP_RXDATA", - "location": { - "column": "9", - "line": "3219", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFORDNOPOP_RXDATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@217354@macro@I2S_FIFORD48HNOPOP_RXDATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFORD48HNOPOP_RXDATA_MASK", - "location": { - "column": "9", - "line": "3224", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFORD48HNOPOP_RXDATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@217416@macro@I2S_FIFORD48HNOPOP_RXDATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFORD48HNOPOP_RXDATA_SHIFT", - "location": { - "column": "9", - "line": "3225", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFORD48HNOPOP_RXDATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@217471@macro@I2S_FIFORD48HNOPOP_RXDATA", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_FIFORD48HNOPOP_RXDATA", - "location": { - "column": "9", - "line": "3226", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_FIFORD48HNOPOP_RXDATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@217690@macro@I2S_ID_Aperture_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_ID_Aperture_MASK", - "location": { - "column": "9", - "line": "3231", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_ID_Aperture_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@217748@macro@I2S_ID_Aperture_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_ID_Aperture_SHIFT", - "location": { - "column": "9", - "line": "3232", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_ID_Aperture_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@217803@macro@I2S_ID_Aperture", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_ID_Aperture", - "location": { - "column": "9", - "line": "3233", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_ID_Aperture", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@217933@macro@I2S_ID_Minor_Rev_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_ID_Minor_Rev_MASK", - "location": { - "column": "9", - "line": "3234", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_ID_Minor_Rev_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@217992@macro@I2S_ID_Minor_Rev_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_ID_Minor_Rev_SHIFT", - "location": { - "column": "9", - "line": "3235", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_ID_Minor_Rev_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@218047@macro@I2S_ID_Minor_Rev", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_ID_Minor_Rev", - "location": { - "column": "9", - "line": "3236", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_ID_Minor_Rev", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@218179@macro@I2S_ID_Major_Rev_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_ID_Major_Rev_MASK", - "location": { - "column": "9", - "line": "3237", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_ID_Major_Rev_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@218239@macro@I2S_ID_Major_Rev_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_ID_Major_Rev_SHIFT", - "location": { - "column": "9", - "line": "3238", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_ID_Major_Rev_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@218295@macro@I2S_ID_Major_Rev", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_ID_Major_Rev", - "location": { - "column": "9", - "line": "3239", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_ID_Major_Rev", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@218427@macro@I2S_ID_ID_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_ID_ID_MASK", - "location": { - "column": "9", - "line": "3240", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_ID_ID_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@218491@macro@I2S_ID_ID_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_ID_ID_SHIFT", - "location": { - "column": "9", - "line": "3241", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_ID_ID_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@218547@macro@I2S_ID_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_ID_ID", - "location": { - "column": "9", - "line": "3242", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_ID_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@218824@macro@I2S0_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S0_BASE", - "location": { - "column": "9", - "line": "3253", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S0_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@218925@macro@I2S0", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S0", - "location": { - "column": "9", - "line": "3255", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@219036@macro@I2S1_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S1_BASE", - "location": { - "column": "9", - "line": "3257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S1_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@219137@macro@I2S1", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S1", - "location": { - "column": "9", - "line": "3259", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@219270@macro@I2S_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_BASE_ADDRS", - "location": { - "column": "9", - "line": "3261", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@219403@macro@I2S_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_BASE_PTRS", - "location": { - "column": "9", - "line": "3263", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@219522@macro@I2S_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "I2S_IRQS", - "location": { - "column": "9", - "line": "3265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "I2S_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@INPUTMUX_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "3282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@INPUTMUX_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "3283", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3282_9" - }, - { - "ID": "c:@SA@INPUTMUX_Type@FI@PINTSEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "PINTSEL", - "location": { - "column": "17", - "line": "3284", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINTSEL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3282_9" - }, - { - "ID": "c:@SA@INPUTMUX_Type@FI@RESERVED_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_1", - "location": { - "column": "16", - "line": "3285", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3282_9" - }, - { - "ID": "c:@SA@INPUTMUX_Type@FI@DMA_ITRIG_INMUX", - "What": "FieldDecl", - "defdec": "Def", - "display": "DMA_ITRIG_INMUX", - "location": { - "column": "17", - "line": "3286", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_ITRIG_INMUX", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3282_9" - }, - { - "ID": "c:@SA@INPUTMUX_Type@FI@RESERVED_2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_2", - "location": { - "column": "16", - "line": "3287", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_2", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3282_9" - }, - { - "ID": "c:@SA@INPUTMUX_Type@FI@DMA_OTRIG_INMUX", - "What": "FieldDecl", - "defdec": "Def", - "display": "DMA_OTRIG_INMUX", - "location": { - "column": "17", - "line": "3288", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA_OTRIG_INMUX", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3282_9" - }, - { - "ID": "c:@SA@INPUTMUX_Type@FI@RESERVED_3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_3", - "location": { - "column": "16", - "line": "3289", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_3", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3282_9" - }, - { - "ID": "c:@SA@INPUTMUX_Type@FI@FREQMEAS_REF", - "What": "FieldDecl", - "defdec": "Def", - "display": "FREQMEAS_REF", - "location": { - "column": "17", - "line": "3290", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FREQMEAS_REF", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3282_9" - }, - { - "ID": "c:@SA@INPUTMUX_Type@FI@FREQMEAS_TARGET", - "What": "FieldDecl", - "defdec": "Def", - "display": "FREQMEAS_TARGET", - "location": { - "column": "17", - "line": "3291", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FREQMEAS_TARGET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3282_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@INPUTMUX_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct INPUTMUX_Type", - "location": { - "column": "3", - "line": "3292", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@221205@macro@INPUTMUX_PINTSEL_INTPIN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_PINTSEL_INTPIN_MASK", - "location": { - "column": "9", - "line": "3305", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_PINTSEL_INTPIN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@221263@macro@INPUTMUX_PINTSEL_INTPIN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_PINTSEL_INTPIN_SHIFT", - "location": { - "column": "9", - "line": "3306", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_PINTSEL_INTPIN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@221318@macro@INPUTMUX_PINTSEL_INTPIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_PINTSEL_INTPIN", - "location": { - "column": "9", - "line": "3307", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_PINTSEL_INTPIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@221514@macro@INPUTMUX_PINTSEL_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_PINTSEL_COUNT", - "location": { - "column": "9", - "line": "3311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_PINTSEL_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@221654@macro@INPUTMUX_DMA_ITRIG_INMUX_INP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_DMA_ITRIG_INMUX_INP_MASK", - "location": { - "column": "9", - "line": "3315", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_DMA_ITRIG_INMUX_INP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@221712@macro@INPUTMUX_DMA_ITRIG_INMUX_INP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_DMA_ITRIG_INMUX_INP_SHIFT", - "location": { - "column": "9", - "line": "3316", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_DMA_ITRIG_INMUX_INP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@221767@macro@INPUTMUX_DMA_ITRIG_INMUX_INP", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_DMA_ITRIG_INMUX_INP", - "location": { - "column": "9", - "line": "3317", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_DMA_ITRIG_INMUX_INP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@221981@macro@INPUTMUX_DMA_ITRIG_INMUX_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_DMA_ITRIG_INMUX_COUNT", - "location": { - "column": "9", - "line": "3321", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_DMA_ITRIG_INMUX_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@222133@macro@INPUTMUX_DMA_OTRIG_INMUX_INP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_DMA_OTRIG_INMUX_INP_MASK", - "location": { - "column": "9", - "line": "3325", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_DMA_OTRIG_INMUX_INP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@222191@macro@INPUTMUX_DMA_OTRIG_INMUX_INP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_DMA_OTRIG_INMUX_INP_SHIFT", - "location": { - "column": "9", - "line": "3326", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_DMA_OTRIG_INMUX_INP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@222246@macro@INPUTMUX_DMA_OTRIG_INMUX_INP", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_DMA_OTRIG_INMUX_INP", - "location": { - "column": "9", - "line": "3327", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_DMA_OTRIG_INMUX_INP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@222460@macro@INPUTMUX_DMA_OTRIG_INMUX_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_DMA_OTRIG_INMUX_COUNT", - "location": { - "column": "9", - "line": "3331", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_DMA_OTRIG_INMUX_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@222609@macro@INPUTMUX_FREQMEAS_REF_CLKIN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_FREQMEAS_REF_CLKIN_MASK", - "location": { - "column": "9", - "line": "3335", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_FREQMEAS_REF_CLKIN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@222667@macro@INPUTMUX_FREQMEAS_REF_CLKIN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_FREQMEAS_REF_CLKIN_SHIFT", - "location": { - "column": "9", - "line": "3336", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_FREQMEAS_REF_CLKIN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@222722@macro@INPUTMUX_FREQMEAS_REF_CLKIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_FREQMEAS_REF_CLKIN", - "location": { - "column": "9", - "line": "3337", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_FREQMEAS_REF_CLKIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@222981@macro@INPUTMUX_FREQMEAS_TARGET_CLKIN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_FREQMEAS_TARGET_CLKIN_MASK", - "location": { - "column": "9", - "line": "3342", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_FREQMEAS_TARGET_CLKIN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@223039@macro@INPUTMUX_FREQMEAS_TARGET_CLKIN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_FREQMEAS_TARGET_CLKIN_SHIFT", - "location": { - "column": "9", - "line": "3343", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_FREQMEAS_TARGET_CLKIN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@223094@macro@INPUTMUX_FREQMEAS_TARGET_CLKIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_FREQMEAS_TARGET_CLKIN", - "location": { - "column": "9", - "line": "3344", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_FREQMEAS_TARGET_CLKIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@223427@macro@INPUTMUX_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_BASE", - "location": { - "column": "9", - "line": "3355", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@223532@macro@INPUTMUX", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX", - "location": { - "column": "9", - "line": "3357", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@223679@macro@INPUTMUX_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_BASE_ADDRS", - "location": { - "column": "9", - "line": "3359", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@223810@macro@INPUTMUX_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_BASE_PTRS", - "location": { - "column": "9", - "line": "3361", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUTMUX_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@IOCON_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "3378", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@IOCON_Type@FI@PIO", - "What": "FieldDecl", - "defdec": "Def", - "display": "PIO", - "location": { - "column": "17", - "line": "3379", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PIO", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3378_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@IOCON_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct IOCON_Type", - "location": { - "column": "3", - "line": "3380", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@224916@macro@IOCON_PIO_FUNC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_FUNC_MASK", - "location": { - "column": "9", - "line": "3393", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_FUNC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@224973@macro@IOCON_PIO_FUNC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_FUNC_SHIFT", - "location": { - "column": "9", - "line": "3394", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_FUNC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@225371@macro@IOCON_PIO_FUNC", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_FUNC", - "location": { - "column": "9", - "line": "3405", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_FUNC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@225499@macro@IOCON_PIO_MODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_MODE_MASK", - "location": { - "column": "9", - "line": "3406", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_MODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@225557@macro@IOCON_PIO_MODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_MODE_SHIFT", - "location": { - "column": "9", - "line": "3407", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_MODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@225900@macro@IOCON_PIO_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_MODE", - "location": { - "column": "9", - "line": "3414", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@226028@macro@IOCON_PIO_I2CSLEW_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_I2CSLEW_MASK", - "location": { - "column": "9", - "line": "3415", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_I2CSLEW_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@226086@macro@IOCON_PIO_I2CSLEW_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_I2CSLEW_SHIFT", - "location": { - "column": "9", - "line": "3416", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_I2CSLEW_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@226233@macro@IOCON_PIO_I2CSLEW", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_I2CSLEW", - "location": { - "column": "9", - "line": "3421", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_I2CSLEW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@226367@macro@IOCON_PIO_INVERT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_INVERT_MASK", - "location": { - "column": "9", - "line": "3422", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_INVERT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@226425@macro@IOCON_PIO_INVERT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_INVERT_SHIFT", - "location": { - "column": "9", - "line": "3423", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_INVERT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@226614@macro@IOCON_PIO_INVERT", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_INVERT", - "location": { - "column": "9", - "line": "3428", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_INVERT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@226746@macro@IOCON_PIO_DIGIMODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_DIGIMODE_MASK", - "location": { - "column": "9", - "line": "3429", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_DIGIMODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@226804@macro@IOCON_PIO_DIGIMODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_DIGIMODE_SHIFT", - "location": { - "column": "9", - "line": "3430", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_DIGIMODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@226955@macro@IOCON_PIO_DIGIMODE", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_DIGIMODE", - "location": { - "column": "9", - "line": "3435", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_DIGIMODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@227091@macro@IOCON_PIO_FILTEROFF_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_FILTEROFF_MASK", - "location": { - "column": "9", - "line": "3436", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_FILTEROFF_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@227150@macro@IOCON_PIO_FILTEROFF_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_FILTEROFF_SHIFT", - "location": { - "column": "9", - "line": "3437", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_FILTEROFF_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@227395@macro@IOCON_PIO_FILTEROFF", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_FILTEROFF", - "location": { - "column": "9", - "line": "3442", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_FILTEROFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@227533@macro@IOCON_PIO_I2CDRIVE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_I2CDRIVE_MASK", - "location": { - "column": "9", - "line": "3443", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_I2CDRIVE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@227592@macro@IOCON_PIO_I2CDRIVE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_I2CDRIVE_SHIFT", - "location": { - "column": "9", - "line": "3444", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_I2CDRIVE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@227971@macro@IOCON_PIO_I2CDRIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_I2CDRIVE", - "location": { - "column": "9", - "line": "3449", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_I2CDRIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@228107@macro@IOCON_PIO_SLEW_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_SLEW_MASK", - "location": { - "column": "9", - "line": "3450", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_SLEW_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@228166@macro@IOCON_PIO_SLEW_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_SLEW_SHIFT", - "location": { - "column": "9", - "line": "3451", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_SLEW_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@228480@macro@IOCON_PIO_SLEW", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_SLEW", - "location": { - "column": "9", - "line": "3456", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_SLEW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@228608@macro@IOCON_PIO_I2CFILTER_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_I2CFILTER_MASK", - "location": { - "column": "9", - "line": "3457", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_I2CFILTER_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@228667@macro@IOCON_PIO_I2CFILTER_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_I2CFILTER_SHIFT", - "location": { - "column": "9", - "line": "3458", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_I2CFILTER_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@228935@macro@IOCON_PIO_I2CFILTER", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_I2CFILTER", - "location": { - "column": "9", - "line": "3463", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_I2CFILTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@229073@macro@IOCON_PIO_OD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_OD_MASK", - "location": { - "column": "9", - "line": "3464", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_OD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@229132@macro@IOCON_PIO_OD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_OD_SHIFT", - "location": { - "column": "9", - "line": "3465", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_OD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@229344@macro@IOCON_PIO_OD", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_OD", - "location": { - "column": "9", - "line": "3470", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_OD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@229511@macro@IOCON_PIO_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_COUNT", - "location": { - "column": "9", - "line": "3474", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@229598@macro@IOCON_PIO_COUNT2", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_PIO_COUNT2", - "location": { - "column": "9", - "line": "3477", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_PIO_COUNT2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@229807@macro@IOCON_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_BASE", - "location": { - "column": "9", - "line": "3487", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@229909@macro@IOCON", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON", - "location": { - "column": "9", - "line": "3489", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@230047@macro@IOCON_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_BASE_ADDRS", - "location": { - "column": "9", - "line": "3491", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@230172@macro@IOCON_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_BASE_PTRS", - "location": { - "column": "9", - "line": "3493", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IOCON_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@MRT_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "3510", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@MRT_Type@S@LPC51U68.h@230647", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "3511", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@MRT_Type@S@LPC51U68.h@230647@FI@INTVAL", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTVAL", - "location": { - "column": "19", - "line": "3512", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTVAL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3510_9::_anonymous_LPC51U68_h_3511_3" - }, - { - "ID": "c:@SA@MRT_Type@S@LPC51U68.h@230647@FI@TIMER", - "What": "FieldDecl", - "defdec": "Def", - "display": "TIMER", - "location": { - "column": "19", - "line": "3513", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "TIMER", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3510_9::_anonymous_LPC51U68_h_3511_3" - }, - { - "ID": "c:@SA@MRT_Type@S@LPC51U68.h@230647@FI@CTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTRL", - "location": { - "column": "19", - "line": "3514", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3510_9::_anonymous_LPC51U68_h_3511_3" - }, - { - "ID": "c:@SA@MRT_Type@S@LPC51U68.h@230647@FI@STAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "STAT", - "location": { - "column": "19", - "line": "3515", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "STAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3510_9::_anonymous_LPC51U68_h_3511_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3510_9" - }, - { - "ID": "c:@SA@MRT_Type@FI@CHANNEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CHANNEL", - "location": { - "column": "5", - "line": "3516", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CHANNEL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3510_9" - }, - { - "ID": "c:@SA@MRT_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "3517", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3510_9" - }, - { - "ID": "c:@SA@MRT_Type@FI@MODCFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "MODCFG", - "location": { - "column": "17", - "line": "3518", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MODCFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3510_9" - }, - { - "ID": "c:@SA@MRT_Type@FI@IDLE_CH", - "What": "FieldDecl", - "defdec": "Def", - "display": "IDLE_CH", - "location": { - "column": "17", - "line": "3519", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IDLE_CH", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3510_9" - }, - { - "ID": "c:@SA@MRT_Type@FI@IRQ_FLAG", - "What": "FieldDecl", - "defdec": "Def", - "display": "IRQ_FLAG", - "location": { - "column": "17", - "line": "3520", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IRQ_FLAG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3510_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@MRT_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct MRT_Type", - "location": { - "column": "3", - "line": "3521", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@232326@macro@MRT_CHANNEL_INTVAL_IVALUE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_INTVAL_IVALUE_MASK", - "location": { - "column": "9", - "line": "3534", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_INTVAL_IVALUE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@232388@macro@MRT_CHANNEL_INTVAL_IVALUE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_INTVAL_IVALUE_SHIFT", - "location": { - "column": "9", - "line": "3535", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_INTVAL_IVALUE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@232443@macro@MRT_CHANNEL_INTVAL_IVALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_INTVAL_IVALUE", - "location": { - "column": "9", - "line": "3536", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_INTVAL_IVALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@232593@macro@MRT_CHANNEL_INTVAL_LOAD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_INTVAL_LOAD_MASK", - "location": { - "column": "9", - "line": "3537", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_INTVAL_LOAD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@232657@macro@MRT_CHANNEL_INTVAL_LOAD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_INTVAL_LOAD_SHIFT", - "location": { - "column": "9", - "line": "3538", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_INTVAL_LOAD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@233166@macro@MRT_CHANNEL_INTVAL_LOAD", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_INTVAL_LOAD", - "location": { - "column": "9", - "line": "3543", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_INTVAL_LOAD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@233364@macro@MRT_CHANNEL_INTVAL_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_INTVAL_COUNT", - "location": { - "column": "9", - "line": "3547", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_INTVAL_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@233533@macro@MRT_CHANNEL_TIMER_VALUE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_TIMER_VALUE_MASK", - "location": { - "column": "9", - "line": "3551", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_TIMER_VALUE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@233595@macro@MRT_CHANNEL_TIMER_VALUE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_TIMER_VALUE_SHIFT", - "location": { - "column": "9", - "line": "3552", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_TIMER_VALUE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@233650@macro@MRT_CHANNEL_TIMER_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_TIMER_VALUE", - "location": { - "column": "9", - "line": "3553", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_TIMER_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@233847@macro@MRT_CHANNEL_TIMER_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_TIMER_COUNT", - "location": { - "column": "9", - "line": "3557", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_TIMER_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@234004@macro@MRT_CHANNEL_CTRL_INTEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_CTRL_INTEN_MASK", - "location": { - "column": "9", - "line": "3561", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_CTRL_INTEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@234061@macro@MRT_CHANNEL_CTRL_INTEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_CTRL_INTEN_SHIFT", - "location": { - "column": "9", - "line": "3562", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_CTRL_INTEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@234261@macro@MRT_CHANNEL_CTRL_INTEN", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_CTRL_INTEN", - "location": { - "column": "9", - "line": "3567", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_CTRL_INTEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@234405@macro@MRT_CHANNEL_CTRL_MODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_CTRL_MODE_MASK", - "location": { - "column": "9", - "line": "3568", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_CTRL_MODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@234462@macro@MRT_CHANNEL_CTRL_MODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_CTRL_MODE_SHIFT", - "location": { - "column": "9", - "line": "3569", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_CTRL_MODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@234677@macro@MRT_CHANNEL_CTRL_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_CTRL_MODE", - "location": { - "column": "9", - "line": "3576", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_CTRL_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@234869@macro@MRT_CHANNEL_CTRL_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_CTRL_COUNT", - "location": { - "column": "9", - "line": "3580", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_CTRL_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@234987@macro@MRT_CHANNEL_STAT_INTFLAG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_STAT_INTFLAG_MASK", - "location": { - "column": "9", - "line": "3584", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_STAT_INTFLAG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@235044@macro@MRT_CHANNEL_STAT_INTFLAG_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_STAT_INTFLAG_SHIFT", - "location": { - "column": "9", - "line": "3585", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_STAT_INTFLAG_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@235513@macro@MRT_CHANNEL_STAT_INTFLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_STAT_INTFLAG", - "location": { - "column": "9", - "line": "3590", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_STAT_INTFLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@235661@macro@MRT_CHANNEL_STAT_RUN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_STAT_RUN_MASK", - "location": { - "column": "9", - "line": "3591", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_STAT_RUN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@235718@macro@MRT_CHANNEL_STAT_RUN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_STAT_RUN_SHIFT", - "location": { - "column": "9", - "line": "3592", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_STAT_RUN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@235922@macro@MRT_CHANNEL_STAT_RUN", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_STAT_RUN", - "location": { - "column": "9", - "line": "3597", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_STAT_RUN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@236062@macro@MRT_CHANNEL_STAT_INUSE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_STAT_INUSE_MASK", - "location": { - "column": "9", - "line": "3598", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_STAT_INUSE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@236119@macro@MRT_CHANNEL_STAT_INUSE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_STAT_INUSE_SHIFT", - "location": { - "column": "9", - "line": "3599", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_STAT_INUSE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@236453@macro@MRT_CHANNEL_STAT_INUSE", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_STAT_INUSE", - "location": { - "column": "9", - "line": "3604", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_STAT_INUSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@236647@macro@MRT_CHANNEL_STAT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CHANNEL_STAT_COUNT", - "location": { - "column": "9", - "line": "3608", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_CHANNEL_STAT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@236906@macro@MRT_MODCFG_NOC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_MODCFG_NOC_MASK", - "location": { - "column": "9", - "line": "3612", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_MODCFG_NOC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@236963@macro@MRT_MODCFG_NOC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_MODCFG_NOC_SHIFT", - "location": { - "column": "9", - "line": "3613", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_MODCFG_NOC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@237018@macro@MRT_MODCFG_NOC", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_MODCFG_NOC", - "location": { - "column": "9", - "line": "3614", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_MODCFG_NOC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@237146@macro@MRT_MODCFG_NOB_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_MODCFG_NOB_MASK", - "location": { - "column": "9", - "line": "3615", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_MODCFG_NOB_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@237205@macro@MRT_MODCFG_NOB_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_MODCFG_NOB_SHIFT", - "location": { - "column": "9", - "line": "3616", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_MODCFG_NOB_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@237260@macro@MRT_MODCFG_NOB", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_MODCFG_NOB", - "location": { - "column": "9", - "line": "3617", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_MODCFG_NOB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@237388@macro@MRT_MODCFG_MULTITASK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_MODCFG_MULTITASK_MASK", - "location": { - "column": "9", - "line": "3618", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_MODCFG_MULTITASK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@237452@macro@MRT_MODCFG_MULTITASK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_MODCFG_MULTITASK_SHIFT", - "location": { - "column": "9", - "line": "3619", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_MODCFG_MULTITASK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@237723@macro@MRT_MODCFG_MULTITASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_MODCFG_MULTITASK", - "location": { - "column": "9", - "line": "3624", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_MODCFG_MULTITASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@237994@macro@MRT_IDLE_CH_CHAN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IDLE_CH_CHAN_MASK", - "location": { - "column": "9", - "line": "3629", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IDLE_CH_CHAN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@238052@macro@MRT_IDLE_CH_CHAN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IDLE_CH_CHAN_SHIFT", - "location": { - "column": "9", - "line": "3630", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IDLE_CH_CHAN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@238107@macro@MRT_IDLE_CH_CHAN", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IDLE_CH_CHAN", - "location": { - "column": "9", - "line": "3631", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IDLE_CH_CHAN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@238319@macro@MRT_IRQ_FLAG_GFLAG0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IRQ_FLAG_GFLAG0_MASK", - "location": { - "column": "9", - "line": "3636", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IRQ_FLAG_GFLAG0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@238376@macro@MRT_IRQ_FLAG_GFLAG0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IRQ_FLAG_GFLAG0_SHIFT", - "location": { - "column": "9", - "line": "3637", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IRQ_FLAG_GFLAG0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@238863@macro@MRT_IRQ_FLAG_GFLAG0", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IRQ_FLAG_GFLAG0", - "location": { - "column": "9", - "line": "3642", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IRQ_FLAG_GFLAG0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@239001@macro@MRT_IRQ_FLAG_GFLAG1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IRQ_FLAG_GFLAG1_MASK", - "location": { - "column": "9", - "line": "3643", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IRQ_FLAG_GFLAG1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@239058@macro@MRT_IRQ_FLAG_GFLAG1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IRQ_FLAG_GFLAG1_SHIFT", - "location": { - "column": "9", - "line": "3644", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IRQ_FLAG_GFLAG1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@239113@macro@MRT_IRQ_FLAG_GFLAG1", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IRQ_FLAG_GFLAG1", - "location": { - "column": "9", - "line": "3645", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IRQ_FLAG_GFLAG1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@239251@macro@MRT_IRQ_FLAG_GFLAG2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IRQ_FLAG_GFLAG2_MASK", - "location": { - "column": "9", - "line": "3646", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IRQ_FLAG_GFLAG2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@239308@macro@MRT_IRQ_FLAG_GFLAG2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IRQ_FLAG_GFLAG2_SHIFT", - "location": { - "column": "9", - "line": "3647", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IRQ_FLAG_GFLAG2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@239363@macro@MRT_IRQ_FLAG_GFLAG2", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IRQ_FLAG_GFLAG2", - "location": { - "column": "9", - "line": "3648", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IRQ_FLAG_GFLAG2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@239501@macro@MRT_IRQ_FLAG_GFLAG3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IRQ_FLAG_GFLAG3_MASK", - "location": { - "column": "9", - "line": "3649", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IRQ_FLAG_GFLAG3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@239558@macro@MRT_IRQ_FLAG_GFLAG3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IRQ_FLAG_GFLAG3_SHIFT", - "location": { - "column": "9", - "line": "3650", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IRQ_FLAG_GFLAG3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@239613@macro@MRT_IRQ_FLAG_GFLAG3", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IRQ_FLAG_GFLAG3", - "location": { - "column": "9", - "line": "3651", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IRQ_FLAG_GFLAG3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@239910@macro@MRT0_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT0_BASE", - "location": { - "column": "9", - "line": "3662", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT0_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@240011@macro@MRT0", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT0", - "location": { - "column": "9", - "line": "3664", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@240144@macro@MRT_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_BASE_ADDRS", - "location": { - "column": "9", - "line": "3666", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@240266@macro@MRT_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_BASE_PTRS", - "location": { - "column": "9", - "line": "3668", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@240379@macro@MRT_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_IRQS", - "location": { - "column": "9", - "line": "3670", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MRT_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@PINT_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "3687", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@PINT_Type@FI@ISEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "ISEL", - "location": { - "column": "17", - "line": "3688", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ISEL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3687_9" - }, - { - "ID": "c:@SA@PINT_Type@FI@IENR", - "What": "FieldDecl", - "defdec": "Def", - "display": "IENR", - "location": { - "column": "17", - "line": "3689", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IENR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3687_9" - }, - { - "ID": "c:@SA@PINT_Type@FI@SIENR", - "What": "FieldDecl", - "defdec": "Def", - "display": "SIENR", - "location": { - "column": "17", - "line": "3690", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SIENR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3687_9" - }, - { - "ID": "c:@SA@PINT_Type@FI@CIENR", - "What": "FieldDecl", - "defdec": "Def", - "display": "CIENR", - "location": { - "column": "17", - "line": "3691", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CIENR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3687_9" - }, - { - "ID": "c:@SA@PINT_Type@FI@IENF", - "What": "FieldDecl", - "defdec": "Def", - "display": "IENF", - "location": { - "column": "17", - "line": "3692", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IENF", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3687_9" - }, - { - "ID": "c:@SA@PINT_Type@FI@SIENF", - "What": "FieldDecl", - "defdec": "Def", - "display": "SIENF", - "location": { - "column": "17", - "line": "3693", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SIENF", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3687_9" - }, - { - "ID": "c:@SA@PINT_Type@FI@CIENF", - "What": "FieldDecl", - "defdec": "Def", - "display": "CIENF", - "location": { - "column": "17", - "line": "3694", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CIENF", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3687_9" - }, - { - "ID": "c:@SA@PINT_Type@FI@RISE", - "What": "FieldDecl", - "defdec": "Def", - "display": "RISE", - "location": { - "column": "17", - "line": "3695", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RISE", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3687_9" - }, - { - "ID": "c:@SA@PINT_Type@FI@FALL", - "What": "FieldDecl", - "defdec": "Def", - "display": "FALL", - "location": { - "column": "17", - "line": "3696", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FALL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3687_9" - }, - { - "ID": "c:@SA@PINT_Type@FI@IST", - "What": "FieldDecl", - "defdec": "Def", - "display": "IST", - "location": { - "column": "17", - "line": "3697", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "IST", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3687_9" - }, - { - "ID": "c:@SA@PINT_Type@FI@PMCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "PMCTRL", - "location": { - "column": "17", - "line": "3698", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PMCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3687_9" - }, - { - "ID": "c:@SA@PINT_Type@FI@PMSRC", - "What": "FieldDecl", - "defdec": "Def", - "display": "PMSRC", - "location": { - "column": "17", - "line": "3699", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PMSRC", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3687_9" - }, - { - "ID": "c:@SA@PINT_Type@FI@PMCFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "PMCFG", - "location": { - "column": "17", - "line": "3700", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PMCFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_3687_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@PINT_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct PINT_Type", - "location": { - "column": "3", - "line": "3701", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@242827@macro@PINT_ISEL_PMODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_ISEL_PMODE_MASK", - "location": { - "column": "9", - "line": "3714", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_ISEL_PMODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@242885@macro@PINT_ISEL_PMODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_ISEL_PMODE_SHIFT", - "location": { - "column": "9", - "line": "3715", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_ISEL_PMODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@242940@macro@PINT_ISEL_PMODE", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_ISEL_PMODE", - "location": { - "column": "9", - "line": "3716", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_ISEL_PMODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@243176@macro@PINT_IENR_ENRL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_IENR_ENRL_MASK", - "location": { - "column": "9", - "line": "3721", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_IENR_ENRL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@243234@macro@PINT_IENR_ENRL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_IENR_ENRL_SHIFT", - "location": { - "column": "9", - "line": "3722", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_IENR_ENRL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@243289@macro@PINT_IENR_ENRL", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_IENR_ENRL", - "location": { - "column": "9", - "line": "3723", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_IENR_ENRL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@243521@macro@PINT_SIENR_SETENRL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_SIENR_SETENRL_MASK", - "location": { - "column": "9", - "line": "3728", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_SIENR_SETENRL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@243579@macro@PINT_SIENR_SETENRL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_SIENR_SETENRL_SHIFT", - "location": { - "column": "9", - "line": "3729", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_SIENR_SETENRL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@243634@macro@PINT_SIENR_SETENRL", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_SIENR_SETENRL", - "location": { - "column": "9", - "line": "3730", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_SIENR_SETENRL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@243875@macro@PINT_CIENR_CENRL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_CIENR_CENRL_MASK", - "location": { - "column": "9", - "line": "3735", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_CIENR_CENRL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@243933@macro@PINT_CIENR_CENRL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_CIENR_CENRL_SHIFT", - "location": { - "column": "9", - "line": "3736", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_CIENR_CENRL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@243988@macro@PINT_CIENR_CENRL", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_CIENR_CENRL", - "location": { - "column": "9", - "line": "3737", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_CIENR_CENRL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@244234@macro@PINT_IENF_ENAF_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_IENF_ENAF_MASK", - "location": { - "column": "9", - "line": "3742", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_IENF_ENAF_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@244292@macro@PINT_IENF_ENAF_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_IENF_ENAF_SHIFT", - "location": { - "column": "9", - "line": "3743", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_IENF_ENAF_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@244347@macro@PINT_IENF_ENAF", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_IENF_ENAF", - "location": { - "column": "9", - "line": "3744", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_IENF_ENAF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@244587@macro@PINT_SIENF_SETENAF_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_SIENF_SETENAF_MASK", - "location": { - "column": "9", - "line": "3749", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_SIENF_SETENAF_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@244645@macro@PINT_SIENF_SETENAF_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_SIENF_SETENAF_SHIFT", - "location": { - "column": "9", - "line": "3750", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_SIENF_SETENAF_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@244700@macro@PINT_SIENF_SETENAF", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_SIENF_SETENAF", - "location": { - "column": "9", - "line": "3751", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_SIENF_SETENAF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@244950@macro@PINT_CIENF_CENAF_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_CIENF_CENAF_MASK", - "location": { - "column": "9", - "line": "3756", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_CIENF_CENAF_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@245008@macro@PINT_CIENF_CENAF_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_CIENF_CENAF_SHIFT", - "location": { - "column": "9", - "line": "3757", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_CIENF_CENAF_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@245063@macro@PINT_CIENF_CENAF", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_CIENF_CENAF", - "location": { - "column": "9", - "line": "3758", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_CIENF_CENAF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@245275@macro@PINT_RISE_RDET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_RISE_RDET_MASK", - "location": { - "column": "9", - "line": "3763", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_RISE_RDET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@245333@macro@PINT_RISE_RDET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_RISE_RDET_SHIFT", - "location": { - "column": "9", - "line": "3764", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_RISE_RDET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@245388@macro@PINT_RISE_RDET", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_RISE_RDET", - "location": { - "column": "9", - "line": "3765", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_RISE_RDET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@245597@macro@PINT_FALL_FDET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_FALL_FDET_MASK", - "location": { - "column": "9", - "line": "3770", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_FALL_FDET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@245655@macro@PINT_FALL_FDET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_FALL_FDET_SHIFT", - "location": { - "column": "9", - "line": "3771", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_FALL_FDET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@245710@macro@PINT_FALL_FDET", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_FALL_FDET", - "location": { - "column": "9", - "line": "3772", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_FALL_FDET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@245912@macro@PINT_IST_PSTAT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_IST_PSTAT_MASK", - "location": { - "column": "9", - "line": "3777", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_IST_PSTAT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@245970@macro@PINT_IST_PSTAT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_IST_PSTAT_SHIFT", - "location": { - "column": "9", - "line": "3778", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_IST_PSTAT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@246025@macro@PINT_IST_PSTAT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_IST_PSTAT", - "location": { - "column": "9", - "line": "3779", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_IST_PSTAT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@246241@macro@PINT_PMCTRL_SEL_PMATCH_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCTRL_SEL_PMATCH_MASK", - "location": { - "column": "9", - "line": "3784", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCTRL_SEL_PMATCH_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@246298@macro@PINT_PMCTRL_SEL_PMATCH_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCTRL_SEL_PMATCH_SHIFT", - "location": { - "column": "9", - "line": "3785", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCTRL_SEL_PMATCH_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@246672@macro@PINT_PMCTRL_SEL_PMATCH", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCTRL_SEL_PMATCH", - "location": { - "column": "9", - "line": "3790", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCTRL_SEL_PMATCH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@246816@macro@PINT_PMCTRL_ENA_RXEV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCTRL_ENA_RXEV_MASK", - "location": { - "column": "9", - "line": "3791", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCTRL_ENA_RXEV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@246873@macro@PINT_PMCTRL_ENA_RXEV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCTRL_ENA_RXEV_SHIFT", - "location": { - "column": "9", - "line": "3792", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCTRL_ENA_RXEV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@247175@macro@PINT_PMCTRL_ENA_RXEV", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCTRL_ENA_RXEV", - "location": { - "column": "9", - "line": "3797", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCTRL_ENA_RXEV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@247315@macro@PINT_PMCTRL_PMAT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCTRL_PMAT_MASK", - "location": { - "column": "9", - "line": "3798", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCTRL_PMAT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@247379@macro@PINT_PMCTRL_PMAT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCTRL_PMAT_SHIFT", - "location": { - "column": "9", - "line": "3799", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCTRL_PMAT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@247435@macro@PINT_PMCTRL_PMAT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCTRL_PMAT", - "location": { - "column": "9", - "line": "3800", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCTRL_PMAT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@247663@macro@PINT_PMSRC_SRC0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC0_MASK", - "location": { - "column": "9", - "line": "3805", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@247722@macro@PINT_PMSRC_SRC0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC0_SHIFT", - "location": { - "column": "9", - "line": "3806", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@248643@macro@PINT_PMSRC_SRC0", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC0", - "location": { - "column": "9", - "line": "3817", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@248773@macro@PINT_PMSRC_SRC1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC1_MASK", - "location": { - "column": "9", - "line": "3818", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@248833@macro@PINT_PMSRC_SRC1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC1_SHIFT", - "location": { - "column": "9", - "line": "3819", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@249755@macro@PINT_PMSRC_SRC1", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC1", - "location": { - "column": "9", - "line": "3830", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@249885@macro@PINT_PMSRC_SRC2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC2_MASK", - "location": { - "column": "9", - "line": "3831", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@249946@macro@PINT_PMSRC_SRC2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC2_SHIFT", - "location": { - "column": "9", - "line": "3832", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@250868@macro@PINT_PMSRC_SRC2", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC2", - "location": { - "column": "9", - "line": "3843", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@250998@macro@PINT_PMSRC_SRC3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC3_MASK", - "location": { - "column": "9", - "line": "3844", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@251059@macro@PINT_PMSRC_SRC3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC3_SHIFT", - "location": { - "column": "9", - "line": "3845", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@251981@macro@PINT_PMSRC_SRC3", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC3", - "location": { - "column": "9", - "line": "3856", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@252111@macro@PINT_PMSRC_SRC4_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC4_MASK", - "location": { - "column": "9", - "line": "3857", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC4_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@252173@macro@PINT_PMSRC_SRC4_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC4_SHIFT", - "location": { - "column": "9", - "line": "3858", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC4_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@253095@macro@PINT_PMSRC_SRC4", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC4", - "location": { - "column": "9", - "line": "3869", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@253225@macro@PINT_PMSRC_SRC5_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC5_MASK", - "location": { - "column": "9", - "line": "3870", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC5_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@253288@macro@PINT_PMSRC_SRC5_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC5_SHIFT", - "location": { - "column": "9", - "line": "3871", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC5_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@254210@macro@PINT_PMSRC_SRC5", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC5", - "location": { - "column": "9", - "line": "3882", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@254340@macro@PINT_PMSRC_SRC6_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC6_MASK", - "location": { - "column": "9", - "line": "3883", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC6_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@254404@macro@PINT_PMSRC_SRC6_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC6_SHIFT", - "location": { - "column": "9", - "line": "3884", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC6_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@255326@macro@PINT_PMSRC_SRC6", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC6", - "location": { - "column": "9", - "line": "3895", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@255456@macro@PINT_PMSRC_SRC7_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC7_MASK", - "location": { - "column": "9", - "line": "3896", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC7_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@255520@macro@PINT_PMSRC_SRC7_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC7_SHIFT", - "location": { - "column": "9", - "line": "3897", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC7_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@256442@macro@PINT_PMSRC_SRC7", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMSRC_SRC7", - "location": { - "column": "9", - "line": "3908", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMSRC_SRC7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@256675@macro@PINT_PMCFG_PROD_ENDPTS0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS0_MASK", - "location": { - "column": "9", - "line": "3913", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@256732@macro@PINT_PMCFG_PROD_ENDPTS0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS0_SHIFT", - "location": { - "column": "9", - "line": "3914", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@257049@macro@PINT_PMCFG_PROD_ENDPTS0", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS0", - "location": { - "column": "9", - "line": "3919", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@257195@macro@PINT_PMCFG_PROD_ENDPTS1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS1_MASK", - "location": { - "column": "9", - "line": "3920", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@257252@macro@PINT_PMCFG_PROD_ENDPTS1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS1_SHIFT", - "location": { - "column": "9", - "line": "3921", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@257569@macro@PINT_PMCFG_PROD_ENDPTS1", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS1", - "location": { - "column": "9", - "line": "3926", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@257715@macro@PINT_PMCFG_PROD_ENDPTS2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS2_MASK", - "location": { - "column": "9", - "line": "3927", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@257772@macro@PINT_PMCFG_PROD_ENDPTS2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS2_SHIFT", - "location": { - "column": "9", - "line": "3928", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@258089@macro@PINT_PMCFG_PROD_ENDPTS2", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS2", - "location": { - "column": "9", - "line": "3933", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@258235@macro@PINT_PMCFG_PROD_ENDPTS3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS3_MASK", - "location": { - "column": "9", - "line": "3934", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@258292@macro@PINT_PMCFG_PROD_ENDPTS3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS3_SHIFT", - "location": { - "column": "9", - "line": "3935", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@258609@macro@PINT_PMCFG_PROD_ENDPTS3", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS3", - "location": { - "column": "9", - "line": "3940", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@258755@macro@PINT_PMCFG_PROD_ENDPTS4_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS4_MASK", - "location": { - "column": "9", - "line": "3941", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS4_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@258813@macro@PINT_PMCFG_PROD_ENDPTS4_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS4_SHIFT", - "location": { - "column": "9", - "line": "3942", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS4_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@259130@macro@PINT_PMCFG_PROD_ENDPTS4", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS4", - "location": { - "column": "9", - "line": "3947", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@259276@macro@PINT_PMCFG_PROD_ENDPTS5_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS5_MASK", - "location": { - "column": "9", - "line": "3948", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS5_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@259334@macro@PINT_PMCFG_PROD_ENDPTS5_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS5_SHIFT", - "location": { - "column": "9", - "line": "3949", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS5_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@259651@macro@PINT_PMCFG_PROD_ENDPTS5", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS5", - "location": { - "column": "9", - "line": "3954", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@259797@macro@PINT_PMCFG_PROD_ENDPTS6_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS6_MASK", - "location": { - "column": "9", - "line": "3955", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS6_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@259855@macro@PINT_PMCFG_PROD_ENDPTS6_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS6_SHIFT", - "location": { - "column": "9", - "line": "3956", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS6_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@260172@macro@PINT_PMCFG_PROD_ENDPTS6", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_PROD_ENDPTS6", - "location": { - "column": "9", - "line": "3961", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_PROD_ENDPTS6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@260318@macro@PINT_PMCFG_CFG0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG0_MASK", - "location": { - "column": "9", - "line": "3962", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@260377@macro@PINT_PMCFG_CFG0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG0_SHIFT", - "location": { - "column": "9", - "line": "3963", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@261978@macro@PINT_PMCFG_CFG0", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG0", - "location": { - "column": "9", - "line": "3974", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@262108@macro@PINT_PMCFG_CFG1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG1_MASK", - "location": { - "column": "9", - "line": "3975", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@262168@macro@PINT_PMCFG_CFG1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG1_SHIFT", - "location": { - "column": "9", - "line": "3976", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@263770@macro@PINT_PMCFG_CFG1", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG1", - "location": { - "column": "9", - "line": "3987", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@263900@macro@PINT_PMCFG_CFG2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG2_MASK", - "location": { - "column": "9", - "line": "3988", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@263961@macro@PINT_PMCFG_CFG2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG2_SHIFT", - "location": { - "column": "9", - "line": "3989", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@265563@macro@PINT_PMCFG_CFG2", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG2", - "location": { - "column": "9", - "line": "4000", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@265693@macro@PINT_PMCFG_CFG3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG3_MASK", - "location": { - "column": "9", - "line": "4001", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@265754@macro@PINT_PMCFG_CFG3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG3_SHIFT", - "location": { - "column": "9", - "line": "4002", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@267356@macro@PINT_PMCFG_CFG3", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG3", - "location": { - "column": "9", - "line": "4013", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@267486@macro@PINT_PMCFG_CFG4_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG4_MASK", - "location": { - "column": "9", - "line": "4014", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG4_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@267548@macro@PINT_PMCFG_CFG4_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG4_SHIFT", - "location": { - "column": "9", - "line": "4015", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG4_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@269150@macro@PINT_PMCFG_CFG4", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG4", - "location": { - "column": "9", - "line": "4026", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@269280@macro@PINT_PMCFG_CFG5_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG5_MASK", - "location": { - "column": "9", - "line": "4027", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG5_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@269343@macro@PINT_PMCFG_CFG5_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG5_SHIFT", - "location": { - "column": "9", - "line": "4028", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG5_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@270945@macro@PINT_PMCFG_CFG5", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG5", - "location": { - "column": "9", - "line": "4039", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@271075@macro@PINT_PMCFG_CFG6_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG6_MASK", - "location": { - "column": "9", - "line": "4040", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG6_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@271139@macro@PINT_PMCFG_CFG6_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG6_SHIFT", - "location": { - "column": "9", - "line": "4041", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG6_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@272741@macro@PINT_PMCFG_CFG6", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG6", - "location": { - "column": "9", - "line": "4052", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@272871@macro@PINT_PMCFG_CFG7_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG7_MASK", - "location": { - "column": "9", - "line": "4053", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG7_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@272935@macro@PINT_PMCFG_CFG7_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG7_SHIFT", - "location": { - "column": "9", - "line": "4054", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG7_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@274537@macro@PINT_PMCFG_CFG7", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PMCFG_CFG7", - "location": { - "column": "9", - "line": "4065", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_PMCFG_CFG7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@274828@macro@PINT_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_BASE", - "location": { - "column": "9", - "line": "4076", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@274929@macro@PINT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT", - "location": { - "column": "9", - "line": "4078", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@275064@macro@PINT_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_BASE_ADDRS", - "location": { - "column": "9", - "line": "4080", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@275187@macro@PINT_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_BASE_PTRS", - "location": { - "column": "9", - "line": "4082", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@275301@macro@PINT_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_IRQS", - "location": { - "column": "9", - "line": "4084", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PINT_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@RTC_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "4101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@RTC_Type@FI@CTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTRL", - "location": { - "column": "17", - "line": "4102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4101_9" - }, - { - "ID": "c:@SA@RTC_Type@FI@MATCH", - "What": "FieldDecl", - "defdec": "Def", - "display": "MATCH", - "location": { - "column": "17", - "line": "4103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MATCH", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4101_9" - }, - { - "ID": "c:@SA@RTC_Type@FI@COUNT", - "What": "FieldDecl", - "defdec": "Def", - "display": "COUNT", - "location": { - "column": "17", - "line": "4104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "COUNT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4101_9" - }, - { - "ID": "c:@SA@RTC_Type@FI@WAKE", - "What": "FieldDecl", - "defdec": "Def", - "display": "WAKE", - "location": { - "column": "17", - "line": "4105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WAKE", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4101_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@RTC_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct RTC_Type", - "location": { - "column": "3", - "line": "4106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@276568@macro@RTC_CTRL_SWRESET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_SWRESET_MASK", - "location": { - "column": "9", - "line": "4119", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_SWRESET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@276625@macro@RTC_CTRL_SWRESET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_SWRESET_SHIFT", - "location": { - "column": "9", - "line": "4120", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_SWRESET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@277242@macro@RTC_CTRL_SWRESET", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_SWRESET", - "location": { - "column": "9", - "line": "4125", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_SWRESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@277374@macro@RTC_CTRL_ALARM1HZ_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_ALARM1HZ_MASK", - "location": { - "column": "9", - "line": "4126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_ALARM1HZ_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@277431@macro@RTC_CTRL_ALARM1HZ_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_ALARM1HZ_SHIFT", - "location": { - "column": "9", - "line": "4127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_ALARM1HZ_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@277851@macro@RTC_CTRL_ALARM1HZ", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_ALARM1HZ", - "location": { - "column": "9", - "line": "4132", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_ALARM1HZ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@277985@macro@RTC_CTRL_WAKE1KHZ_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_WAKE1KHZ_MASK", - "location": { - "column": "9", - "line": "4133", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_WAKE1KHZ_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@278042@macro@RTC_CTRL_WAKE1KHZ_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_WAKE1KHZ_SHIFT", - "location": { - "column": "9", - "line": "4134", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_WAKE1KHZ_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@278452@macro@RTC_CTRL_WAKE1KHZ", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_WAKE1KHZ", - "location": { - "column": "9", - "line": "4139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_WAKE1KHZ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@278586@macro@RTC_CTRL_ALARMDPD_EN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_ALARMDPD_EN_MASK", - "location": { - "column": "9", - "line": "4140", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_ALARMDPD_EN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@278644@macro@RTC_CTRL_ALARMDPD_EN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_ALARMDPD_EN_SHIFT", - "location": { - "column": "9", - "line": "4141", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_ALARMDPD_EN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@278966@macro@RTC_CTRL_ALARMDPD_EN", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_ALARMDPD_EN", - "location": { - "column": "9", - "line": "4146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_ALARMDPD_EN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@279106@macro@RTC_CTRL_WAKEDPD_EN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_WAKEDPD_EN_MASK", - "location": { - "column": "9", - "line": "4147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_WAKEDPD_EN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@279164@macro@RTC_CTRL_WAKEDPD_EN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_WAKEDPD_EN_SHIFT", - "location": { - "column": "9", - "line": "4148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_WAKEDPD_EN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@279490@macro@RTC_CTRL_WAKEDPD_EN", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_WAKEDPD_EN", - "location": { - "column": "9", - "line": "4153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_WAKEDPD_EN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@279628@macro@RTC_CTRL_RTC1KHZ_EN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_RTC1KHZ_EN_MASK", - "location": { - "column": "9", - "line": "4154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_RTC1KHZ_EN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@279686@macro@RTC_CTRL_RTC1KHZ_EN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_RTC1KHZ_EN_SHIFT", - "location": { - "column": "9", - "line": "4155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_RTC1KHZ_EN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@280095@macro@RTC_CTRL_RTC1KHZ_EN", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_RTC1KHZ_EN", - "location": { - "column": "9", - "line": "4160", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_RTC1KHZ_EN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@280233@macro@RTC_CTRL_RTC_EN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_RTC_EN_MASK", - "location": { - "column": "9", - "line": "4161", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_RTC_EN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@280291@macro@RTC_CTRL_RTC_EN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_RTC_EN_SHIFT", - "location": { - "column": "9", - "line": "4162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_RTC_EN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@280833@macro@RTC_CTRL_RTC_EN", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_RTC_EN", - "location": { - "column": "9", - "line": "4167", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_RTC_EN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@280963@macro@RTC_CTRL_RTC_OSC_PD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_RTC_OSC_PD_MASK", - "location": { - "column": "9", - "line": "4168", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_RTC_OSC_PD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@281022@macro@RTC_CTRL_RTC_OSC_PD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_RTC_OSC_PD_SHIFT", - "location": { - "column": "9", - "line": "4169", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_RTC_OSC_PD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@281286@macro@RTC_CTRL_RTC_OSC_PD", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CTRL_RTC_OSC_PD", - "location": { - "column": "9", - "line": "4174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_CTRL_RTC_OSC_PD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@281489@macro@RTC_MATCH_MATVAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_MATCH_MATVAL_MASK", - "location": { - "column": "9", - "line": "4179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_MATCH_MATVAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@281553@macro@RTC_MATCH_MATVAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_MATCH_MATVAL_SHIFT", - "location": { - "column": "9", - "line": "4180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_MATCH_MATVAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@281608@macro@RTC_MATCH_MATVAL", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_MATCH_MATVAL", - "location": { - "column": "9", - "line": "4181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_MATCH_MATVAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@281807@macro@RTC_COUNT_VAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_COUNT_VAL_MASK", - "location": { - "column": "9", - "line": "4186", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_COUNT_VAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@281871@macro@RTC_COUNT_VAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_COUNT_VAL_SHIFT", - "location": { - "column": "9", - "line": "4187", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_COUNT_VAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@281926@macro@RTC_COUNT_VAL", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_COUNT_VAL", - "location": { - "column": "9", - "line": "4188", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_COUNT_VAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@282144@macro@RTC_WAKE_VAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_WAKE_VAL_MASK", - "location": { - "column": "9", - "line": "4193", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_WAKE_VAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@282204@macro@RTC_WAKE_VAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_WAKE_VAL_SHIFT", - "location": { - "column": "9", - "line": "4194", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_WAKE_VAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@282259@macro@RTC_WAKE_VAL", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_WAKE_VAL", - "location": { - "column": "9", - "line": "4195", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_WAKE_VAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@282541@macro@RTC_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_BASE", - "location": { - "column": "9", - "line": "4206", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@282641@macro@RTC", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC", - "location": { - "column": "9", - "line": "4208", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@282773@macro@RTC_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_BASE_ADDRS", - "location": { - "column": "9", - "line": "4210", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@282894@macro@RTC_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_BASE_PTRS", - "location": { - "column": "9", - "line": "4212", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@283006@macro@RTC_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_IRQS", - "location": { - "column": "9", - "line": "4214", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTC_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@SCT_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "4231", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@SCT_Type@FI@CONFIG", - "What": "FieldDecl", - "defdec": "Def", - "display": "CONFIG", - "location": { - "column": "17", - "line": "4232", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CONFIG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@CTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTRL", - "location": { - "column": "17", - "line": "4233", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@LIMIT", - "What": "FieldDecl", - "defdec": "Def", - "display": "LIMIT", - "location": { - "column": "17", - "line": "4234", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "LIMIT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@HALT", - "What": "FieldDecl", - "defdec": "Def", - "display": "HALT", - "location": { - "column": "17", - "line": "4235", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "HALT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@STOP", - "What": "FieldDecl", - "defdec": "Def", - "display": "STOP", - "location": { - "column": "17", - "line": "4236", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "STOP", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@START", - "What": "FieldDecl", - "defdec": "Def", - "display": "START", - "location": { - "column": "17", - "line": "4237", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "START", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "4238", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@COUNT", - "What": "FieldDecl", - "defdec": "Def", - "display": "COUNT", - "location": { - "column": "17", - "line": "4239", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "COUNT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@STATE", - "What": "FieldDecl", - "defdec": "Def", - "display": "STATE", - "location": { - "column": "17", - "line": "4240", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "STATE", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@INPUT", - "What": "FieldDecl", - "defdec": "Def", - "display": "INPUT", - "location": { - "column": "17", - "line": "4241", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INPUT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@REGMODE", - "What": "FieldDecl", - "defdec": "Def", - "display": "REGMODE", - "location": { - "column": "17", - "line": "4242", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "REGMODE", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@OUTPUT", - "What": "FieldDecl", - "defdec": "Def", - "display": "OUTPUT", - "location": { - "column": "17", - "line": "4243", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "OUTPUT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@OUTPUTDIRCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "OUTPUTDIRCTRL", - "location": { - "column": "17", - "line": "4244", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "OUTPUTDIRCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@RES", - "What": "FieldDecl", - "defdec": "Def", - "display": "RES", - "location": { - "column": "17", - "line": "4245", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RES", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@DMA0REQUEST", - "What": "FieldDecl", - "defdec": "Def", - "display": "DMA0REQUEST", - "location": { - "column": "17", - "line": "4246", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA0REQUEST", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@DMA1REQUEST", - "What": "FieldDecl", - "defdec": "Def", - "display": "DMA1REQUEST", - "location": { - "column": "17", - "line": "4247", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DMA1REQUEST", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@RESERVED_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_1", - "location": { - "column": "16", - "line": "4248", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@EVEN", - "What": "FieldDecl", - "defdec": "Def", - "display": "EVEN", - "location": { - "column": "17", - "line": "4249", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "EVEN", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@EVFLAG", - "What": "FieldDecl", - "defdec": "Def", - "display": "EVFLAG", - "location": { - "column": "17", - "line": "4250", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "EVFLAG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@CONEN", - "What": "FieldDecl", - "defdec": "Def", - "display": "CONEN", - "location": { - "column": "17", - "line": "4251", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CONEN", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@CONFLAG", - "What": "FieldDecl", - "defdec": "Def", - "display": "CONFLAG", - "location": { - "column": "17", - "line": "4252", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CONFLAG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@Ua", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "4253", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@SCT_Type@Ua@FI@SCTCAP", - "What": "FieldDecl", - "defdec": "Def", - "display": "SCTCAP", - "location": { - "column": "19", - "line": "4254", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCTCAP", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9::_anonymous_LPC51U68_h_4253_3" - }, - { - "ID": "c:@SA@SCT_Type@Ua@FI@SCTMATCH", - "What": "FieldDecl", - "defdec": "Def", - "display": "SCTMATCH", - "location": { - "column": "19", - "line": "4255", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCTMATCH", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9::_anonymous_LPC51U68_h_4253_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@RESERVED_2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_2", - "location": { - "column": "16", - "line": "4257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_2", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@Ua", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "4258", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@SCT_Type@Ua@FI@SCTCAPCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "SCTCAPCTRL", - "location": { - "column": "19", - "line": "4259", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCTCAPCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9::_anonymous_LPC51U68_h_4258_3" - }, - { - "ID": "c:@SA@SCT_Type@Ua@FI@SCTMATCHREL", - "What": "FieldDecl", - "defdec": "Def", - "display": "SCTMATCHREL", - "location": { - "column": "19", - "line": "4260", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCTMATCHREL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9::_anonymous_LPC51U68_h_4258_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@RESERVED_3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_3", - "location": { - "column": "16", - "line": "4262", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_3", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@S@LPC51U68.h@286259", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "4263", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@SCT_Type@S@LPC51U68.h@286259@FI@STATE", - "What": "FieldDecl", - "defdec": "Def", - "display": "STATE", - "location": { - "column": "19", - "line": "4264", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "STATE", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9::_anonymous_LPC51U68_h_4263_3" - }, - { - "ID": "c:@SA@SCT_Type@S@LPC51U68.h@286259@FI@CTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTRL", - "location": { - "column": "19", - "line": "4265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9::_anonymous_LPC51U68_h_4263_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@EVENT", - "What": "FieldDecl", - "defdec": "Def", - "display": "EVENT", - "location": { - "column": "5", - "line": "4266", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "EVENT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@RESERVED_4", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_4", - "location": { - "column": "16", - "line": "4267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_4", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@S@LPC51U68.h@286653", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "4268", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@SCT_Type@S@LPC51U68.h@286653@FI@SET", - "What": "FieldDecl", - "defdec": "Def", - "display": "SET", - "location": { - "column": "19", - "line": "4269", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9::_anonymous_LPC51U68_h_4268_3" - }, - { - "ID": "c:@SA@SCT_Type@S@LPC51U68.h@286653@FI@CLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "CLR", - "location": { - "column": "19", - "line": "4270", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9::_anonymous_LPC51U68_h_4268_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - }, - { - "ID": "c:@SA@SCT_Type@FI@OUT", - "What": "FieldDecl", - "defdec": "Def", - "display": "OUT", - "location": { - "column": "5", - "line": "4271", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "OUT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_4231_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@SCT_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct SCT_Type", - "location": { - "column": "3", - "line": "4272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@287357@macro@SCT_CONFIG_UNIFY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_UNIFY_MASK", - "location": { - "column": "9", - "line": "4285", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_UNIFY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@287414@macro@SCT_CONFIG_UNIFY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_UNIFY_SHIFT", - "location": { - "column": "9", - "line": "4286", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_UNIFY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@287638@macro@SCT_CONFIG_UNIFY", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_UNIFY", - "location": { - "column": "9", - "line": "4291", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_UNIFY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@287770@macro@SCT_CONFIG_CLKMODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_CLKMODE_MASK", - "location": { - "column": "9", - "line": "4292", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_CLKMODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@287827@macro@SCT_CONFIG_CLKMODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_CLKMODE_SHIFT", - "location": { - "column": "9", - "line": "4293", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_CLKMODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@289036@macro@SCT_CONFIG_CLKMODE", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_CLKMODE", - "location": { - "column": "9", - "line": "4300", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_CLKMODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@289172@macro@SCT_CONFIG_CKSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_CKSEL_MASK", - "location": { - "column": "9", - "line": "4301", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_CKSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@289230@macro@SCT_CONFIG_CKSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_CKSEL_SHIFT", - "location": { - "column": "9", - "line": "4302", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_CKSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@289745@macro@SCT_CONFIG_CKSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_CKSEL", - "location": { - "column": "9", - "line": "4313", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_CKSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@289877@macro@SCT_CONFIG_NORELAOD_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_NORELAOD_L_MASK", - "location": { - "column": "9", - "line": "4314", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_NORELAOD_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@289935@macro@SCT_CONFIG_NORELAOD_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_NORELAOD_L_SHIFT", - "location": { - "column": "9", - "line": "4315", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_NORELAOD_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@289990@macro@SCT_CONFIG_NORELAOD_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_NORELAOD_L", - "location": { - "column": "9", - "line": "4316", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_NORELAOD_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@290132@macro@SCT_CONFIG_NORELOAD_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_NORELOAD_H_MASK", - "location": { - "column": "9", - "line": "4317", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_NORELOAD_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@290191@macro@SCT_CONFIG_NORELOAD_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_NORELOAD_H_SHIFT", - "location": { - "column": "9", - "line": "4318", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_NORELOAD_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@290246@macro@SCT_CONFIG_NORELOAD_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_NORELOAD_H", - "location": { - "column": "9", - "line": "4319", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_NORELOAD_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@290388@macro@SCT_CONFIG_INSYNC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_INSYNC_MASK", - "location": { - "column": "9", - "line": "4320", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_INSYNC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@290448@macro@SCT_CONFIG_INSYNC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_INSYNC_SHIFT", - "location": { - "column": "9", - "line": "4321", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_INSYNC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@290503@macro@SCT_CONFIG_INSYNC", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_INSYNC", - "location": { - "column": "9", - "line": "4322", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_INSYNC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@290637@macro@SCT_CONFIG_AUTOLIMIT_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_AUTOLIMIT_L_MASK", - "location": { - "column": "9", - "line": "4323", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_AUTOLIMIT_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@290698@macro@SCT_CONFIG_AUTOLIMIT_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_AUTOLIMIT_L_SHIFT", - "location": { - "column": "9", - "line": "4324", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_AUTOLIMIT_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@290754@macro@SCT_CONFIG_AUTOLIMIT_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_AUTOLIMIT_L", - "location": { - "column": "9", - "line": "4325", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_AUTOLIMIT_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@290898@macro@SCT_CONFIG_AUTOLIMIT_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_AUTOLIMIT_H_MASK", - "location": { - "column": "9", - "line": "4326", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_AUTOLIMIT_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@290959@macro@SCT_CONFIG_AUTOLIMIT_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_AUTOLIMIT_H_SHIFT", - "location": { - "column": "9", - "line": "4327", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_AUTOLIMIT_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@291015@macro@SCT_CONFIG_AUTOLIMIT_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFIG_AUTOLIMIT_H", - "location": { - "column": "9", - "line": "4328", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFIG_AUTOLIMIT_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@291225@macro@SCT_CTRL_DOWN_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_DOWN_L_MASK", - "location": { - "column": "9", - "line": "4333", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_DOWN_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@291282@macro@SCT_CTRL_DOWN_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_DOWN_L_SHIFT", - "location": { - "column": "9", - "line": "4334", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_DOWN_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@291337@macro@SCT_CTRL_DOWN_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_DOWN_L", - "location": { - "column": "9", - "line": "4335", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_DOWN_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@291467@macro@SCT_CTRL_STOP_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_STOP_L_MASK", - "location": { - "column": "9", - "line": "4336", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_STOP_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@291524@macro@SCT_CTRL_STOP_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_STOP_L_SHIFT", - "location": { - "column": "9", - "line": "4337", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_STOP_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@291579@macro@SCT_CTRL_STOP_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_STOP_L", - "location": { - "column": "9", - "line": "4338", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_STOP_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@291709@macro@SCT_CTRL_HALT_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_HALT_L_MASK", - "location": { - "column": "9", - "line": "4339", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_HALT_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@291766@macro@SCT_CTRL_HALT_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_HALT_L_SHIFT", - "location": { - "column": "9", - "line": "4340", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_HALT_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@291821@macro@SCT_CTRL_HALT_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_HALT_L", - "location": { - "column": "9", - "line": "4341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_HALT_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@291951@macro@SCT_CTRL_CLRCTR_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_CLRCTR_L_MASK", - "location": { - "column": "9", - "line": "4342", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_CLRCTR_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@292008@macro@SCT_CTRL_CLRCTR_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_CLRCTR_L_SHIFT", - "location": { - "column": "9", - "line": "4343", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_CLRCTR_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@292063@macro@SCT_CTRL_CLRCTR_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_CLRCTR_L", - "location": { - "column": "9", - "line": "4344", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_CLRCTR_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@292197@macro@SCT_CTRL_BIDIR_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_BIDIR_L_MASK", - "location": { - "column": "9", - "line": "4345", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_BIDIR_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@292255@macro@SCT_CTRL_BIDIR_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_BIDIR_L_SHIFT", - "location": { - "column": "9", - "line": "4346", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_BIDIR_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@292551@macro@SCT_CTRL_BIDIR_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_BIDIR_L", - "location": { - "column": "9", - "line": "4351", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_BIDIR_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@292683@macro@SCT_CTRL_PRE_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_PRE_L_MASK", - "location": { - "column": "9", - "line": "4352", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_PRE_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@292743@macro@SCT_CTRL_PRE_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_PRE_L_SHIFT", - "location": { - "column": "9", - "line": "4353", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_PRE_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@292798@macro@SCT_CTRL_PRE_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_PRE_L", - "location": { - "column": "9", - "line": "4354", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_PRE_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@292926@macro@SCT_CTRL_DOWN_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_DOWN_H_MASK", - "location": { - "column": "9", - "line": "4355", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_DOWN_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@292987@macro@SCT_CTRL_DOWN_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_DOWN_H_SHIFT", - "location": { - "column": "9", - "line": "4356", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_DOWN_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@293043@macro@SCT_CTRL_DOWN_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_DOWN_H", - "location": { - "column": "9", - "line": "4357", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_DOWN_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@293173@macro@SCT_CTRL_STOP_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_STOP_H_MASK", - "location": { - "column": "9", - "line": "4358", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_STOP_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@293234@macro@SCT_CTRL_STOP_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_STOP_H_SHIFT", - "location": { - "column": "9", - "line": "4359", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_STOP_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@293290@macro@SCT_CTRL_STOP_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_STOP_H", - "location": { - "column": "9", - "line": "4360", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_STOP_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@293420@macro@SCT_CTRL_HALT_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_HALT_H_MASK", - "location": { - "column": "9", - "line": "4361", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_HALT_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@293481@macro@SCT_CTRL_HALT_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_HALT_H_SHIFT", - "location": { - "column": "9", - "line": "4362", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_HALT_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@293537@macro@SCT_CTRL_HALT_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_HALT_H", - "location": { - "column": "9", - "line": "4363", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_HALT_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@293667@macro@SCT_CTRL_CLRCTR_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_CLRCTR_H_MASK", - "location": { - "column": "9", - "line": "4364", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_CLRCTR_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@293728@macro@SCT_CTRL_CLRCTR_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_CLRCTR_H_SHIFT", - "location": { - "column": "9", - "line": "4365", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_CLRCTR_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@293784@macro@SCT_CTRL_CLRCTR_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_CLRCTR_H", - "location": { - "column": "9", - "line": "4366", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_CLRCTR_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@293918@macro@SCT_CTRL_BIDIR_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_BIDIR_H_MASK", - "location": { - "column": "9", - "line": "4367", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_BIDIR_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@293980@macro@SCT_CTRL_BIDIR_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_BIDIR_H_SHIFT", - "location": { - "column": "9", - "line": "4368", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_BIDIR_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@294251@macro@SCT_CTRL_BIDIR_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_BIDIR_H", - "location": { - "column": "9", - "line": "4373", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_BIDIR_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@294383@macro@SCT_CTRL_PRE_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_PRE_H_MASK", - "location": { - "column": "9", - "line": "4374", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_PRE_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@294447@macro@SCT_CTRL_PRE_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_PRE_H_SHIFT", - "location": { - "column": "9", - "line": "4375", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_PRE_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@294503@macro@SCT_CTRL_PRE_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CTRL_PRE_H", - "location": { - "column": "9", - "line": "4376", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CTRL_PRE_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@294709@macro@SCT_LIMIT_LIMMSK_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_LIMIT_LIMMSK_L_MASK", - "location": { - "column": "9", - "line": "4381", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_LIMIT_LIMMSK_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@294769@macro@SCT_LIMIT_LIMMSK_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_LIMIT_LIMMSK_L_SHIFT", - "location": { - "column": "9", - "line": "4382", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_LIMIT_LIMMSK_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@294824@macro@SCT_LIMIT_LIMMSK_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_LIMIT_LIMMSK_L", - "location": { - "column": "9", - "line": "4383", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_LIMIT_LIMMSK_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@294960@macro@SCT_LIMIT_LIMMSK_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_LIMIT_LIMMSK_H_MASK", - "location": { - "column": "9", - "line": "4384", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_LIMIT_LIMMSK_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@295024@macro@SCT_LIMIT_LIMMSK_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_LIMIT_LIMMSK_H_SHIFT", - "location": { - "column": "9", - "line": "4385", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_LIMIT_LIMMSK_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@295080@macro@SCT_LIMIT_LIMMSK_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_LIMIT_LIMMSK_H", - "location": { - "column": "9", - "line": "4386", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_LIMIT_LIMMSK_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@295292@macro@SCT_HALT_HALTMSK_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_HALT_HALTMSK_L_MASK", - "location": { - "column": "9", - "line": "4391", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_HALT_HALTMSK_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@295352@macro@SCT_HALT_HALTMSK_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_HALT_HALTMSK_L_SHIFT", - "location": { - "column": "9", - "line": "4392", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_HALT_HALTMSK_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@295407@macro@SCT_HALT_HALTMSK_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_HALT_HALTMSK_L", - "location": { - "column": "9", - "line": "4393", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_HALT_HALTMSK_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@295543@macro@SCT_HALT_HALTMSK_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_HALT_HALTMSK_H_MASK", - "location": { - "column": "9", - "line": "4394", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_HALT_HALTMSK_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@295607@macro@SCT_HALT_HALTMSK_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_HALT_HALTMSK_H_SHIFT", - "location": { - "column": "9", - "line": "4395", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_HALT_HALTMSK_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@295663@macro@SCT_HALT_HALTMSK_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_HALT_HALTMSK_H", - "location": { - "column": "9", - "line": "4396", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_HALT_HALTMSK_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@295875@macro@SCT_STOP_STOPMSK_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_STOP_STOPMSK_L_MASK", - "location": { - "column": "9", - "line": "4401", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_STOP_STOPMSK_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@295935@macro@SCT_STOP_STOPMSK_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_STOP_STOPMSK_L_SHIFT", - "location": { - "column": "9", - "line": "4402", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_STOP_STOPMSK_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@295990@macro@SCT_STOP_STOPMSK_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_STOP_STOPMSK_L", - "location": { - "column": "9", - "line": "4403", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_STOP_STOPMSK_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@296126@macro@SCT_STOP_STOPMSK_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_STOP_STOPMSK_H_MASK", - "location": { - "column": "9", - "line": "4404", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_STOP_STOPMSK_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@296190@macro@SCT_STOP_STOPMSK_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_STOP_STOPMSK_H_SHIFT", - "location": { - "column": "9", - "line": "4405", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_STOP_STOPMSK_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@296246@macro@SCT_STOP_STOPMSK_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_STOP_STOPMSK_H", - "location": { - "column": "9", - "line": "4406", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_STOP_STOPMSK_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@296460@macro@SCT_START_STARTMSK_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_START_STARTMSK_L_MASK", - "location": { - "column": "9", - "line": "4411", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_START_STARTMSK_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@296520@macro@SCT_START_STARTMSK_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_START_STARTMSK_L_SHIFT", - "location": { - "column": "9", - "line": "4412", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_START_STARTMSK_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@296575@macro@SCT_START_STARTMSK_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_START_STARTMSK_L", - "location": { - "column": "9", - "line": "4413", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_START_STARTMSK_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@296715@macro@SCT_START_STARTMSK_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_START_STARTMSK_H_MASK", - "location": { - "column": "9", - "line": "4414", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_START_STARTMSK_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@296779@macro@SCT_START_STARTMSK_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_START_STARTMSK_H_SHIFT", - "location": { - "column": "9", - "line": "4415", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_START_STARTMSK_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@296835@macro@SCT_START_STARTMSK_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_START_STARTMSK_H", - "location": { - "column": "9", - "line": "4416", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_START_STARTMSK_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@297042@macro@SCT_COUNT_CTR_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_COUNT_CTR_L_MASK", - "location": { - "column": "9", - "line": "4421", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_COUNT_CTR_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@297102@macro@SCT_COUNT_CTR_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_COUNT_CTR_L_SHIFT", - "location": { - "column": "9", - "line": "4422", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_COUNT_CTR_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@297157@macro@SCT_COUNT_CTR_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_COUNT_CTR_L", - "location": { - "column": "9", - "line": "4423", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_COUNT_CTR_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@297287@macro@SCT_COUNT_CTR_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_COUNT_CTR_H_MASK", - "location": { - "column": "9", - "line": "4424", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_COUNT_CTR_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@297351@macro@SCT_COUNT_CTR_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_COUNT_CTR_H_SHIFT", - "location": { - "column": "9", - "line": "4425", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_COUNT_CTR_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@297407@macro@SCT_COUNT_CTR_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_COUNT_CTR_H", - "location": { - "column": "9", - "line": "4426", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_COUNT_CTR_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@297602@macro@SCT_STATE_STATE_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_STATE_STATE_L_MASK", - "location": { - "column": "9", - "line": "4431", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_STATE_STATE_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@297660@macro@SCT_STATE_STATE_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_STATE_STATE_L_SHIFT", - "location": { - "column": "9", - "line": "4432", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_STATE_STATE_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@297715@macro@SCT_STATE_STATE_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_STATE_STATE_L", - "location": { - "column": "9", - "line": "4433", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_STATE_STATE_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@297849@macro@SCT_STATE_STATE_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_STATE_STATE_H_MASK", - "location": { - "column": "9", - "line": "4434", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_STATE_STATE_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@297911@macro@SCT_STATE_STATE_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_STATE_STATE_H_SHIFT", - "location": { - "column": "9", - "line": "4435", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_STATE_STATE_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@297967@macro@SCT_STATE_STATE_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_STATE_STATE_H", - "location": { - "column": "9", - "line": "4436", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_STATE_STATE_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@298166@macro@SCT_INPUT_AIN0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN0_MASK", - "location": { - "column": "9", - "line": "4441", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@298223@macro@SCT_INPUT_AIN0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN0_SHIFT", - "location": { - "column": "9", - "line": "4442", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@298278@macro@SCT_INPUT_AIN0", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN0", - "location": { - "column": "9", - "line": "4443", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@298406@macro@SCT_INPUT_AIN1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN1_MASK", - "location": { - "column": "9", - "line": "4444", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@298463@macro@SCT_INPUT_AIN1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN1_SHIFT", - "location": { - "column": "9", - "line": "4445", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@298518@macro@SCT_INPUT_AIN1", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN1", - "location": { - "column": "9", - "line": "4446", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@298646@macro@SCT_INPUT_AIN2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN2_MASK", - "location": { - "column": "9", - "line": "4447", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@298703@macro@SCT_INPUT_AIN2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN2_SHIFT", - "location": { - "column": "9", - "line": "4448", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@298758@macro@SCT_INPUT_AIN2", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN2", - "location": { - "column": "9", - "line": "4449", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@298886@macro@SCT_INPUT_AIN3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN3_MASK", - "location": { - "column": "9", - "line": "4450", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@298943@macro@SCT_INPUT_AIN3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN3_SHIFT", - "location": { - "column": "9", - "line": "4451", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@298998@macro@SCT_INPUT_AIN3", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN3", - "location": { - "column": "9", - "line": "4452", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@299126@macro@SCT_INPUT_AIN4_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN4_MASK", - "location": { - "column": "9", - "line": "4453", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN4_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@299184@macro@SCT_INPUT_AIN4_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN4_SHIFT", - "location": { - "column": "9", - "line": "4454", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN4_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@299239@macro@SCT_INPUT_AIN4", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN4", - "location": { - "column": "9", - "line": "4455", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@299367@macro@SCT_INPUT_AIN5_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN5_MASK", - "location": { - "column": "9", - "line": "4456", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN5_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@299425@macro@SCT_INPUT_AIN5_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN5_SHIFT", - "location": { - "column": "9", - "line": "4457", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN5_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@299480@macro@SCT_INPUT_AIN5", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN5", - "location": { - "column": "9", - "line": "4458", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@299608@macro@SCT_INPUT_AIN6_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN6_MASK", - "location": { - "column": "9", - "line": "4459", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN6_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@299666@macro@SCT_INPUT_AIN6_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN6_SHIFT", - "location": { - "column": "9", - "line": "4460", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN6_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@299721@macro@SCT_INPUT_AIN6", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN6", - "location": { - "column": "9", - "line": "4461", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@299849@macro@SCT_INPUT_AIN7_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN7_MASK", - "location": { - "column": "9", - "line": "4462", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN7_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@299907@macro@SCT_INPUT_AIN7_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN7_SHIFT", - "location": { - "column": "9", - "line": "4463", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN7_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@299962@macro@SCT_INPUT_AIN7", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN7", - "location": { - "column": "9", - "line": "4464", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@300090@macro@SCT_INPUT_AIN8_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN8_MASK", - "location": { - "column": "9", - "line": "4465", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN8_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@300149@macro@SCT_INPUT_AIN8_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN8_SHIFT", - "location": { - "column": "9", - "line": "4466", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN8_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@300204@macro@SCT_INPUT_AIN8", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN8", - "location": { - "column": "9", - "line": "4467", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@300332@macro@SCT_INPUT_AIN9_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN9_MASK", - "location": { - "column": "9", - "line": "4468", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN9_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@300391@macro@SCT_INPUT_AIN9_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN9_SHIFT", - "location": { - "column": "9", - "line": "4469", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN9_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@300446@macro@SCT_INPUT_AIN9", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN9", - "location": { - "column": "9", - "line": "4470", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@300574@macro@SCT_INPUT_AIN10_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN10_MASK", - "location": { - "column": "9", - "line": "4471", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN10_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@300633@macro@SCT_INPUT_AIN10_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN10_SHIFT", - "location": { - "column": "9", - "line": "4472", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN10_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@300689@macro@SCT_INPUT_AIN10", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN10", - "location": { - "column": "9", - "line": "4473", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN10", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@300819@macro@SCT_INPUT_AIN11_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN11_MASK", - "location": { - "column": "9", - "line": "4474", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN11_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@300878@macro@SCT_INPUT_AIN11_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN11_SHIFT", - "location": { - "column": "9", - "line": "4475", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN11_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@300934@macro@SCT_INPUT_AIN11", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN11", - "location": { - "column": "9", - "line": "4476", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN11", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@301064@macro@SCT_INPUT_AIN12_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN12_MASK", - "location": { - "column": "9", - "line": "4477", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN12_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@301124@macro@SCT_INPUT_AIN12_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN12_SHIFT", - "location": { - "column": "9", - "line": "4478", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN12_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@301180@macro@SCT_INPUT_AIN12", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN12", - "location": { - "column": "9", - "line": "4479", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN12", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@301310@macro@SCT_INPUT_AIN13_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN13_MASK", - "location": { - "column": "9", - "line": "4480", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN13_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@301370@macro@SCT_INPUT_AIN13_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN13_SHIFT", - "location": { - "column": "9", - "line": "4481", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN13_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@301426@macro@SCT_INPUT_AIN13", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN13", - "location": { - "column": "9", - "line": "4482", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN13", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@301556@macro@SCT_INPUT_AIN14_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN14_MASK", - "location": { - "column": "9", - "line": "4483", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN14_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@301616@macro@SCT_INPUT_AIN14_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN14_SHIFT", - "location": { - "column": "9", - "line": "4484", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN14_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@301672@macro@SCT_INPUT_AIN14", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN14", - "location": { - "column": "9", - "line": "4485", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN14", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@301802@macro@SCT_INPUT_AIN15_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN15_MASK", - "location": { - "column": "9", - "line": "4486", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN15_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@301862@macro@SCT_INPUT_AIN15_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN15_SHIFT", - "location": { - "column": "9", - "line": "4487", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN15_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@301918@macro@SCT_INPUT_AIN15", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_AIN15", - "location": { - "column": "9", - "line": "4488", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_AIN15", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@302048@macro@SCT_INPUT_SIN0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN0_MASK", - "location": { - "column": "9", - "line": "4489", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@302109@macro@SCT_INPUT_SIN0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN0_SHIFT", - "location": { - "column": "9", - "line": "4490", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@302165@macro@SCT_INPUT_SIN0", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN0", - "location": { - "column": "9", - "line": "4491", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@302293@macro@SCT_INPUT_SIN1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN1_MASK", - "location": { - "column": "9", - "line": "4492", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@302354@macro@SCT_INPUT_SIN1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN1_SHIFT", - "location": { - "column": "9", - "line": "4493", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@302410@macro@SCT_INPUT_SIN1", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN1", - "location": { - "column": "9", - "line": "4494", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@302538@macro@SCT_INPUT_SIN2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN2_MASK", - "location": { - "column": "9", - "line": "4495", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@302599@macro@SCT_INPUT_SIN2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN2_SHIFT", - "location": { - "column": "9", - "line": "4496", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@302655@macro@SCT_INPUT_SIN2", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN2", - "location": { - "column": "9", - "line": "4497", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@302783@macro@SCT_INPUT_SIN3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN3_MASK", - "location": { - "column": "9", - "line": "4498", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@302844@macro@SCT_INPUT_SIN3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN3_SHIFT", - "location": { - "column": "9", - "line": "4499", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@302900@macro@SCT_INPUT_SIN3", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN3", - "location": { - "column": "9", - "line": "4500", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@303028@macro@SCT_INPUT_SIN4_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN4_MASK", - "location": { - "column": "9", - "line": "4501", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN4_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@303090@macro@SCT_INPUT_SIN4_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN4_SHIFT", - "location": { - "column": "9", - "line": "4502", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN4_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@303146@macro@SCT_INPUT_SIN4", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN4", - "location": { - "column": "9", - "line": "4503", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@303274@macro@SCT_INPUT_SIN5_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN5_MASK", - "location": { - "column": "9", - "line": "4504", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN5_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@303336@macro@SCT_INPUT_SIN5_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN5_SHIFT", - "location": { - "column": "9", - "line": "4505", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN5_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@303392@macro@SCT_INPUT_SIN5", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN5", - "location": { - "column": "9", - "line": "4506", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@303520@macro@SCT_INPUT_SIN6_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN6_MASK", - "location": { - "column": "9", - "line": "4507", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN6_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@303582@macro@SCT_INPUT_SIN6_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN6_SHIFT", - "location": { - "column": "9", - "line": "4508", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN6_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@303638@macro@SCT_INPUT_SIN6", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN6", - "location": { - "column": "9", - "line": "4509", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@303766@macro@SCT_INPUT_SIN7_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN7_MASK", - "location": { - "column": "9", - "line": "4510", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN7_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@303828@macro@SCT_INPUT_SIN7_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN7_SHIFT", - "location": { - "column": "9", - "line": "4511", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN7_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@303884@macro@SCT_INPUT_SIN7", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN7", - "location": { - "column": "9", - "line": "4512", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@304012@macro@SCT_INPUT_SIN8_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN8_MASK", - "location": { - "column": "9", - "line": "4513", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN8_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@304075@macro@SCT_INPUT_SIN8_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN8_SHIFT", - "location": { - "column": "9", - "line": "4514", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN8_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@304131@macro@SCT_INPUT_SIN8", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN8", - "location": { - "column": "9", - "line": "4515", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@304259@macro@SCT_INPUT_SIN9_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN9_MASK", - "location": { - "column": "9", - "line": "4516", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN9_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@304322@macro@SCT_INPUT_SIN9_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN9_SHIFT", - "location": { - "column": "9", - "line": "4517", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN9_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@304378@macro@SCT_INPUT_SIN9", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN9", - "location": { - "column": "9", - "line": "4518", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@304506@macro@SCT_INPUT_SIN10_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN10_MASK", - "location": { - "column": "9", - "line": "4519", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN10_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@304569@macro@SCT_INPUT_SIN10_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN10_SHIFT", - "location": { - "column": "9", - "line": "4520", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN10_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@304625@macro@SCT_INPUT_SIN10", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN10", - "location": { - "column": "9", - "line": "4521", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN10", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@304755@macro@SCT_INPUT_SIN11_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN11_MASK", - "location": { - "column": "9", - "line": "4522", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN11_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@304818@macro@SCT_INPUT_SIN11_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN11_SHIFT", - "location": { - "column": "9", - "line": "4523", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN11_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@304874@macro@SCT_INPUT_SIN11", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN11", - "location": { - "column": "9", - "line": "4524", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN11", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@305004@macro@SCT_INPUT_SIN12_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN12_MASK", - "location": { - "column": "9", - "line": "4525", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN12_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@305068@macro@SCT_INPUT_SIN12_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN12_SHIFT", - "location": { - "column": "9", - "line": "4526", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN12_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@305124@macro@SCT_INPUT_SIN12", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN12", - "location": { - "column": "9", - "line": "4527", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN12", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@305254@macro@SCT_INPUT_SIN13_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN13_MASK", - "location": { - "column": "9", - "line": "4528", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN13_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@305318@macro@SCT_INPUT_SIN13_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN13_SHIFT", - "location": { - "column": "9", - "line": "4529", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN13_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@305374@macro@SCT_INPUT_SIN13", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN13", - "location": { - "column": "9", - "line": "4530", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN13", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@305504@macro@SCT_INPUT_SIN14_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN14_MASK", - "location": { - "column": "9", - "line": "4531", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN14_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@305568@macro@SCT_INPUT_SIN14_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN14_SHIFT", - "location": { - "column": "9", - "line": "4532", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN14_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@305624@macro@SCT_INPUT_SIN14", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN14", - "location": { - "column": "9", - "line": "4533", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN14", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@305754@macro@SCT_INPUT_SIN15_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN15_MASK", - "location": { - "column": "9", - "line": "4534", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN15_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@305818@macro@SCT_INPUT_SIN15_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN15_SHIFT", - "location": { - "column": "9", - "line": "4535", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN15_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@305874@macro@SCT_INPUT_SIN15", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_INPUT_SIN15", - "location": { - "column": "9", - "line": "4536", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_INPUT_SIN15", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@306084@macro@SCT_REGMODE_REGMOD_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_REGMODE_REGMOD_L_MASK", - "location": { - "column": "9", - "line": "4541", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_REGMODE_REGMOD_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@306144@macro@SCT_REGMODE_REGMOD_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_REGMODE_REGMOD_L_SHIFT", - "location": { - "column": "9", - "line": "4542", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_REGMODE_REGMOD_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@306199@macro@SCT_REGMODE_REGMOD_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_REGMODE_REGMOD_L", - "location": { - "column": "9", - "line": "4543", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_REGMODE_REGMOD_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@306339@macro@SCT_REGMODE_REGMOD_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_REGMODE_REGMOD_H_MASK", - "location": { - "column": "9", - "line": "4544", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_REGMODE_REGMOD_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@306403@macro@SCT_REGMODE_REGMOD_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_REGMODE_REGMOD_H_SHIFT", - "location": { - "column": "9", - "line": "4545", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_REGMODE_REGMOD_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@306459@macro@SCT_REGMODE_REGMOD_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_REGMODE_REGMOD_H", - "location": { - "column": "9", - "line": "4546", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_REGMODE_REGMOD_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@306666@macro@SCT_OUTPUT_OUT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUT_OUT_MASK", - "location": { - "column": "9", - "line": "4551", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUT_OUT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@306726@macro@SCT_OUTPUT_OUT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUT_OUT_SHIFT", - "location": { - "column": "9", - "line": "4552", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUT_OUT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@306781@macro@SCT_OUTPUT_OUT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUT_OUT", - "location": { - "column": "9", - "line": "4553", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUT_OUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@307009@macro@SCT_OUTPUTDIRCTRL_SETCLR0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR0_MASK", - "location": { - "column": "9", - "line": "4558", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@307066@macro@SCT_OUTPUTDIRCTRL_SETCLR0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR0_SHIFT", - "location": { - "column": "9", - "line": "4559", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@307486@macro@SCT_OUTPUTDIRCTRL_SETCLR0", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR0", - "location": { - "column": "9", - "line": "4565", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@307636@macro@SCT_OUTPUTDIRCTRL_SETCLR1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR1_MASK", - "location": { - "column": "9", - "line": "4566", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@307693@macro@SCT_OUTPUTDIRCTRL_SETCLR1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR1_SHIFT", - "location": { - "column": "9", - "line": "4567", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@308113@macro@SCT_OUTPUTDIRCTRL_SETCLR1", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR1", - "location": { - "column": "9", - "line": "4573", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@308263@macro@SCT_OUTPUTDIRCTRL_SETCLR2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR2_MASK", - "location": { - "column": "9", - "line": "4574", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@308321@macro@SCT_OUTPUTDIRCTRL_SETCLR2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR2_SHIFT", - "location": { - "column": "9", - "line": "4575", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@308741@macro@SCT_OUTPUTDIRCTRL_SETCLR2", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR2", - "location": { - "column": "9", - "line": "4581", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@308891@macro@SCT_OUTPUTDIRCTRL_SETCLR3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR3_MASK", - "location": { - "column": "9", - "line": "4582", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@308949@macro@SCT_OUTPUTDIRCTRL_SETCLR3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR3_SHIFT", - "location": { - "column": "9", - "line": "4583", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@309369@macro@SCT_OUTPUTDIRCTRL_SETCLR3", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR3", - "location": { - "column": "9", - "line": "4589", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@309519@macro@SCT_OUTPUTDIRCTRL_SETCLR4_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR4_MASK", - "location": { - "column": "9", - "line": "4590", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR4_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@309578@macro@SCT_OUTPUTDIRCTRL_SETCLR4_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR4_SHIFT", - "location": { - "column": "9", - "line": "4591", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR4_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@309998@macro@SCT_OUTPUTDIRCTRL_SETCLR4", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR4", - "location": { - "column": "9", - "line": "4597", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@310148@macro@SCT_OUTPUTDIRCTRL_SETCLR5_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR5_MASK", - "location": { - "column": "9", - "line": "4598", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR5_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@310207@macro@SCT_OUTPUTDIRCTRL_SETCLR5_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR5_SHIFT", - "location": { - "column": "9", - "line": "4599", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR5_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@310628@macro@SCT_OUTPUTDIRCTRL_SETCLR5", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR5", - "location": { - "column": "9", - "line": "4605", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@310778@macro@SCT_OUTPUTDIRCTRL_SETCLR6_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR6_MASK", - "location": { - "column": "9", - "line": "4606", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR6_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@310838@macro@SCT_OUTPUTDIRCTRL_SETCLR6_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR6_SHIFT", - "location": { - "column": "9", - "line": "4607", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR6_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@311259@macro@SCT_OUTPUTDIRCTRL_SETCLR6", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR6", - "location": { - "column": "9", - "line": "4613", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@311409@macro@SCT_OUTPUTDIRCTRL_SETCLR7_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR7_MASK", - "location": { - "column": "9", - "line": "4614", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR7_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@311469@macro@SCT_OUTPUTDIRCTRL_SETCLR7_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR7_SHIFT", - "location": { - "column": "9", - "line": "4615", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR7_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@311890@macro@SCT_OUTPUTDIRCTRL_SETCLR7", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR7", - "location": { - "column": "9", - "line": "4621", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@312040@macro@SCT_OUTPUTDIRCTRL_SETCLR8_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR8_MASK", - "location": { - "column": "9", - "line": "4622", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR8_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@312101@macro@SCT_OUTPUTDIRCTRL_SETCLR8_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR8_SHIFT", - "location": { - "column": "9", - "line": "4623", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR8_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@312522@macro@SCT_OUTPUTDIRCTRL_SETCLR8", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR8", - "location": { - "column": "9", - "line": "4629", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@312672@macro@SCT_OUTPUTDIRCTRL_SETCLR9_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR9_MASK", - "location": { - "column": "9", - "line": "4630", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR9_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@312733@macro@SCT_OUTPUTDIRCTRL_SETCLR9_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR9_SHIFT", - "location": { - "column": "9", - "line": "4631", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR9_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@313154@macro@SCT_OUTPUTDIRCTRL_SETCLR9", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR9", - "location": { - "column": "9", - "line": "4637", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@313304@macro@SCT_OUTPUTDIRCTRL_SETCLR10_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR10_MASK", - "location": { - "column": "9", - "line": "4638", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR10_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@313366@macro@SCT_OUTPUTDIRCTRL_SETCLR10_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR10_SHIFT", - "location": { - "column": "9", - "line": "4639", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR10_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@313789@macro@SCT_OUTPUTDIRCTRL_SETCLR10", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR10", - "location": { - "column": "9", - "line": "4645", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR10", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@313941@macro@SCT_OUTPUTDIRCTRL_SETCLR11_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR11_MASK", - "location": { - "column": "9", - "line": "4646", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR11_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@314003@macro@SCT_OUTPUTDIRCTRL_SETCLR11_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR11_SHIFT", - "location": { - "column": "9", - "line": "4647", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR11_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@314426@macro@SCT_OUTPUTDIRCTRL_SETCLR11", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR11", - "location": { - "column": "9", - "line": "4653", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR11", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@314578@macro@SCT_OUTPUTDIRCTRL_SETCLR12_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR12_MASK", - "location": { - "column": "9", - "line": "4654", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR12_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@314641@macro@SCT_OUTPUTDIRCTRL_SETCLR12_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR12_SHIFT", - "location": { - "column": "9", - "line": "4655", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR12_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@315064@macro@SCT_OUTPUTDIRCTRL_SETCLR12", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR12", - "location": { - "column": "9", - "line": "4661", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR12", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@315216@macro@SCT_OUTPUTDIRCTRL_SETCLR13_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR13_MASK", - "location": { - "column": "9", - "line": "4662", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR13_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@315279@macro@SCT_OUTPUTDIRCTRL_SETCLR13_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR13_SHIFT", - "location": { - "column": "9", - "line": "4663", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR13_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@315702@macro@SCT_OUTPUTDIRCTRL_SETCLR13", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR13", - "location": { - "column": "9", - "line": "4669", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR13", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@315854@macro@SCT_OUTPUTDIRCTRL_SETCLR14_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR14_MASK", - "location": { - "column": "9", - "line": "4670", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR14_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@315918@macro@SCT_OUTPUTDIRCTRL_SETCLR14_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR14_SHIFT", - "location": { - "column": "9", - "line": "4671", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR14_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@316341@macro@SCT_OUTPUTDIRCTRL_SETCLR14", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR14", - "location": { - "column": "9", - "line": "4677", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR14", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@316493@macro@SCT_OUTPUTDIRCTRL_SETCLR15_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR15_MASK", - "location": { - "column": "9", - "line": "4678", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR15_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@316557@macro@SCT_OUTPUTDIRCTRL_SETCLR15_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR15_SHIFT", - "location": { - "column": "9", - "line": "4679", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR15_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@316980@macro@SCT_OUTPUTDIRCTRL_SETCLR15", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUTPUTDIRCTRL_SETCLR15", - "location": { - "column": "9", - "line": "4685", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUTPUTDIRCTRL_SETCLR15", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@317209@macro@SCT_RES_O0RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O0RES_MASK", - "location": { - "column": "9", - "line": "4690", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O0RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@317266@macro@SCT_RES_O0RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O0RES_SHIFT", - "location": { - "column": "9", - "line": "4691", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O0RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@317589@macro@SCT_RES_O0RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O0RES", - "location": { - "column": "9", - "line": "4698", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O0RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@317715@macro@SCT_RES_O1RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O1RES_MASK", - "location": { - "column": "9", - "line": "4699", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O1RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@317772@macro@SCT_RES_O1RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O1RES_SHIFT", - "location": { - "column": "9", - "line": "4700", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O1RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@318095@macro@SCT_RES_O1RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O1RES", - "location": { - "column": "9", - "line": "4707", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O1RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@318221@macro@SCT_RES_O2RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O2RES_MASK", - "location": { - "column": "9", - "line": "4708", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O2RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@318279@macro@SCT_RES_O2RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O2RES_SHIFT", - "location": { - "column": "9", - "line": "4709", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O2RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@318604@macro@SCT_RES_O2RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O2RES", - "location": { - "column": "9", - "line": "4716", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O2RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@318730@macro@SCT_RES_O3RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O3RES_MASK", - "location": { - "column": "9", - "line": "4717", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O3RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@318788@macro@SCT_RES_O3RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O3RES_SHIFT", - "location": { - "column": "9", - "line": "4718", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O3RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@319111@macro@SCT_RES_O3RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O3RES", - "location": { - "column": "9", - "line": "4725", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O3RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@319237@macro@SCT_RES_O4RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O4RES_MASK", - "location": { - "column": "9", - "line": "4726", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O4RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@319296@macro@SCT_RES_O4RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O4RES_SHIFT", - "location": { - "column": "9", - "line": "4727", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O4RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@319619@macro@SCT_RES_O4RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O4RES", - "location": { - "column": "9", - "line": "4734", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O4RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@319745@macro@SCT_RES_O5RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O5RES_MASK", - "location": { - "column": "9", - "line": "4735", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O5RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@319804@macro@SCT_RES_O5RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O5RES_SHIFT", - "location": { - "column": "9", - "line": "4736", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O5RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@320128@macro@SCT_RES_O5RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O5RES", - "location": { - "column": "9", - "line": "4743", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O5RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@320254@macro@SCT_RES_O6RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O6RES_MASK", - "location": { - "column": "9", - "line": "4744", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O6RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@320314@macro@SCT_RES_O6RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O6RES_SHIFT", - "location": { - "column": "9", - "line": "4745", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O6RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@320638@macro@SCT_RES_O6RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O6RES", - "location": { - "column": "9", - "line": "4752", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O6RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@320764@macro@SCT_RES_O7RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O7RES_MASK", - "location": { - "column": "9", - "line": "4753", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O7RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@320824@macro@SCT_RES_O7RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O7RES_SHIFT", - "location": { - "column": "9", - "line": "4754", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O7RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@321150@macro@SCT_RES_O7RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O7RES", - "location": { - "column": "9", - "line": "4761", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O7RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@321276@macro@SCT_RES_O8RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O8RES_MASK", - "location": { - "column": "9", - "line": "4762", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O8RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@321337@macro@SCT_RES_O8RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O8RES_SHIFT", - "location": { - "column": "9", - "line": "4763", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O8RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@321661@macro@SCT_RES_O8RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O8RES", - "location": { - "column": "9", - "line": "4770", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O8RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@321787@macro@SCT_RES_O9RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O9RES_MASK", - "location": { - "column": "9", - "line": "4771", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O9RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@321848@macro@SCT_RES_O9RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O9RES_SHIFT", - "location": { - "column": "9", - "line": "4772", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O9RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@322172@macro@SCT_RES_O9RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O9RES", - "location": { - "column": "9", - "line": "4779", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O9RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@322298@macro@SCT_RES_O10RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O10RES_MASK", - "location": { - "column": "9", - "line": "4780", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O10RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@322360@macro@SCT_RES_O10RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O10RES_SHIFT", - "location": { - "column": "9", - "line": "4781", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O10RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@322688@macro@SCT_RES_O10RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O10RES", - "location": { - "column": "9", - "line": "4788", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O10RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@322816@macro@SCT_RES_O11RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O11RES_MASK", - "location": { - "column": "9", - "line": "4789", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O11RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@322878@macro@SCT_RES_O11RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O11RES_SHIFT", - "location": { - "column": "9", - "line": "4790", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O11RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@323206@macro@SCT_RES_O11RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O11RES", - "location": { - "column": "9", - "line": "4797", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O11RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@323334@macro@SCT_RES_O12RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O12RES_MASK", - "location": { - "column": "9", - "line": "4798", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O12RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@323397@macro@SCT_RES_O12RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O12RES_SHIFT", - "location": { - "column": "9", - "line": "4799", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O12RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@323725@macro@SCT_RES_O12RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O12RES", - "location": { - "column": "9", - "line": "4806", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O12RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@323853@macro@SCT_RES_O13RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O13RES_MASK", - "location": { - "column": "9", - "line": "4807", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O13RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@323916@macro@SCT_RES_O13RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O13RES_SHIFT", - "location": { - "column": "9", - "line": "4808", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O13RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@324244@macro@SCT_RES_O13RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O13RES", - "location": { - "column": "9", - "line": "4815", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O13RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@324372@macro@SCT_RES_O14RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O14RES_MASK", - "location": { - "column": "9", - "line": "4816", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O14RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@324436@macro@SCT_RES_O14RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O14RES_SHIFT", - "location": { - "column": "9", - "line": "4817", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O14RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@324764@macro@SCT_RES_O14RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O14RES", - "location": { - "column": "9", - "line": "4824", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O14RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@324892@macro@SCT_RES_O15RES_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O15RES_MASK", - "location": { - "column": "9", - "line": "4825", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O15RES_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@324956@macro@SCT_RES_O15RES_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O15RES_SHIFT", - "location": { - "column": "9", - "line": "4826", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O15RES_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@325284@macro@SCT_RES_O15RES", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RES_O15RES", - "location": { - "column": "9", - "line": "4833", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_RES_O15RES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@325491@macro@SCT_DMA0REQUEST_DEV_0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA0REQUEST_DEV_0_MASK", - "location": { - "column": "9", - "line": "4838", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA0REQUEST_DEV_0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@325551@macro@SCT_DMA0REQUEST_DEV_0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA0REQUEST_DEV_0_SHIFT", - "location": { - "column": "9", - "line": "4839", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA0REQUEST_DEV_0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@325606@macro@SCT_DMA0REQUEST_DEV_0", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA0REQUEST_DEV_0", - "location": { - "column": "9", - "line": "4840", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA0REQUEST_DEV_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@325748@macro@SCT_DMA0REQUEST_DRL0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA0REQUEST_DRL0_MASK", - "location": { - "column": "9", - "line": "4841", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA0REQUEST_DRL0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@325812@macro@SCT_DMA0REQUEST_DRL0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA0REQUEST_DRL0_SHIFT", - "location": { - "column": "9", - "line": "4842", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA0REQUEST_DRL0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@325868@macro@SCT_DMA0REQUEST_DRL0", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA0REQUEST_DRL0", - "location": { - "column": "9", - "line": "4843", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA0REQUEST_DRL0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@326008@macro@SCT_DMA0REQUEST_DRQ0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA0REQUEST_DRQ0_MASK", - "location": { - "column": "9", - "line": "4844", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA0REQUEST_DRQ0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@326072@macro@SCT_DMA0REQUEST_DRQ0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA0REQUEST_DRQ0_SHIFT", - "location": { - "column": "9", - "line": "4845", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA0REQUEST_DRQ0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@326128@macro@SCT_DMA0REQUEST_DRQ0", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA0REQUEST_DRQ0", - "location": { - "column": "9", - "line": "4846", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA0REQUEST_DRQ0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@326347@macro@SCT_DMA1REQUEST_DEV_1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA1REQUEST_DEV_1_MASK", - "location": { - "column": "9", - "line": "4851", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA1REQUEST_DEV_1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@326407@macro@SCT_DMA1REQUEST_DEV_1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA1REQUEST_DEV_1_SHIFT", - "location": { - "column": "9", - "line": "4852", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA1REQUEST_DEV_1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@326462@macro@SCT_DMA1REQUEST_DEV_1", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA1REQUEST_DEV_1", - "location": { - "column": "9", - "line": "4853", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA1REQUEST_DEV_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@326604@macro@SCT_DMA1REQUEST_DRL1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA1REQUEST_DRL1_MASK", - "location": { - "column": "9", - "line": "4854", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA1REQUEST_DRL1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@326668@macro@SCT_DMA1REQUEST_DRL1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA1REQUEST_DRL1_SHIFT", - "location": { - "column": "9", - "line": "4855", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA1REQUEST_DRL1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@326724@macro@SCT_DMA1REQUEST_DRL1", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA1REQUEST_DRL1", - "location": { - "column": "9", - "line": "4856", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA1REQUEST_DRL1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@326864@macro@SCT_DMA1REQUEST_DRQ1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA1REQUEST_DRQ1_MASK", - "location": { - "column": "9", - "line": "4857", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA1REQUEST_DRQ1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@326928@macro@SCT_DMA1REQUEST_DRQ1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA1REQUEST_DRQ1_SHIFT", - "location": { - "column": "9", - "line": "4858", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA1REQUEST_DRQ1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@326984@macro@SCT_DMA1REQUEST_DRQ1", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_DMA1REQUEST_DRQ1", - "location": { - "column": "9", - "line": "4859", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_DMA1REQUEST_DRQ1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@327205@macro@SCT_EVEN_IEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVEN_IEN_MASK", - "location": { - "column": "9", - "line": "4864", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVEN_IEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@327265@macro@SCT_EVEN_IEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVEN_IEN_SHIFT", - "location": { - "column": "9", - "line": "4865", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVEN_IEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@327320@macro@SCT_EVEN_IEN", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVEN_IEN", - "location": { - "column": "9", - "line": "4866", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVEN_IEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@327515@macro@SCT_EVFLAG_FLAG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVFLAG_FLAG_MASK", - "location": { - "column": "9", - "line": "4871", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVFLAG_FLAG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@327575@macro@SCT_EVFLAG_FLAG_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVFLAG_FLAG_SHIFT", - "location": { - "column": "9", - "line": "4872", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVFLAG_FLAG_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@327630@macro@SCT_EVFLAG_FLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVFLAG_FLAG", - "location": { - "column": "9", - "line": "4873", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVFLAG_FLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@327845@macro@SCT_CONEN_NCEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONEN_NCEN_MASK", - "location": { - "column": "9", - "line": "4878", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONEN_NCEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@327905@macro@SCT_CONEN_NCEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONEN_NCEN_SHIFT", - "location": { - "column": "9", - "line": "4879", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONEN_NCEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@327960@macro@SCT_CONEN_NCEN", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONEN_NCEN", - "location": { - "column": "9", - "line": "4880", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONEN_NCEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@328163@macro@SCT_CONFLAG_NCFLAG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFLAG_NCFLAG_MASK", - "location": { - "column": "9", - "line": "4885", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFLAG_NCFLAG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@328223@macro@SCT_CONFLAG_NCFLAG_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFLAG_NCFLAG_SHIFT", - "location": { - "column": "9", - "line": "4886", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFLAG_NCFLAG_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@328278@macro@SCT_CONFLAG_NCFLAG", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFLAG_NCFLAG", - "location": { - "column": "9", - "line": "4887", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFLAG_NCFLAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@328414@macro@SCT_CONFLAG_BUSERRL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFLAG_BUSERRL_MASK", - "location": { - "column": "9", - "line": "4888", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFLAG_BUSERRL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@328478@macro@SCT_CONFLAG_BUSERRL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFLAG_BUSERRL_SHIFT", - "location": { - "column": "9", - "line": "4889", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFLAG_BUSERRL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@328534@macro@SCT_CONFLAG_BUSERRL", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFLAG_BUSERRL", - "location": { - "column": "9", - "line": "4890", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFLAG_BUSERRL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@328672@macro@SCT_CONFLAG_BUSERRH_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFLAG_BUSERRH_MASK", - "location": { - "column": "9", - "line": "4891", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFLAG_BUSERRH_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@328736@macro@SCT_CONFLAG_BUSERRH_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFLAG_BUSERRH_SHIFT", - "location": { - "column": "9", - "line": "4892", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFLAG_BUSERRH_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@328792@macro@SCT_CONFLAG_BUSERRH", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CONFLAG_BUSERRH", - "location": { - "column": "9", - "line": "4893", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_CONFLAG_BUSERRH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@329017@macro@SCT_SCTCAP_CAPn_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAP_CAPn_L_MASK", - "location": { - "column": "9", - "line": "4898", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAP_CAPn_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@329077@macro@SCT_SCTCAP_CAPn_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAP_CAPn_L_SHIFT", - "location": { - "column": "9", - "line": "4899", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAP_CAPn_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@329132@macro@SCT_SCTCAP_CAPn_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAP_CAPn_L", - "location": { - "column": "9", - "line": "4900", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAP_CAPn_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@329266@macro@SCT_SCTCAP_CAPn_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAP_CAPn_H_MASK", - "location": { - "column": "9", - "line": "4901", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAP_CAPn_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@329330@macro@SCT_SCTCAP_CAPn_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAP_CAPn_H_SHIFT", - "location": { - "column": "9", - "line": "4902", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAP_CAPn_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@329386@macro@SCT_SCTCAP_CAPn_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAP_CAPn_H", - "location": { - "column": "9", - "line": "4903", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAP_CAPn_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@329564@macro@SCT_SCTCAP_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAP_COUNT", - "location": { - "column": "9", - "line": "4907", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAP_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@329701@macro@SCT_SCTMATCH_MATCHn_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCH_MATCHn_L_MASK", - "location": { - "column": "9", - "line": "4911", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCH_MATCHn_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@329761@macro@SCT_SCTMATCH_MATCHn_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCH_MATCHn_L_SHIFT", - "location": { - "column": "9", - "line": "4912", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCH_MATCHn_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@329816@macro@SCT_SCTMATCH_MATCHn_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCH_MATCHn_L", - "location": { - "column": "9", - "line": "4913", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCH_MATCHn_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@329958@macro@SCT_SCTMATCH_MATCHn_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCH_MATCHn_H_MASK", - "location": { - "column": "9", - "line": "4914", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCH_MATCHn_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@330022@macro@SCT_SCTMATCH_MATCHn_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCH_MATCHn_H_SHIFT", - "location": { - "column": "9", - "line": "4915", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCH_MATCHn_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@330078@macro@SCT_SCTMATCH_MATCHn_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCH_MATCHn_H", - "location": { - "column": "9", - "line": "4916", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCH_MATCHn_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@330266@macro@SCT_SCTMATCH_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCH_COUNT", - "location": { - "column": "9", - "line": "4920", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCH_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@330391@macro@SCT_SCTCAPCTRL_CAPCONn_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAPCTRL_CAPCONn_L_MASK", - "location": { - "column": "9", - "line": "4924", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAPCTRL_CAPCONn_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@330451@macro@SCT_SCTCAPCTRL_CAPCONn_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAPCTRL_CAPCONn_L_SHIFT", - "location": { - "column": "9", - "line": "4925", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAPCTRL_CAPCONn_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@330506@macro@SCT_SCTCAPCTRL_CAPCONn_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAPCTRL_CAPCONn_L", - "location": { - "column": "9", - "line": "4926", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAPCTRL_CAPCONn_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@330654@macro@SCT_SCTCAPCTRL_CAPCONn_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAPCTRL_CAPCONn_H_MASK", - "location": { - "column": "9", - "line": "4927", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAPCTRL_CAPCONn_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@330718@macro@SCT_SCTCAPCTRL_CAPCONn_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAPCTRL_CAPCONn_H_SHIFT", - "location": { - "column": "9", - "line": "4928", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAPCTRL_CAPCONn_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@330774@macro@SCT_SCTCAPCTRL_CAPCONn_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAPCTRL_CAPCONn_H", - "location": { - "column": "9", - "line": "4929", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAPCTRL_CAPCONn_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@330970@macro@SCT_SCTCAPCTRL_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTCAPCTRL_COUNT", - "location": { - "column": "9", - "line": "4933", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTCAPCTRL_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@331099@macro@SCT_SCTMATCHREL_RELOADn_L_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCHREL_RELOADn_L_MASK", - "location": { - "column": "9", - "line": "4937", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCHREL_RELOADn_L_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@331159@macro@SCT_SCTMATCHREL_RELOADn_L_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCHREL_RELOADn_L_SHIFT", - "location": { - "column": "9", - "line": "4938", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCHREL_RELOADn_L_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@331214@macro@SCT_SCTMATCHREL_RELOADn_L", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCHREL_RELOADn_L", - "location": { - "column": "9", - "line": "4939", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCHREL_RELOADn_L", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@331364@macro@SCT_SCTMATCHREL_RELOADn_H_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCHREL_RELOADn_H_MASK", - "location": { - "column": "9", - "line": "4940", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCHREL_RELOADn_H_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@331428@macro@SCT_SCTMATCHREL_RELOADn_H_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCHREL_RELOADn_H_SHIFT", - "location": { - "column": "9", - "line": "4941", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCHREL_RELOADn_H_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@331484@macro@SCT_SCTMATCHREL_RELOADn_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCHREL_RELOADn_H", - "location": { - "column": "9", - "line": "4942", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCHREL_RELOADn_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@331683@macro@SCT_SCTMATCHREL_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_SCTMATCHREL_COUNT", - "location": { - "column": "9", - "line": "4946", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_SCTMATCHREL_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@331807@macro@SCT_EVENT_STATE_STATEMSKn_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_STATE_STATEMSKn_MASK", - "location": { - "column": "9", - "line": "4950", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_STATE_STATEMSKn_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@331867@macro@SCT_EVENT_STATE_STATEMSKn_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_STATE_STATEMSKn_SHIFT", - "location": { - "column": "9", - "line": "4951", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_STATE_STATEMSKn_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@331922@macro@SCT_EVENT_STATE_STATEMSKn", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_STATE_STATEMSKn", - "location": { - "column": "9", - "line": "4952", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_STATE_STATEMSKn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@332121@macro@SCT_EVENT_STATE_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_STATE_COUNT", - "location": { - "column": "9", - "line": "4956", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_STATE_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@332246@macro@SCT_EVENT_CTRL_MATCHSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_MATCHSEL_MASK", - "location": { - "column": "9", - "line": "4960", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_MATCHSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@332303@macro@SCT_EVENT_CTRL_MATCHSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_MATCHSEL_SHIFT", - "location": { - "column": "9", - "line": "4961", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_MATCHSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@332358@macro@SCT_EVENT_CTRL_MATCHSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_MATCHSEL", - "location": { - "column": "9", - "line": "4962", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_MATCHSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@332504@macro@SCT_EVENT_CTRL_HEVENT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_HEVENT_MASK", - "location": { - "column": "9", - "line": "4963", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_HEVENT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@332562@macro@SCT_EVENT_CTRL_HEVENT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_HEVENT_SHIFT", - "location": { - "column": "9", - "line": "4964", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_HEVENT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@332844@macro@SCT_EVENT_CTRL_HEVENT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_HEVENT", - "location": { - "column": "9", - "line": "4969", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_HEVENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@332986@macro@SCT_EVENT_CTRL_OUTSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_OUTSEL_MASK", - "location": { - "column": "9", - "line": "4970", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_OUTSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@333044@macro@SCT_EVENT_CTRL_OUTSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_OUTSEL_SHIFT", - "location": { - "column": "9", - "line": "4971", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_OUTSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@333235@macro@SCT_EVENT_CTRL_OUTSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_OUTSEL", - "location": { - "column": "9", - "line": "4976", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_OUTSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@333377@macro@SCT_EVENT_CTRL_IOSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_IOSEL_MASK", - "location": { - "column": "9", - "line": "4977", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_IOSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@333436@macro@SCT_EVENT_CTRL_IOSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_IOSEL_SHIFT", - "location": { - "column": "9", - "line": "4978", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_IOSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@333491@macro@SCT_EVENT_CTRL_IOSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_IOSEL", - "location": { - "column": "9", - "line": "4979", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_IOSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@333631@macro@SCT_EVENT_CTRL_IOCOND_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_IOCOND_MASK", - "location": { - "column": "9", - "line": "4980", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_IOCOND_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@333690@macro@SCT_EVENT_CTRL_IOCOND_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_IOCOND_SHIFT", - "location": { - "column": "9", - "line": "4981", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_IOCOND_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@334091@macro@SCT_EVENT_CTRL_IOCOND", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_IOCOND", - "location": { - "column": "9", - "line": "4988", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_IOCOND", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@334233@macro@SCT_EVENT_CTRL_COMBMODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_COMBMODE_MASK", - "location": { - "column": "9", - "line": "4989", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_COMBMODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@334293@macro@SCT_EVENT_CTRL_COMBMODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_COMBMODE_SHIFT", - "location": { - "column": "9", - "line": "4990", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_COMBMODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@334733@macro@SCT_EVENT_CTRL_COMBMODE", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_COMBMODE", - "location": { - "column": "9", - "line": "4997", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_COMBMODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@334879@macro@SCT_EVENT_CTRL_STATELD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_STATELD_MASK", - "location": { - "column": "9", - "line": "4998", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_STATELD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@334939@macro@SCT_EVENT_CTRL_STATELD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_STATELD_SHIFT", - "location": { - "column": "9", - "line": "4999", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_STATELD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@335280@macro@SCT_EVENT_CTRL_STATELD", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_STATELD", - "location": { - "column": "9", - "line": "5004", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_STATELD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@335424@macro@SCT_EVENT_CTRL_STATEV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_STATEV_MASK", - "location": { - "column": "9", - "line": "5005", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_STATEV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@335485@macro@SCT_EVENT_CTRL_STATEV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_STATEV_SHIFT", - "location": { - "column": "9", - "line": "5006", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_STATEV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@335541@macro@SCT_EVENT_CTRL_STATEV", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_STATEV", - "location": { - "column": "9", - "line": "5007", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_STATEV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@335683@macro@SCT_EVENT_CTRL_MATCHMEM_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_MATCHMEM_MASK", - "location": { - "column": "9", - "line": "5008", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_MATCHMEM_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@335745@macro@SCT_EVENT_CTRL_MATCHMEM_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_MATCHMEM_SHIFT", - "location": { - "column": "9", - "line": "5009", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_MATCHMEM_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@335801@macro@SCT_EVENT_CTRL_MATCHMEM", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_MATCHMEM", - "location": { - "column": "9", - "line": "5010", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_MATCHMEM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@335947@macro@SCT_EVENT_CTRL_DIRECTION_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_DIRECTION_MASK", - "location": { - "column": "9", - "line": "5011", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_DIRECTION_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@336009@macro@SCT_EVENT_CTRL_DIRECTION_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_DIRECTION_SHIFT", - "location": { - "column": "9", - "line": "5012", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_DIRECTION_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@336538@macro@SCT_EVENT_CTRL_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_DIRECTION", - "location": { - "column": "9", - "line": "5018", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@336734@macro@SCT_EVENT_CTRL_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_EVENT_CTRL_COUNT", - "location": { - "column": "9", - "line": "5022", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_EVENT_CTRL_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@336853@macro@SCT_OUT_SET_SET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUT_SET_SET_MASK", - "location": { - "column": "9", - "line": "5026", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUT_SET_SET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@336913@macro@SCT_OUT_SET_SET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUT_SET_SET_SHIFT", - "location": { - "column": "9", - "line": "5027", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUT_SET_SET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@336968@macro@SCT_OUT_SET_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUT_SET_SET", - "location": { - "column": "9", - "line": "5028", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUT_SET_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@337143@macro@SCT_OUT_SET_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUT_SET_COUNT", - "location": { - "column": "9", - "line": "5032", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUT_SET_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@337263@macro@SCT_OUT_CLR_CLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUT_CLR_CLR_MASK", - "location": { - "column": "9", - "line": "5036", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUT_CLR_CLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@337323@macro@SCT_OUT_CLR_CLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUT_CLR_CLR_SHIFT", - "location": { - "column": "9", - "line": "5037", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUT_CLR_CLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@337378@macro@SCT_OUT_CLR_CLR", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUT_CLR_CLR", - "location": { - "column": "9", - "line": "5038", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUT_CLR_CLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@337553@macro@SCT_OUT_CLR_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_OUT_CLR_COUNT", - "location": { - "column": "9", - "line": "5042", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_OUT_CLR_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@337756@macro@SCT0_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT0_BASE", - "location": { - "column": "9", - "line": "5052", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT0_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@337857@macro@SCT0", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT0", - "location": { - "column": "9", - "line": "5054", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@337990@macro@SCT_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_BASE_ADDRS", - "location": { - "column": "9", - "line": "5056", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@338112@macro@SCT_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_BASE_PTRS", - "location": { - "column": "9", - "line": "5058", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@338225@macro@SCT_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_IRQS", - "location": { - "column": "9", - "line": "5060", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SCT_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@SPI_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "5077", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@SPI_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "5078", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@CFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "CFG", - "location": { - "column": "17", - "line": "5079", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@DLY", - "What": "FieldDecl", - "defdec": "Def", - "display": "DLY", - "location": { - "column": "17", - "line": "5080", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DLY", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@STAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "STAT", - "location": { - "column": "17", - "line": "5081", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "STAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@INTENSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTENSET", - "location": { - "column": "17", - "line": "5082", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTENSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@INTENCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTENCLR", - "location": { - "column": "17", - "line": "5083", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTENCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@RESERVED_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_1", - "location": { - "column": "16", - "line": "5084", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@DIV", - "What": "FieldDecl", - "defdec": "Def", - "display": "DIV", - "location": { - "column": "17", - "line": "5085", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DIV", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@INTSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTSTAT", - "location": { - "column": "17", - "line": "5086", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@RESERVED_2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_2", - "location": { - "column": "16", - "line": "5087", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_2", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@FIFOCFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOCFG", - "location": { - "column": "17", - "line": "5088", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOCFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@FIFOSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOSTAT", - "location": { - "column": "17", - "line": "5089", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@FIFOTRIG", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOTRIG", - "location": { - "column": "17", - "line": "5090", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOTRIG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@RESERVED_3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_3", - "location": { - "column": "16", - "line": "5091", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_3", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@FIFOINTENSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOINTENSET", - "location": { - "column": "17", - "line": "5092", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOINTENSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@FIFOINTENCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOINTENCLR", - "location": { - "column": "17", - "line": "5093", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOINTENCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@FIFOINTSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOINTSTAT", - "location": { - "column": "17", - "line": "5094", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOINTSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@RESERVED_4", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_4", - "location": { - "column": "16", - "line": "5095", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_4", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@FIFOWR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOWR", - "location": { - "column": "17", - "line": "5096", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOWR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@RESERVED_5", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_5", - "location": { - "column": "16", - "line": "5097", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_5", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@FIFORD", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFORD", - "location": { - "column": "17", - "line": "5098", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFORD", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@RESERVED_6", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_6", - "location": { - "column": "16", - "line": "5099", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_6", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@FIFORDNOPOP", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFORDNOPOP", - "location": { - "column": "17", - "line": "5100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFORDNOPOP", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@RESERVED_7", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_7", - "location": { - "column": "16", - "line": "5101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_7", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - }, - { - "ID": "c:@SA@SPI_Type@FI@ID", - "What": "FieldDecl", - "defdec": "Def", - "display": "ID", - "location": { - "column": "17", - "line": "5102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ID", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5077_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@SPI_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct SPI_Type", - "location": { - "column": "3", - "line": "5103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@341391@macro@SPI_CFG_ENABLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_ENABLE_MASK", - "location": { - "column": "9", - "line": "5116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_ENABLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@341448@macro@SPI_CFG_ENABLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_ENABLE_SHIFT", - "location": { - "column": "9", - "line": "5117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_ENABLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@341682@macro@SPI_CFG_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_ENABLE", - "location": { - "column": "9", - "line": "5122", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@341810@macro@SPI_CFG_MASTER_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_MASTER_MASK", - "location": { - "column": "9", - "line": "5123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_MASTER_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@341867@macro@SPI_CFG_MASTER_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_MASTER_SHIFT", - "location": { - "column": "9", - "line": "5124", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_MASTER_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@342205@macro@SPI_CFG_MASTER", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_MASTER", - "location": { - "column": "9", - "line": "5129", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_MASTER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@342333@macro@SPI_CFG_LSBF_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_LSBF_MASK", - "location": { - "column": "9", - "line": "5130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_LSBF_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@342390@macro@SPI_CFG_LSBF_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_LSBF_SHIFT", - "location": { - "column": "9", - "line": "5131", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_LSBF_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@342649@macro@SPI_CFG_LSBF", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_LSBF", - "location": { - "column": "9", - "line": "5136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_LSBF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@342773@macro@SPI_CFG_CPHA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_CPHA_MASK", - "location": { - "column": "9", - "line": "5137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_CPHA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@342831@macro@SPI_CFG_CPHA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_CPHA_SHIFT", - "location": { - "column": "9", - "line": "5138", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_CPHA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@343290@macro@SPI_CFG_CPHA", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_CPHA", - "location": { - "column": "9", - "line": "5143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_CPHA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@343414@macro@SPI_CFG_CPOL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_CPOL_MASK", - "location": { - "column": "9", - "line": "5144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_CPOL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@343472@macro@SPI_CFG_CPOL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_CPOL_SHIFT", - "location": { - "column": "9", - "line": "5145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_CPOL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@343711@macro@SPI_CFG_CPOL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_CPOL", - "location": { - "column": "9", - "line": "5150", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_CPOL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@343835@macro@SPI_CFG_LOOP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_LOOP_MASK", - "location": { - "column": "9", - "line": "5151", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_LOOP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@343893@macro@SPI_CFG_LOOP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_LOOP_SHIFT", - "location": { - "column": "9", - "line": "5152", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_LOOP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@344161@macro@SPI_CFG_LOOP", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_LOOP", - "location": { - "column": "9", - "line": "5157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_LOOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@344285@macro@SPI_CFG_SPOL0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_SPOL0_MASK", - "location": { - "column": "9", - "line": "5158", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_SPOL0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@344344@macro@SPI_CFG_SPOL0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_SPOL0_SHIFT", - "location": { - "column": "9", - "line": "5159", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_SPOL0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@344530@macro@SPI_CFG_SPOL0", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_SPOL0", - "location": { - "column": "9", - "line": "5164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_SPOL0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@344656@macro@SPI_CFG_SPOL1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_SPOL1_MASK", - "location": { - "column": "9", - "line": "5165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_SPOL1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@344715@macro@SPI_CFG_SPOL1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_SPOL1_SHIFT", - "location": { - "column": "9", - "line": "5166", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_SPOL1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@344901@macro@SPI_CFG_SPOL1", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_SPOL1", - "location": { - "column": "9", - "line": "5171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_SPOL1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@345027@macro@SPI_CFG_SPOL2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_SPOL2_MASK", - "location": { - "column": "9", - "line": "5172", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_SPOL2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@345086@macro@SPI_CFG_SPOL2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_SPOL2_SHIFT", - "location": { - "column": "9", - "line": "5173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_SPOL2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@345273@macro@SPI_CFG_SPOL2", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_SPOL2", - "location": { - "column": "9", - "line": "5178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_SPOL2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@345399@macro@SPI_CFG_SPOL3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_SPOL3_MASK", - "location": { - "column": "9", - "line": "5179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_SPOL3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@345458@macro@SPI_CFG_SPOL3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_SPOL3_SHIFT", - "location": { - "column": "9", - "line": "5180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_SPOL3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@345645@macro@SPI_CFG_SPOL3", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_CFG_SPOL3", - "location": { - "column": "9", - "line": "5185", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_CFG_SPOL3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@345834@macro@SPI_DLY_PRE_DELAY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DLY_PRE_DELAY_MASK", - "location": { - "column": "9", - "line": "5190", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DLY_PRE_DELAY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@345891@macro@SPI_DLY_PRE_DELAY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DLY_PRE_DELAY_SHIFT", - "location": { - "column": "9", - "line": "5191", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DLY_PRE_DELAY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@345946@macro@SPI_DLY_PRE_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DLY_PRE_DELAY", - "location": { - "column": "9", - "line": "5192", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DLY_PRE_DELAY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@346080@macro@SPI_DLY_POST_DELAY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DLY_POST_DELAY_MASK", - "location": { - "column": "9", - "line": "5193", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DLY_POST_DELAY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@346138@macro@SPI_DLY_POST_DELAY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DLY_POST_DELAY_SHIFT", - "location": { - "column": "9", - "line": "5194", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DLY_POST_DELAY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@346193@macro@SPI_DLY_POST_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DLY_POST_DELAY", - "location": { - "column": "9", - "line": "5195", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DLY_POST_DELAY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@346329@macro@SPI_DLY_FRAME_DELAY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DLY_FRAME_DELAY_MASK", - "location": { - "column": "9", - "line": "5196", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DLY_FRAME_DELAY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@346388@macro@SPI_DLY_FRAME_DELAY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DLY_FRAME_DELAY_SHIFT", - "location": { - "column": "9", - "line": "5197", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DLY_FRAME_DELAY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@346443@macro@SPI_DLY_FRAME_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DLY_FRAME_DELAY", - "location": { - "column": "9", - "line": "5198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DLY_FRAME_DELAY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@346581@macro@SPI_DLY_TRANSFER_DELAY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DLY_TRANSFER_DELAY_MASK", - "location": { - "column": "9", - "line": "5199", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DLY_TRANSFER_DELAY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@346641@macro@SPI_DLY_TRANSFER_DELAY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DLY_TRANSFER_DELAY_SHIFT", - "location": { - "column": "9", - "line": "5200", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DLY_TRANSFER_DELAY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@346697@macro@SPI_DLY_TRANSFER_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DLY_TRANSFER_DELAY", - "location": { - "column": "9", - "line": "5201", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DLY_TRANSFER_DELAY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@346968@macro@SPI_STAT_SSA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_SSA_MASK", - "location": { - "column": "9", - "line": "5206", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_SSA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@347026@macro@SPI_STAT_SSA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_SSA_SHIFT", - "location": { - "column": "9", - "line": "5207", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_SSA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@347081@macro@SPI_STAT_SSA", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_SSA", - "location": { - "column": "9", - "line": "5208", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_SSA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@347205@macro@SPI_STAT_SSD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_SSD_MASK", - "location": { - "column": "9", - "line": "5209", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_SSD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@347263@macro@SPI_STAT_SSD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_SSD_SHIFT", - "location": { - "column": "9", - "line": "5210", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_SSD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@347318@macro@SPI_STAT_SSD", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_SSD", - "location": { - "column": "9", - "line": "5211", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_SSD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@347442@macro@SPI_STAT_STALLED_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_STALLED_MASK", - "location": { - "column": "9", - "line": "5212", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_STALLED_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@347500@macro@SPI_STAT_STALLED_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_STALLED_SHIFT", - "location": { - "column": "9", - "line": "5213", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_STALLED_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@347555@macro@SPI_STAT_STALLED", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_STALLED", - "location": { - "column": "9", - "line": "5214", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_STALLED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@347687@macro@SPI_STAT_ENDTRANSFER_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_ENDTRANSFER_MASK", - "location": { - "column": "9", - "line": "5215", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_ENDTRANSFER_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@347745@macro@SPI_STAT_ENDTRANSFER_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_ENDTRANSFER_SHIFT", - "location": { - "column": "9", - "line": "5216", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_ENDTRANSFER_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@347800@macro@SPI_STAT_ENDTRANSFER", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_ENDTRANSFER", - "location": { - "column": "9", - "line": "5217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_ENDTRANSFER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@347940@macro@SPI_STAT_MSTIDLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_MSTIDLE_MASK", - "location": { - "column": "9", - "line": "5218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_MSTIDLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@347999@macro@SPI_STAT_MSTIDLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_MSTIDLE_SHIFT", - "location": { - "column": "9", - "line": "5219", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_MSTIDLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@348054@macro@SPI_STAT_MSTIDLE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_STAT_MSTIDLE", - "location": { - "column": "9", - "line": "5220", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_STAT_MSTIDLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@348390@macro@SPI_INTENSET_SSAEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENSET_SSAEN_MASK", - "location": { - "column": "9", - "line": "5225", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENSET_SSAEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@348448@macro@SPI_INTENSET_SSAEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENSET_SSAEN_SHIFT", - "location": { - "column": "9", - "line": "5226", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENSET_SSAEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@348860@macro@SPI_INTENSET_SSAEN", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENSET_SSAEN", - "location": { - "column": "9", - "line": "5231", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENSET_SSAEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@348996@macro@SPI_INTENSET_SSDEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENSET_SSDEN_MASK", - "location": { - "column": "9", - "line": "5232", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENSET_SSDEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@349054@macro@SPI_INTENSET_SSDEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENSET_SSDEN_SHIFT", - "location": { - "column": "9", - "line": "5233", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENSET_SSDEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@349460@macro@SPI_INTENSET_SSDEN", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENSET_SSDEN", - "location": { - "column": "9", - "line": "5238", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENSET_SSDEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@349596@macro@SPI_INTENSET_MSTIDLEEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENSET_MSTIDLEEN_MASK", - "location": { - "column": "9", - "line": "5239", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENSET_MSTIDLEEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@349655@macro@SPI_INTENSET_MSTIDLEEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENSET_MSTIDLEEN_SHIFT", - "location": { - "column": "9", - "line": "5240", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENSET_MSTIDLEEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@349926@macro@SPI_INTENSET_MSTIDLEEN", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENSET_MSTIDLEEN", - "location": { - "column": "9", - "line": "5245", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENSET_MSTIDLEEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@350247@macro@SPI_INTENCLR_SSAEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENCLR_SSAEN_MASK", - "location": { - "column": "9", - "line": "5250", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENCLR_SSAEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@350305@macro@SPI_INTENCLR_SSAEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENCLR_SSAEN_SHIFT", - "location": { - "column": "9", - "line": "5251", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENCLR_SSAEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@350360@macro@SPI_INTENCLR_SSAEN", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENCLR_SSAEN", - "location": { - "column": "9", - "line": "5252", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENCLR_SSAEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@350496@macro@SPI_INTENCLR_SSDEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENCLR_SSDEN_MASK", - "location": { - "column": "9", - "line": "5253", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENCLR_SSDEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@350554@macro@SPI_INTENCLR_SSDEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENCLR_SSDEN_SHIFT", - "location": { - "column": "9", - "line": "5254", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENCLR_SSDEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@350609@macro@SPI_INTENCLR_SSDEN", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENCLR_SSDEN", - "location": { - "column": "9", - "line": "5255", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENCLR_SSDEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@350745@macro@SPI_INTENCLR_MSTIDLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENCLR_MSTIDLE_MASK", - "location": { - "column": "9", - "line": "5256", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENCLR_MSTIDLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@350804@macro@SPI_INTENCLR_MSTIDLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENCLR_MSTIDLE_SHIFT", - "location": { - "column": "9", - "line": "5257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENCLR_MSTIDLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@350859@macro@SPI_INTENCLR_MSTIDLE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTENCLR_MSTIDLE", - "location": { - "column": "9", - "line": "5258", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTENCLR_MSTIDLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@351061@macro@SPI_DIV_DIVVAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DIV_DIVVAL_MASK", - "location": { - "column": "9", - "line": "5263", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DIV_DIVVAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@351121@macro@SPI_DIV_DIVVAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DIV_DIVVAL_SHIFT", - "location": { - "column": "9", - "line": "5264", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DIV_DIVVAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@351176@macro@SPI_DIV_DIVVAL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_DIV_DIVVAL", - "location": { - "column": "9", - "line": "5265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_DIV_DIVVAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@351373@macro@SPI_INTSTAT_SSA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTSTAT_SSA_MASK", - "location": { - "column": "9", - "line": "5270", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTSTAT_SSA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@351431@macro@SPI_INTSTAT_SSA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTSTAT_SSA_SHIFT", - "location": { - "column": "9", - "line": "5271", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTSTAT_SSA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@351486@macro@SPI_INTSTAT_SSA", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTSTAT_SSA", - "location": { - "column": "9", - "line": "5272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTSTAT_SSA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@351616@macro@SPI_INTSTAT_SSD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTSTAT_SSD_MASK", - "location": { - "column": "9", - "line": "5273", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTSTAT_SSD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@351674@macro@SPI_INTSTAT_SSD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTSTAT_SSD_SHIFT", - "location": { - "column": "9", - "line": "5274", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTSTAT_SSD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@351729@macro@SPI_INTSTAT_SSD", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTSTAT_SSD", - "location": { - "column": "9", - "line": "5275", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTSTAT_SSD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@351859@macro@SPI_INTSTAT_MSTIDLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTSTAT_MSTIDLE_MASK", - "location": { - "column": "9", - "line": "5276", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTSTAT_MSTIDLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@351918@macro@SPI_INTSTAT_MSTIDLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTSTAT_MSTIDLE_SHIFT", - "location": { - "column": "9", - "line": "5277", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTSTAT_MSTIDLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@351973@macro@SPI_INTSTAT_MSTIDLE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_INTSTAT_MSTIDLE", - "location": { - "column": "9", - "line": "5278", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_INTSTAT_MSTIDLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@352199@macro@SPI_FIFOCFG_ENABLETX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_ENABLETX_MASK", - "location": { - "column": "9", - "line": "5283", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_ENABLETX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@352256@macro@SPI_FIFOCFG_ENABLETX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_ENABLETX_SHIFT", - "location": { - "column": "9", - "line": "5284", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_ENABLETX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@352442@macro@SPI_FIFOCFG_ENABLETX", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_ENABLETX", - "location": { - "column": "9", - "line": "5289", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_ENABLETX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@352582@macro@SPI_FIFOCFG_ENABLERX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_ENABLERX_MASK", - "location": { - "column": "9", - "line": "5290", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_ENABLERX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@352639@macro@SPI_FIFOCFG_ENABLERX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_ENABLERX_SHIFT", - "location": { - "column": "9", - "line": "5291", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_ENABLERX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@352822@macro@SPI_FIFOCFG_ENABLERX", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_ENABLERX", - "location": { - "column": "9", - "line": "5296", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_ENABLERX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@352962@macro@SPI_FIFOCFG_SIZE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_SIZE_MASK", - "location": { - "column": "9", - "line": "5297", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_SIZE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@353020@macro@SPI_FIFOCFG_SIZE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_SIZE_SHIFT", - "location": { - "column": "9", - "line": "5298", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_SIZE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@353075@macro@SPI_FIFOCFG_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_SIZE", - "location": { - "column": "9", - "line": "5299", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@353207@macro@SPI_FIFOCFG_DMATX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_DMATX_MASK", - "location": { - "column": "9", - "line": "5300", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_DMATX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@353267@macro@SPI_FIFOCFG_DMATX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_DMATX_SHIFT", - "location": { - "column": "9", - "line": "5301", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_DMATX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@353563@macro@SPI_FIFOCFG_DMATX", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_DMATX", - "location": { - "column": "9", - "line": "5306", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_DMATX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@353697@macro@SPI_FIFOCFG_DMARX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_DMARX_MASK", - "location": { - "column": "9", - "line": "5307", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_DMARX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@353757@macro@SPI_FIFOCFG_DMARX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_DMARX_SHIFT", - "location": { - "column": "9", - "line": "5308", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_DMARX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@354051@macro@SPI_FIFOCFG_DMARX", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_DMARX", - "location": { - "column": "9", - "line": "5313", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_DMARX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@354185@macro@SPI_FIFOCFG_WAKETX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_WAKETX_MASK", - "location": { - "column": "9", - "line": "5314", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_WAKETX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@354245@macro@SPI_FIFOCFG_WAKETX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_WAKETX_SHIFT", - "location": { - "column": "9", - "line": "5315", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_WAKETX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@354964@macro@SPI_FIFOCFG_WAKETX", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_WAKETX", - "location": { - "column": "9", - "line": "5320", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_WAKETX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@355100@macro@SPI_FIFOCFG_WAKERX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_WAKERX_MASK", - "location": { - "column": "9", - "line": "5321", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_WAKERX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@355160@macro@SPI_FIFOCFG_WAKERX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_WAKERX_SHIFT", - "location": { - "column": "9", - "line": "5322", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_WAKERX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@355877@macro@SPI_FIFOCFG_WAKERX", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_WAKERX", - "location": { - "column": "9", - "line": "5327", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_WAKERX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@356013@macro@SPI_FIFOCFG_EMPTYTX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_EMPTYTX_MASK", - "location": { - "column": "9", - "line": "5328", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_EMPTYTX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@356074@macro@SPI_FIFOCFG_EMPTYTX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_EMPTYTX_SHIFT", - "location": { - "column": "9", - "line": "5329", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_EMPTYTX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@356130@macro@SPI_FIFOCFG_EMPTYTX", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_EMPTYTX", - "location": { - "column": "9", - "line": "5330", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_EMPTYTX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@356268@macro@SPI_FIFOCFG_EMPTYRX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_EMPTYRX_MASK", - "location": { - "column": "9", - "line": "5331", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_EMPTYRX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@356329@macro@SPI_FIFOCFG_EMPTYRX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_EMPTYRX_SHIFT", - "location": { - "column": "9", - "line": "5332", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_EMPTYRX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@356385@macro@SPI_FIFOCFG_EMPTYRX", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOCFG_EMPTYRX", - "location": { - "column": "9", - "line": "5333", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOCFG_EMPTYRX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@356594@macro@SPI_FIFOSTAT_TXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_TXERR_MASK", - "location": { - "column": "9", - "line": "5338", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_TXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@356651@macro@SPI_FIFOSTAT_TXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_TXERR_SHIFT", - "location": { - "column": "9", - "line": "5339", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_TXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@356706@macro@SPI_FIFOSTAT_TXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_TXERR", - "location": { - "column": "9", - "line": "5340", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_TXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@356842@macro@SPI_FIFOSTAT_RXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_RXERR_MASK", - "location": { - "column": "9", - "line": "5341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_RXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@356899@macro@SPI_FIFOSTAT_RXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_RXERR_SHIFT", - "location": { - "column": "9", - "line": "5342", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_RXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@356954@macro@SPI_FIFOSTAT_RXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_RXERR", - "location": { - "column": "9", - "line": "5343", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_RXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@357090@macro@SPI_FIFOSTAT_PERINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_PERINT_MASK", - "location": { - "column": "9", - "line": "5344", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_PERINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@357147@macro@SPI_FIFOSTAT_PERINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_PERINT_SHIFT", - "location": { - "column": "9", - "line": "5345", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_PERINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@357202@macro@SPI_FIFOSTAT_PERINT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_PERINT", - "location": { - "column": "9", - "line": "5346", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_PERINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@357340@macro@SPI_FIFOSTAT_TXEMPTY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_TXEMPTY_MASK", - "location": { - "column": "9", - "line": "5347", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_TXEMPTY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@357398@macro@SPI_FIFOSTAT_TXEMPTY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_TXEMPTY_SHIFT", - "location": { - "column": "9", - "line": "5348", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_TXEMPTY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@357453@macro@SPI_FIFOSTAT_TXEMPTY", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_TXEMPTY", - "location": { - "column": "9", - "line": "5349", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_TXEMPTY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@357593@macro@SPI_FIFOSTAT_TXNOTFULL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_TXNOTFULL_MASK", - "location": { - "column": "9", - "line": "5350", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_TXNOTFULL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@357651@macro@SPI_FIFOSTAT_TXNOTFULL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_TXNOTFULL_SHIFT", - "location": { - "column": "9", - "line": "5351", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_TXNOTFULL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@357706@macro@SPI_FIFOSTAT_TXNOTFULL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_TXNOTFULL", - "location": { - "column": "9", - "line": "5352", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_TXNOTFULL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@357850@macro@SPI_FIFOSTAT_RXNOTEMPTY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_RXNOTEMPTY_MASK", - "location": { - "column": "9", - "line": "5353", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_RXNOTEMPTY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@357908@macro@SPI_FIFOSTAT_RXNOTEMPTY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_RXNOTEMPTY_SHIFT", - "location": { - "column": "9", - "line": "5354", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_RXNOTEMPTY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@357963@macro@SPI_FIFOSTAT_RXNOTEMPTY", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_RXNOTEMPTY", - "location": { - "column": "9", - "line": "5355", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_RXNOTEMPTY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@358109@macro@SPI_FIFOSTAT_RXFULL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_RXFULL_MASK", - "location": { - "column": "9", - "line": "5356", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_RXFULL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@358167@macro@SPI_FIFOSTAT_RXFULL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_RXFULL_SHIFT", - "location": { - "column": "9", - "line": "5357", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_RXFULL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@358222@macro@SPI_FIFOSTAT_RXFULL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_RXFULL", - "location": { - "column": "9", - "line": "5358", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_RXFULL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@358360@macro@SPI_FIFOSTAT_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_TXLVL_MASK", - "location": { - "column": "9", - "line": "5359", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@358420@macro@SPI_FIFOSTAT_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "5360", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@358475@macro@SPI_FIFOSTAT_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_TXLVL", - "location": { - "column": "9", - "line": "5361", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@358611@macro@SPI_FIFOSTAT_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_RXLVL_MASK", - "location": { - "column": "9", - "line": "5362", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@358673@macro@SPI_FIFOSTAT_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "5363", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@358729@macro@SPI_FIFOSTAT_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOSTAT_RXLVL", - "location": { - "column": "9", - "line": "5364", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOSTAT_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@358967@macro@SPI_FIFOTRIG_TXLVLENA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOTRIG_TXLVLENA_MASK", - "location": { - "column": "9", - "line": "5369", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOTRIG_TXLVLENA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@359024@macro@SPI_FIFOTRIG_TXLVLENA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOTRIG_TXLVLENA_SHIFT", - "location": { - "column": "9", - "line": "5370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOTRIG_TXLVLENA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@359448@macro@SPI_FIFOTRIG_TXLVLENA", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOTRIG_TXLVLENA", - "location": { - "column": "9", - "line": "5375", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOTRIG_TXLVLENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@359590@macro@SPI_FIFOTRIG_RXLVLENA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOTRIG_RXLVLENA_MASK", - "location": { - "column": "9", - "line": "5376", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOTRIG_RXLVLENA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@359647@macro@SPI_FIFOTRIG_RXLVLENA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOTRIG_RXLVLENA_SHIFT", - "location": { - "column": "9", - "line": "5377", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOTRIG_RXLVLENA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@360068@macro@SPI_FIFOTRIG_RXLVLENA", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOTRIG_RXLVLENA", - "location": { - "column": "9", - "line": "5382", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOTRIG_RXLVLENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@360210@macro@SPI_FIFOTRIG_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOTRIG_TXLVL_MASK", - "location": { - "column": "9", - "line": "5383", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOTRIG_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@360269@macro@SPI_FIFOTRIG_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOTRIG_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "5384", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOTRIG_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@360324@macro@SPI_FIFOTRIG_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOTRIG_TXLVL", - "location": { - "column": "9", - "line": "5385", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOTRIG_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@360460@macro@SPI_FIFOTRIG_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOTRIG_RXLVL_MASK", - "location": { - "column": "9", - "line": "5386", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOTRIG_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@360521@macro@SPI_FIFOTRIG_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOTRIG_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "5387", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOTRIG_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@360577@macro@SPI_FIFOTRIG_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOTRIG_RXLVL", - "location": { - "column": "9", - "line": "5388", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOTRIG_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@360820@macro@SPI_FIFOINTENSET_TXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENSET_TXERR_MASK", - "location": { - "column": "9", - "line": "5393", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENSET_TXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@360877@macro@SPI_FIFOINTENSET_TXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENSET_TXERR_SHIFT", - "location": { - "column": "9", - "line": "5394", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENSET_TXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@361203@macro@SPI_FIFOINTENSET_TXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENSET_TXERR", - "location": { - "column": "9", - "line": "5399", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENSET_TXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@361347@macro@SPI_FIFOINTENSET_RXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENSET_RXERR_MASK", - "location": { - "column": "9", - "line": "5400", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENSET_RXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@361404@macro@SPI_FIFOINTENSET_RXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENSET_RXERR_SHIFT", - "location": { - "column": "9", - "line": "5401", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENSET_RXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@361727@macro@SPI_FIFOINTENSET_RXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENSET_RXERR", - "location": { - "column": "9", - "line": "5406", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENSET_RXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@361871@macro@SPI_FIFOINTENSET_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENSET_TXLVL_MASK", - "location": { - "column": "9", - "line": "5407", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENSET_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@361928@macro@SPI_FIFOINTENSET_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENSET_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "5408", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENSET_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@362381@macro@SPI_FIFOINTENSET_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENSET_TXLVL", - "location": { - "column": "9", - "line": "5413", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENSET_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@362525@macro@SPI_FIFOINTENSET_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENSET_RXLVL_MASK", - "location": { - "column": "9", - "line": "5414", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENSET_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@362582@macro@SPI_FIFOINTENSET_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENSET_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "5415", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENSET_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@363043@macro@SPI_FIFOINTENSET_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENSET_RXLVL", - "location": { - "column": "9", - "line": "5420", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENSET_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@363297@macro@SPI_FIFOINTENCLR_TXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENCLR_TXERR_MASK", - "location": { - "column": "9", - "line": "5425", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENCLR_TXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@363354@macro@SPI_FIFOINTENCLR_TXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENCLR_TXERR_SHIFT", - "location": { - "column": "9", - "line": "5426", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENCLR_TXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@363409@macro@SPI_FIFOINTENCLR_TXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENCLR_TXERR", - "location": { - "column": "9", - "line": "5427", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENCLR_TXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@363553@macro@SPI_FIFOINTENCLR_RXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENCLR_RXERR_MASK", - "location": { - "column": "9", - "line": "5428", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENCLR_RXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@363610@macro@SPI_FIFOINTENCLR_RXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENCLR_RXERR_SHIFT", - "location": { - "column": "9", - "line": "5429", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENCLR_RXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@363665@macro@SPI_FIFOINTENCLR_RXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENCLR_RXERR", - "location": { - "column": "9", - "line": "5430", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENCLR_RXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@363809@macro@SPI_FIFOINTENCLR_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENCLR_TXLVL_MASK", - "location": { - "column": "9", - "line": "5431", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENCLR_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@363866@macro@SPI_FIFOINTENCLR_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENCLR_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "5432", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENCLR_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@363921@macro@SPI_FIFOINTENCLR_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENCLR_TXLVL", - "location": { - "column": "9", - "line": "5433", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENCLR_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@364065@macro@SPI_FIFOINTENCLR_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENCLR_RXLVL_MASK", - "location": { - "column": "9", - "line": "5434", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENCLR_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@364122@macro@SPI_FIFOINTENCLR_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENCLR_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "5435", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENCLR_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@364177@macro@SPI_FIFOINTENCLR_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTENCLR_RXLVL", - "location": { - "column": "9", - "line": "5436", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTENCLR_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@364405@macro@SPI_FIFOINTSTAT_TXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_TXERR_MASK", - "location": { - "column": "9", - "line": "5441", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_TXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@364462@macro@SPI_FIFOINTSTAT_TXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_TXERR_SHIFT", - "location": { - "column": "9", - "line": "5442", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_TXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@364517@macro@SPI_FIFOINTSTAT_TXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_TXERR", - "location": { - "column": "9", - "line": "5443", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_TXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@364659@macro@SPI_FIFOINTSTAT_RXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_RXERR_MASK", - "location": { - "column": "9", - "line": "5444", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_RXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@364716@macro@SPI_FIFOINTSTAT_RXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_RXERR_SHIFT", - "location": { - "column": "9", - "line": "5445", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_RXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@364771@macro@SPI_FIFOINTSTAT_RXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_RXERR", - "location": { - "column": "9", - "line": "5446", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_RXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@364913@macro@SPI_FIFOINTSTAT_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_TXLVL_MASK", - "location": { - "column": "9", - "line": "5447", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@364970@macro@SPI_FIFOINTSTAT_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "5448", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@365025@macro@SPI_FIFOINTSTAT_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_TXLVL", - "location": { - "column": "9", - "line": "5449", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@365167@macro@SPI_FIFOINTSTAT_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_RXLVL_MASK", - "location": { - "column": "9", - "line": "5450", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@365224@macro@SPI_FIFOINTSTAT_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "5451", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@365279@macro@SPI_FIFOINTSTAT_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_RXLVL", - "location": { - "column": "9", - "line": "5452", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@365421@macro@SPI_FIFOINTSTAT_PERINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_PERINT_MASK", - "location": { - "column": "9", - "line": "5453", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_PERINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@365479@macro@SPI_FIFOINTSTAT_PERINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_PERINT_SHIFT", - "location": { - "column": "9", - "line": "5454", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_PERINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@365534@macro@SPI_FIFOINTSTAT_PERINT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOINTSTAT_PERINT", - "location": { - "column": "9", - "line": "5455", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOINTSTAT_PERINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@365742@macro@SPI_FIFOWR_TXDATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXDATA_MASK", - "location": { - "column": "9", - "line": "5460", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXDATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@365802@macro@SPI_FIFOWR_TXDATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXDATA_SHIFT", - "location": { - "column": "9", - "line": "5461", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXDATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@365857@macro@SPI_FIFOWR_TXDATA", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXDATA", - "location": { - "column": "9", - "line": "5462", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXDATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@365991@macro@SPI_FIFOWR_TXSSEL0_N_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXSSEL0_N_MASK", - "location": { - "column": "9", - "line": "5463", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXSSEL0_N_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@366052@macro@SPI_FIFOWR_TXSSEL0_N_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXSSEL0_N_SHIFT", - "location": { - "column": "9", - "line": "5464", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXSSEL0_N_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@366298@macro@SPI_FIFOWR_TXSSEL0_N", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXSSEL0_N", - "location": { - "column": "9", - "line": "5469", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXSSEL0_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@366438@macro@SPI_FIFOWR_TXSSEL1_N_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXSSEL1_N_MASK", - "location": { - "column": "9", - "line": "5470", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXSSEL1_N_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@366499@macro@SPI_FIFOWR_TXSSEL1_N_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXSSEL1_N_SHIFT", - "location": { - "column": "9", - "line": "5471", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXSSEL1_N_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@366745@macro@SPI_FIFOWR_TXSSEL1_N", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXSSEL1_N", - "location": { - "column": "9", - "line": "5476", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXSSEL1_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@366885@macro@SPI_FIFOWR_TXSSEL2_N_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXSSEL2_N_MASK", - "location": { - "column": "9", - "line": "5477", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXSSEL2_N_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@366946@macro@SPI_FIFOWR_TXSSEL2_N_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXSSEL2_N_SHIFT", - "location": { - "column": "9", - "line": "5478", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXSSEL2_N_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@367192@macro@SPI_FIFOWR_TXSSEL2_N", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXSSEL2_N", - "location": { - "column": "9", - "line": "5483", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXSSEL2_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@367332@macro@SPI_FIFOWR_TXSSEL3_N_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXSSEL3_N_MASK", - "location": { - "column": "9", - "line": "5484", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXSSEL3_N_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@367393@macro@SPI_FIFOWR_TXSSEL3_N_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXSSEL3_N_SHIFT", - "location": { - "column": "9", - "line": "5485", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXSSEL3_N_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@367639@macro@SPI_FIFOWR_TXSSEL3_N", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_TXSSEL3_N", - "location": { - "column": "9", - "line": "5490", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_TXSSEL3_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@367779@macro@SPI_FIFOWR_EOT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_EOT_MASK", - "location": { - "column": "9", - "line": "5491", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_EOT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@367841@macro@SPI_FIFOWR_EOT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_EOT_SHIFT", - "location": { - "column": "9", - "line": "5492", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_EOT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@368372@macro@SPI_FIFOWR_EOT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_EOT", - "location": { - "column": "9", - "line": "5497", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_EOT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@368500@macro@SPI_FIFOWR_EOF_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_EOF_MASK", - "location": { - "column": "9", - "line": "5498", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_EOF_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@368562@macro@SPI_FIFOWR_EOF_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_EOF_SHIFT", - "location": { - "column": "9", - "line": "5499", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_EOF_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@369167@macro@SPI_FIFOWR_EOF", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_EOF", - "location": { - "column": "9", - "line": "5504", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_EOF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@369295@macro@SPI_FIFOWR_RXIGNORE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_RXIGNORE_MASK", - "location": { - "column": "9", - "line": "5505", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_RXIGNORE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@369357@macro@SPI_FIFOWR_RXIGNORE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_RXIGNORE_SHIFT", - "location": { - "column": "9", - "line": "5506", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_RXIGNORE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@370050@macro@SPI_FIFOWR_RXIGNORE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_RXIGNORE", - "location": { - "column": "9", - "line": "5511", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_RXIGNORE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@370188@macro@SPI_FIFOWR_LEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_LEN_MASK", - "location": { - "column": "9", - "line": "5512", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_LEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@370251@macro@SPI_FIFOWR_LEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_LEN_SHIFT", - "location": { - "column": "9", - "line": "5513", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_LEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@370307@macro@SPI_FIFOWR_LEN", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFOWR_LEN", - "location": { - "column": "9", - "line": "5514", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFOWR_LEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@370498@macro@SPI_FIFORD_RXDATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXDATA_MASK", - "location": { - "column": "9", - "line": "5519", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXDATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@370558@macro@SPI_FIFORD_RXDATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXDATA_SHIFT", - "location": { - "column": "9", - "line": "5520", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXDATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@370613@macro@SPI_FIFORD_RXDATA", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXDATA", - "location": { - "column": "9", - "line": "5521", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXDATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@370747@macro@SPI_FIFORD_RXSSEL0_N_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXSSEL0_N_MASK", - "location": { - "column": "9", - "line": "5522", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXSSEL0_N_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@370808@macro@SPI_FIFORD_RXSSEL0_N_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXSSEL0_N_SHIFT", - "location": { - "column": "9", - "line": "5523", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXSSEL0_N_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@370864@macro@SPI_FIFORD_RXSSEL0_N", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXSSEL0_N", - "location": { - "column": "9", - "line": "5524", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXSSEL0_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@371004@macro@SPI_FIFORD_RXSSEL1_N_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXSSEL1_N_MASK", - "location": { - "column": "9", - "line": "5525", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXSSEL1_N_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@371065@macro@SPI_FIFORD_RXSSEL1_N_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXSSEL1_N_SHIFT", - "location": { - "column": "9", - "line": "5526", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXSSEL1_N_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@371121@macro@SPI_FIFORD_RXSSEL1_N", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXSSEL1_N", - "location": { - "column": "9", - "line": "5527", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXSSEL1_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@371261@macro@SPI_FIFORD_RXSSEL2_N_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXSSEL2_N_MASK", - "location": { - "column": "9", - "line": "5528", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXSSEL2_N_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@371322@macro@SPI_FIFORD_RXSSEL2_N_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXSSEL2_N_SHIFT", - "location": { - "column": "9", - "line": "5529", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXSSEL2_N_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@371378@macro@SPI_FIFORD_RXSSEL2_N", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXSSEL2_N", - "location": { - "column": "9", - "line": "5530", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXSSEL2_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@371518@macro@SPI_FIFORD_RXSSEL3_N_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXSSEL3_N_MASK", - "location": { - "column": "9", - "line": "5531", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXSSEL3_N_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@371579@macro@SPI_FIFORD_RXSSEL3_N_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXSSEL3_N_SHIFT", - "location": { - "column": "9", - "line": "5532", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXSSEL3_N_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@371635@macro@SPI_FIFORD_RXSSEL3_N", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_RXSSEL3_N", - "location": { - "column": "9", - "line": "5533", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_RXSSEL3_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@371775@macro@SPI_FIFORD_SOT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_SOT_MASK", - "location": { - "column": "9", - "line": "5534", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_SOT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@371837@macro@SPI_FIFORD_SOT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_SOT_SHIFT", - "location": { - "column": "9", - "line": "5535", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_SOT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@371893@macro@SPI_FIFORD_SOT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORD_SOT", - "location": { - "column": "9", - "line": "5536", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORD_SOT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@372106@macro@SPI_FIFORDNOPOP_RXDATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXDATA_MASK", - "location": { - "column": "9", - "line": "5541", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXDATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@372166@macro@SPI_FIFORDNOPOP_RXDATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXDATA_SHIFT", - "location": { - "column": "9", - "line": "5542", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXDATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@372221@macro@SPI_FIFORDNOPOP_RXDATA", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXDATA", - "location": { - "column": "9", - "line": "5543", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXDATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@372365@macro@SPI_FIFORDNOPOP_RXSSEL0_N_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXSSEL0_N_MASK", - "location": { - "column": "9", - "line": "5544", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXSSEL0_N_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@372426@macro@SPI_FIFORDNOPOP_RXSSEL0_N_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXSSEL0_N_SHIFT", - "location": { - "column": "9", - "line": "5545", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXSSEL0_N_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@372482@macro@SPI_FIFORDNOPOP_RXSSEL0_N", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXSSEL0_N", - "location": { - "column": "9", - "line": "5546", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXSSEL0_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@372632@macro@SPI_FIFORDNOPOP_RXSSEL1_N_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXSSEL1_N_MASK", - "location": { - "column": "9", - "line": "5547", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXSSEL1_N_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@372693@macro@SPI_FIFORDNOPOP_RXSSEL1_N_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXSSEL1_N_SHIFT", - "location": { - "column": "9", - "line": "5548", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXSSEL1_N_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@372749@macro@SPI_FIFORDNOPOP_RXSSEL1_N", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXSSEL1_N", - "location": { - "column": "9", - "line": "5549", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXSSEL1_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@372899@macro@SPI_FIFORDNOPOP_RXSSEL2_N_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXSSEL2_N_MASK", - "location": { - "column": "9", - "line": "5550", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXSSEL2_N_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@372960@macro@SPI_FIFORDNOPOP_RXSSEL2_N_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXSSEL2_N_SHIFT", - "location": { - "column": "9", - "line": "5551", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXSSEL2_N_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@373016@macro@SPI_FIFORDNOPOP_RXSSEL2_N", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXSSEL2_N", - "location": { - "column": "9", - "line": "5552", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXSSEL2_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@373166@macro@SPI_FIFORDNOPOP_RXSSEL3_N_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXSSEL3_N_MASK", - "location": { - "column": "9", - "line": "5553", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXSSEL3_N_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@373227@macro@SPI_FIFORDNOPOP_RXSSEL3_N_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXSSEL3_N_SHIFT", - "location": { - "column": "9", - "line": "5554", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXSSEL3_N_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@373283@macro@SPI_FIFORDNOPOP_RXSSEL3_N", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_RXSSEL3_N", - "location": { - "column": "9", - "line": "5555", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_RXSSEL3_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@373433@macro@SPI_FIFORDNOPOP_SOT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_SOT_MASK", - "location": { - "column": "9", - "line": "5556", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_SOT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@373495@macro@SPI_FIFORDNOPOP_SOT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_SOT_SHIFT", - "location": { - "column": "9", - "line": "5557", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_SOT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@373551@macro@SPI_FIFORDNOPOP_SOT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_FIFORDNOPOP_SOT", - "location": { - "column": "9", - "line": "5558", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_FIFORDNOPOP_SOT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@373768@macro@SPI_ID_APERTURE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_ID_APERTURE_MASK", - "location": { - "column": "9", - "line": "5563", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_ID_APERTURE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@373826@macro@SPI_ID_APERTURE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_ID_APERTURE_SHIFT", - "location": { - "column": "9", - "line": "5564", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_ID_APERTURE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@373881@macro@SPI_ID_APERTURE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_ID_APERTURE", - "location": { - "column": "9", - "line": "5565", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_ID_APERTURE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@374011@macro@SPI_ID_MINOR_REV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_ID_MINOR_REV_MASK", - "location": { - "column": "9", - "line": "5566", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_ID_MINOR_REV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@374070@macro@SPI_ID_MINOR_REV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_ID_MINOR_REV_SHIFT", - "location": { - "column": "9", - "line": "5567", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_ID_MINOR_REV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@374125@macro@SPI_ID_MINOR_REV", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_ID_MINOR_REV", - "location": { - "column": "9", - "line": "5568", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_ID_MINOR_REV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@374257@macro@SPI_ID_MAJOR_REV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_ID_MAJOR_REV_MASK", - "location": { - "column": "9", - "line": "5569", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_ID_MAJOR_REV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@374317@macro@SPI_ID_MAJOR_REV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_ID_MAJOR_REV_SHIFT", - "location": { - "column": "9", - "line": "5570", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_ID_MAJOR_REV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@374373@macro@SPI_ID_MAJOR_REV", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_ID_MAJOR_REV", - "location": { - "column": "9", - "line": "5571", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_ID_MAJOR_REV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@374505@macro@SPI_ID_ID_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_ID_ID_MASK", - "location": { - "column": "9", - "line": "5572", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_ID_ID_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@374569@macro@SPI_ID_ID_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_ID_ID_SHIFT", - "location": { - "column": "9", - "line": "5573", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_ID_ID_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@374625@macro@SPI_ID_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_ID_ID", - "location": { - "column": "9", - "line": "5574", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_ID_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@374902@macro@SPI0_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI0_BASE", - "location": { - "column": "9", - "line": "5585", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI0_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@375003@macro@SPI0", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI0", - "location": { - "column": "9", - "line": "5587", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@375114@macro@SPI1_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI1_BASE", - "location": { - "column": "9", - "line": "5589", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI1_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@375215@macro@SPI1", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI1", - "location": { - "column": "9", - "line": "5591", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@375326@macro@SPI2_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI2_BASE", - "location": { - "column": "9", - "line": "5593", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI2_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@375427@macro@SPI2", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI2", - "location": { - "column": "9", - "line": "5595", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@375538@macro@SPI3_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI3_BASE", - "location": { - "column": "9", - "line": "5597", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI3_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@375639@macro@SPI3", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI3", - "location": { - "column": "9", - "line": "5599", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@375750@macro@SPI4_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI4_BASE", - "location": { - "column": "9", - "line": "5601", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI4_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@375851@macro@SPI4", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI4", - "location": { - "column": "9", - "line": "5603", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@375962@macro@SPI5_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI5_BASE", - "location": { - "column": "9", - "line": "5605", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI5_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@376063@macro@SPI5", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI5", - "location": { - "column": "9", - "line": "5607", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@376174@macro@SPI6_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI6_BASE", - "location": { - "column": "9", - "line": "5609", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI6_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@376275@macro@SPI6", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI6", - "location": { - "column": "9", - "line": "5611", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@376386@macro@SPI7_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI7_BASE", - "location": { - "column": "9", - "line": "5613", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI7_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@376487@macro@SPI7", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI7", - "location": { - "column": "9", - "line": "5615", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@376620@macro@SPI_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_BASE_ADDRS", - "location": { - "column": "9", - "line": "5617", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@376819@macro@SPI_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_BASE_PTRS", - "location": { - "column": "9", - "line": "5619", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@376974@macro@SPI_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "SPI_IRQS", - "location": { - "column": "9", - "line": "5621", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SPI_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@SYSCON_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "5638", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "5639", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@AHBMATPRIO", - "What": "FieldDecl", - "defdec": "Def", - "display": "AHBMATPRIO", - "location": { - "column": "17", - "line": "5640", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "AHBMATPRIO", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_1", - "location": { - "column": "16", - "line": "5641", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@SYSTCKCAL", - "What": "FieldDecl", - "defdec": "Def", - "display": "SYSTCKCAL", - "location": { - "column": "17", - "line": "5642", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSTCKCAL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_2", - "location": { - "column": "16", - "line": "5643", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_2", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@NMISRC", - "What": "FieldDecl", - "defdec": "Def", - "display": "NMISRC", - "location": { - "column": "17", - "line": "5644", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "NMISRC", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@ASYNCAPBCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "ASYNCAPBCTRL", - "location": { - "column": "17", - "line": "5645", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ASYNCAPBCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_3", - "location": { - "column": "16", - "line": "5646", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_3", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@PIOPORCAP", - "What": "FieldDecl", - "defdec": "Def", - "display": "PIOPORCAP", - "location": { - "column": "17", - "line": "5647", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PIOPORCAP", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_4", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_4", - "location": { - "column": "16", - "line": "5648", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_4", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@PIORESCAP", - "What": "FieldDecl", - "defdec": "Def", - "display": "PIORESCAP", - "location": { - "column": "17", - "line": "5649", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PIORESCAP", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_5", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_5", - "location": { - "column": "16", - "line": "5650", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_5", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@PRESETCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "PRESETCTRL", - "location": { - "column": "17", - "line": "5651", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PRESETCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_6", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_6", - "location": { - "column": "16", - "line": "5652", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_6", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@PRESETCTRLSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "PRESETCTRLSET", - "location": { - "column": "17", - "line": "5653", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PRESETCTRLSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_7", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_7", - "location": { - "column": "16", - "line": "5654", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_7", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@PRESETCTRLCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "PRESETCTRLCLR", - "location": { - "column": "17", - "line": "5655", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PRESETCTRLCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_8", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_8", - "location": { - "column": "16", - "line": "5656", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_8", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@SYSRSTSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "SYSRSTSTAT", - "location": { - "column": "17", - "line": "5657", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSRSTSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_9", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_9", - "location": { - "column": "16", - "line": "5658", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_9", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@AHBCLKCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "AHBCLKCTRL", - "location": { - "column": "17", - "line": "5659", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "AHBCLKCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_10", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_10", - "location": { - "column": "16", - "line": "5660", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_10", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@AHBCLKCTRLSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "AHBCLKCTRLSET", - "location": { - "column": "17", - "line": "5661", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "AHBCLKCTRLSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_11", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_11", - "location": { - "column": "16", - "line": "5662", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_11", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@AHBCLKCTRLCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "AHBCLKCTRLCLR", - "location": { - "column": "17", - "line": "5663", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "AHBCLKCTRLCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_12", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_12", - "location": { - "column": "16", - "line": "5664", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_12", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@MAINCLKSELA", - "What": "FieldDecl", - "defdec": "Def", - "display": "MAINCLKSELA", - "location": { - "column": "17", - "line": "5665", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MAINCLKSELA", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@MAINCLKSELB", - "What": "FieldDecl", - "defdec": "Def", - "display": "MAINCLKSELB", - "location": { - "column": "17", - "line": "5666", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MAINCLKSELB", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@CLKOUTSELA", - "What": "FieldDecl", - "defdec": "Def", - "display": "CLKOUTSELA", - "location": { - "column": "17", - "line": "5667", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CLKOUTSELA", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_13", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_13", - "location": { - "column": "16", - "line": "5668", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_13", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@SYSPLLCLKSEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "SYSPLLCLKSEL", - "location": { - "column": "17", - "line": "5669", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSPLLCLKSEL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_14", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_14", - "location": { - "column": "16", - "line": "5670", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_14", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@ADCCLKSEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "ADCCLKSEL", - "location": { - "column": "17", - "line": "5671", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADCCLKSEL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@USBCLKSEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "USBCLKSEL", - "location": { - "column": "17", - "line": "5672", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USBCLKSEL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_15", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_15", - "location": { - "column": "16", - "line": "5673", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_15", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@FXCOMCLKSEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "FXCOMCLKSEL", - "location": { - "column": "17", - "line": "5674", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FXCOMCLKSEL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_16", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_16", - "location": { - "column": "16", - "line": "5675", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_16", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@MCLKCLKSEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "MCLKCLKSEL", - "location": { - "column": "17", - "line": "5676", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MCLKCLKSEL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_17", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_17", - "location": { - "column": "16", - "line": "5677", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_17", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@FRGCLKSEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "FRGCLKSEL", - "location": { - "column": "17", - "line": "5678", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FRGCLKSEL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_18", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_18", - "location": { - "column": "16", - "line": "5679", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_18", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@SYSTICKCLKDIV", - "What": "FieldDecl", - "defdec": "Def", - "display": "SYSTICKCLKDIV", - "location": { - "column": "17", - "line": "5680", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSTICKCLKDIV", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_19", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_19", - "location": { - "column": "16", - "line": "5681", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_19", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@AHBCLKDIV", - "What": "FieldDecl", - "defdec": "Def", - "display": "AHBCLKDIV", - "location": { - "column": "17", - "line": "5682", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "AHBCLKDIV", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@CLKOUTDIV", - "What": "FieldDecl", - "defdec": "Def", - "display": "CLKOUTDIV", - "location": { - "column": "17", - "line": "5683", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CLKOUTDIV", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_20", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_20", - "location": { - "column": "16", - "line": "5684", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_20", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@ADCCLKDIV", - "What": "FieldDecl", - "defdec": "Def", - "display": "ADCCLKDIV", - "location": { - "column": "17", - "line": "5685", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADCCLKDIV", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@USBCLKDIV", - "What": "FieldDecl", - "defdec": "Def", - "display": "USBCLKDIV", - "location": { - "column": "17", - "line": "5686", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USBCLKDIV", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_21", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_21", - "location": { - "column": "16", - "line": "5687", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_21", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@FRGCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "FRGCTRL", - "location": { - "column": "17", - "line": "5688", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FRGCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_22", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_22", - "location": { - "column": "16", - "line": "5689", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_22", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@MCLKDIV", - "What": "FieldDecl", - "defdec": "Def", - "display": "MCLKDIV", - "location": { - "column": "17", - "line": "5690", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MCLKDIV", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_23", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_23", - "location": { - "column": "16", - "line": "5691", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_23", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@FLASHCFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "FLASHCFG", - "location": { - "column": "17", - "line": "5692", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FLASHCFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_24", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_24", - "location": { - "column": "16", - "line": "5693", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_24", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@USBCLKCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "USBCLKCTRL", - "location": { - "column": "17", - "line": "5694", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USBCLKCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@USBCLKSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "USBCLKSTAT", - "location": { - "column": "17", - "line": "5695", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USBCLKSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_25", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_25", - "location": { - "column": "16", - "line": "5696", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_25", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@FREQMECTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "FREQMECTRL", - "location": { - "column": "17", - "line": "5697", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FREQMECTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_26", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_26", - "location": { - "column": "16", - "line": "5698", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_26", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@MCLKIO", - "What": "FieldDecl", - "defdec": "Def", - "display": "MCLKIO", - "location": { - "column": "17", - "line": "5699", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MCLKIO", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_27", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_27", - "location": { - "column": "16", - "line": "5700", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_27", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@FROCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "FROCTRL", - "location": { - "column": "17", - "line": "5701", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FROCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_28", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_28", - "location": { - "column": "16", - "line": "5702", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_28", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@WDTOSCCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "WDTOSCCTRL", - "location": { - "column": "17", - "line": "5703", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WDTOSCCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RTCOSCCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "RTCOSCCTRL", - "location": { - "column": "17", - "line": "5704", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RTCOSCCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_29", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_29", - "location": { - "column": "16", - "line": "5705", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_29", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@SYSPLLCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "SYSPLLCTRL", - "location": { - "column": "17", - "line": "5706", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSPLLCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@SYSPLLSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "SYSPLLSTAT", - "location": { - "column": "17", - "line": "5707", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSPLLSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@SYSPLLNDEC", - "What": "FieldDecl", - "defdec": "Def", - "display": "SYSPLLNDEC", - "location": { - "column": "17", - "line": "5708", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSPLLNDEC", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@SYSPLLPDEC", - "What": "FieldDecl", - "defdec": "Def", - "display": "SYSPLLPDEC", - "location": { - "column": "17", - "line": "5709", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSPLLPDEC", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@SYSPLLSSCTRL0", - "What": "FieldDecl", - "defdec": "Def", - "display": "SYSPLLSSCTRL0", - "location": { - "column": "17", - "line": "5710", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSPLLSSCTRL0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@SYSPLLSSCTRL1", - "What": "FieldDecl", - "defdec": "Def", - "display": "SYSPLLSSCTRL1", - "location": { - "column": "17", - "line": "5711", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSPLLSSCTRL1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_30", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_30", - "location": { - "column": "16", - "line": "5712", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_30", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@PDSLEEPCFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "PDSLEEPCFG", - "location": { - "column": "17", - "line": "5713", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PDSLEEPCFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_31", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_31", - "location": { - "column": "16", - "line": "5714", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_31", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@PDRUNCFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "PDRUNCFG", - "location": { - "column": "17", - "line": "5715", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PDRUNCFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_32", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_32", - "location": { - "column": "16", - "line": "5716", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_32", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@PDRUNCFGSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "PDRUNCFGSET", - "location": { - "column": "17", - "line": "5717", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PDRUNCFGSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_33", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_33", - "location": { - "column": "16", - "line": "5718", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_33", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@PDRUNCFGCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "PDRUNCFGCLR", - "location": { - "column": "17", - "line": "5719", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "PDRUNCFGCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_34", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_34", - "location": { - "column": "16", - "line": "5720", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_34", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@STARTER", - "What": "FieldDecl", - "defdec": "Def", - "display": "STARTER", - "location": { - "column": "17", - "line": "5721", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "STARTER", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_35", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_35", - "location": { - "column": "16", - "line": "5722", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_35", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@STARTERSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "STARTERSET", - "location": { - "column": "17", - "line": "5723", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "STARTERSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_36", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_36", - "location": { - "column": "16", - "line": "5724", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_36", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@STARTERCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "STARTERCLR", - "location": { - "column": "17", - "line": "5725", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "STARTERCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_37", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_37", - "location": { - "column": "16", - "line": "5726", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_37", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@HWWAKE", - "What": "FieldDecl", - "defdec": "Def", - "display": "HWWAKE", - "location": { - "column": "17", - "line": "5727", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "HWWAKE", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_38", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_38", - "location": { - "column": "16", - "line": "5728", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_38", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@JTAGIDCODE", - "What": "FieldDecl", - "defdec": "Def", - "display": "JTAGIDCODE", - "location": { - "column": "17", - "line": "5729", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "JTAGIDCODE", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@DEVICE_ID0", - "What": "FieldDecl", - "defdec": "Def", - "display": "DEVICE_ID0", - "location": { - "column": "17", - "line": "5730", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DEVICE_ID0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@DEVICE_ID1", - "What": "FieldDecl", - "defdec": "Def", - "display": "DEVICE_ID1", - "location": { - "column": "17", - "line": "5731", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DEVICE_ID1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@RESERVED_39", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_39", - "location": { - "column": "16", - "line": "5732", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_39", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - }, - { - "ID": "c:@SA@SYSCON_Type@FI@BODCTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "BODCTRL", - "location": { - "column": "17", - "line": "5733", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "BODCTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_5638_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@SYSCON_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct SYSCON_Type", - "location": { - "column": "3", - "line": "5734", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@385190@macro@SYSCON_AHBMATPRIO_PRI_ICODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_ICODE_MASK", - "location": { - "column": "9", - "line": "5747", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_ICODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@385247@macro@SYSCON_AHBMATPRIO_PRI_ICODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_ICODE_SHIFT", - "location": { - "column": "9", - "line": "5748", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_ICODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@385302@macro@SYSCON_AHBMATPRIO_PRI_ICODE", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_ICODE", - "location": { - "column": "9", - "line": "5749", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_ICODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@385456@macro@SYSCON_AHBMATPRIO_PRI_DCODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_DCODE_MASK", - "location": { - "column": "9", - "line": "5750", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_DCODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@385513@macro@SYSCON_AHBMATPRIO_PRI_DCODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_DCODE_SHIFT", - "location": { - "column": "9", - "line": "5751", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_DCODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@385568@macro@SYSCON_AHBMATPRIO_PRI_DCODE", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_DCODE", - "location": { - "column": "9", - "line": "5752", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_DCODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@385722@macro@SYSCON_AHBMATPRIO_PRI_SYS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_SYS_MASK", - "location": { - "column": "9", - "line": "5753", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_SYS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@385780@macro@SYSCON_AHBMATPRIO_PRI_SYS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_SYS_SHIFT", - "location": { - "column": "9", - "line": "5754", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_SYS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@385835@macro@SYSCON_AHBMATPRIO_PRI_SYS", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_SYS", - "location": { - "column": "9", - "line": "5755", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_SYS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@385985@macro@SYSCON_AHBMATPRIO_PRI_M0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_M0_MASK", - "location": { - "column": "9", - "line": "5756", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_M0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@386043@macro@SYSCON_AHBMATPRIO_PRI_M0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_M0_SHIFT", - "location": { - "column": "9", - "line": "5757", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_M0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@386098@macro@SYSCON_AHBMATPRIO_PRI_M0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_M0", - "location": { - "column": "9", - "line": "5758", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_M0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@386246@macro@SYSCON_AHBMATPRIO_PRI_USB_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_USB_MASK", - "location": { - "column": "9", - "line": "5759", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_USB_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@386305@macro@SYSCON_AHBMATPRIO_PRI_USB_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_USB_SHIFT", - "location": { - "column": "9", - "line": "5760", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_USB_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@386360@macro@SYSCON_AHBMATPRIO_PRI_USB", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_USB", - "location": { - "column": "9", - "line": "5761", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_USB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@386510@macro@SYSCON_AHBMATPRIO_PRI_DMA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_DMA_MASK", - "location": { - "column": "9", - "line": "5762", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_DMA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@386569@macro@SYSCON_AHBMATPRIO_PRI_DMA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_DMA_SHIFT", - "location": { - "column": "9", - "line": "5763", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_DMA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@386625@macro@SYSCON_AHBMATPRIO_PRI_DMA", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBMATPRIO_PRI_DMA", - "location": { - "column": "9", - "line": "5764", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBMATPRIO_PRI_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@386857@macro@SYSCON_SYSTCKCAL_CAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSTCKCAL_CAL_MASK", - "location": { - "column": "9", - "line": "5769", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSTCKCAL_CAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@386919@macro@SYSCON_SYSTCKCAL_CAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSTCKCAL_CAL_SHIFT", - "location": { - "column": "9", - "line": "5770", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSTCKCAL_CAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@386974@macro@SYSCON_SYSTCKCAL_CAL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSTCKCAL_CAL", - "location": { - "column": "9", - "line": "5771", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSTCKCAL_CAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@387114@macro@SYSCON_SYSTCKCAL_SKEW_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSTCKCAL_SKEW_MASK", - "location": { - "column": "9", - "line": "5772", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSTCKCAL_SKEW_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@387177@macro@SYSCON_SYSTCKCAL_SKEW_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSTCKCAL_SKEW_SHIFT", - "location": { - "column": "9", - "line": "5773", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSTCKCAL_SKEW_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@387233@macro@SYSCON_SYSTCKCAL_SKEW", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSTCKCAL_SKEW", - "location": { - "column": "9", - "line": "5774", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSTCKCAL_SKEW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@387375@macro@SYSCON_SYSTCKCAL_NOREF_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSTCKCAL_NOREF_MASK", - "location": { - "column": "9", - "line": "5775", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSTCKCAL_NOREF_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@387438@macro@SYSCON_SYSTCKCAL_NOREF_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSTCKCAL_NOREF_SHIFT", - "location": { - "column": "9", - "line": "5776", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSTCKCAL_NOREF_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@387494@macro@SYSCON_SYSTCKCAL_NOREF", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSTCKCAL_NOREF", - "location": { - "column": "9", - "line": "5777", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSTCKCAL_NOREF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@387703@macro@SYSCON_NMISRC_IRQM4_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_NMISRC_IRQM4_MASK", - "location": { - "column": "9", - "line": "5782", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_NMISRC_IRQM4_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@387761@macro@SYSCON_NMISRC_IRQM4_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_NMISRC_IRQM4_SHIFT", - "location": { - "column": "9", - "line": "5783", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_NMISRC_IRQM4_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@387816@macro@SYSCON_NMISRC_IRQM4", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_NMISRC_IRQM4", - "location": { - "column": "9", - "line": "5784", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_NMISRC_IRQM4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@387954@macro@SYSCON_NMISRC_IRQM0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_NMISRC_IRQM0_MASK", - "location": { - "column": "9", - "line": "5785", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_NMISRC_IRQM0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@388014@macro@SYSCON_NMISRC_IRQM0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_NMISRC_IRQM0_SHIFT", - "location": { - "column": "9", - "line": "5786", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_NMISRC_IRQM0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@388069@macro@SYSCON_NMISRC_IRQM0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_NMISRC_IRQM0", - "location": { - "column": "9", - "line": "5787", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_NMISRC_IRQM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@388207@macro@SYSCON_NMISRC_NMIENM0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_NMISRC_NMIENM0_MASK", - "location": { - "column": "9", - "line": "5788", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_NMISRC_NMIENM0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@388271@macro@SYSCON_NMISRC_NMIENM0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_NMISRC_NMIENM0_SHIFT", - "location": { - "column": "9", - "line": "5789", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_NMISRC_NMIENM0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@388327@macro@SYSCON_NMISRC_NMIENM0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_NMISRC_NMIENM0", - "location": { - "column": "9", - "line": "5790", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_NMISRC_NMIENM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@388469@macro@SYSCON_NMISRC_NMIENM4_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_NMISRC_NMIENM4_MASK", - "location": { - "column": "9", - "line": "5791", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_NMISRC_NMIENM4_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@388533@macro@SYSCON_NMISRC_NMIENM4_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_NMISRC_NMIENM4_SHIFT", - "location": { - "column": "9", - "line": "5792", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_NMISRC_NMIENM4_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@388589@macro@SYSCON_NMISRC_NMIENM4", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_NMISRC_NMIENM4", - "location": { - "column": "9", - "line": "5793", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_NMISRC_NMIENM4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@388809@macro@SYSCON_ASYNCAPBCTRL_ENABLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_ASYNCAPBCTRL_ENABLE_MASK", - "location": { - "column": "9", - "line": "5798", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_ASYNCAPBCTRL_ENABLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@388866@macro@SYSCON_ASYNCAPBCTRL_ENABLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_ASYNCAPBCTRL_ENABLE_SHIFT", - "location": { - "column": "9", - "line": "5799", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_ASYNCAPBCTRL_ENABLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@389103@macro@SYSCON_ASYNCAPBCTRL_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_ASYNCAPBCTRL_ENABLE", - "location": { - "column": "9", - "line": "5804", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_ASYNCAPBCTRL_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@389334@macro@SYSCON_PIOPORCAP_PIOPORCAP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PIOPORCAP_PIOPORCAP_MASK", - "location": { - "column": "9", - "line": "5809", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PIOPORCAP_PIOPORCAP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@389398@macro@SYSCON_PIOPORCAP_PIOPORCAP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PIOPORCAP_PIOPORCAP_SHIFT", - "location": { - "column": "9", - "line": "5810", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PIOPORCAP_PIOPORCAP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@389453@macro@SYSCON_PIOPORCAP_PIOPORCAP", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PIOPORCAP_PIOPORCAP", - "location": { - "column": "9", - "line": "5811", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PIOPORCAP_PIOPORCAP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@389655@macro@SYSCON_PIOPORCAP_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PIOPORCAP_COUNT", - "location": { - "column": "9", - "line": "5815", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PIOPORCAP_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@389780@macro@SYSCON_PIORESCAP_PIORESCAP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PIORESCAP_PIORESCAP_MASK", - "location": { - "column": "9", - "line": "5819", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PIORESCAP_PIORESCAP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@389844@macro@SYSCON_PIORESCAP_PIORESCAP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PIORESCAP_PIORESCAP_SHIFT", - "location": { - "column": "9", - "line": "5820", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PIORESCAP_PIORESCAP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@389899@macro@SYSCON_PIORESCAP_PIORESCAP", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PIORESCAP_PIORESCAP", - "location": { - "column": "9", - "line": "5821", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PIORESCAP_PIORESCAP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@390101@macro@SYSCON_PIORESCAP_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PIORESCAP_COUNT", - "location": { - "column": "9", - "line": "5825", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PIORESCAP_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@390223@macro@SYSCON_PRESETCTRL_MRT0_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_MRT0_RST_MASK", - "location": { - "column": "9", - "line": "5829", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_MRT0_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@390280@macro@SYSCON_PRESETCTRL_MRT0_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_MRT0_RST_SHIFT", - "location": { - "column": "9", - "line": "5830", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_MRT0_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@390335@macro@SYSCON_PRESETCTRL_MRT0_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_MRT0_RST", - "location": { - "column": "9", - "line": "5831", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_MRT0_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@390487@macro@SYSCON_PRESETCTRL_SCT0_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_SCT0_RST_MASK", - "location": { - "column": "9", - "line": "5832", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_SCT0_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@390544@macro@SYSCON_PRESETCTRL_SCT0_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_SCT0_RST_SHIFT", - "location": { - "column": "9", - "line": "5833", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_SCT0_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@390599@macro@SYSCON_PRESETCTRL_SCT0_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_SCT0_RST", - "location": { - "column": "9", - "line": "5834", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_SCT0_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@390751@macro@SYSCON_PRESETCTRL_FLASH_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FLASH_RST_MASK", - "location": { - "column": "9", - "line": "5835", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FLASH_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@390809@macro@SYSCON_PRESETCTRL_FLASH_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FLASH_RST_SHIFT", - "location": { - "column": "9", - "line": "5836", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FLASH_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@390864@macro@SYSCON_PRESETCTRL_FLASH_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FLASH_RST", - "location": { - "column": "9", - "line": "5837", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FLASH_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@391018@macro@SYSCON_PRESETCTRL_FMC_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FMC_RST_MASK", - "location": { - "column": "9", - "line": "5838", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FMC_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@391077@macro@SYSCON_PRESETCTRL_FMC_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FMC_RST_SHIFT", - "location": { - "column": "9", - "line": "5839", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FMC_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@391132@macro@SYSCON_PRESETCTRL_FMC_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FMC_RST", - "location": { - "column": "9", - "line": "5840", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FMC_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@391282@macro@SYSCON_PRESETCTRL_UTICK0_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_UTICK0_RST_MASK", - "location": { - "column": "9", - "line": "5841", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_UTICK0_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@391341@macro@SYSCON_PRESETCTRL_UTICK0_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_UTICK0_RST_SHIFT", - "location": { - "column": "9", - "line": "5842", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_UTICK0_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@391397@macro@SYSCON_PRESETCTRL_UTICK0_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_UTICK0_RST", - "location": { - "column": "9", - "line": "5843", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_UTICK0_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@391553@macro@SYSCON_PRESETCTRL_FC0_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC0_RST_MASK", - "location": { - "column": "9", - "line": "5844", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC0_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@391612@macro@SYSCON_PRESETCTRL_FC0_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC0_RST_SHIFT", - "location": { - "column": "9", - "line": "5845", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC0_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@391668@macro@SYSCON_PRESETCTRL_FC0_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC0_RST", - "location": { - "column": "9", - "line": "5846", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC0_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@391818@macro@SYSCON_PRESETCTRL_MUX_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_MUX_RST_MASK", - "location": { - "column": "9", - "line": "5847", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_MUX_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@391877@macro@SYSCON_PRESETCTRL_MUX_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_MUX_RST_SHIFT", - "location": { - "column": "9", - "line": "5848", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_MUX_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@391933@macro@SYSCON_PRESETCTRL_MUX_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_MUX_RST", - "location": { - "column": "9", - "line": "5849", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_MUX_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@392083@macro@SYSCON_PRESETCTRL_FC1_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC1_RST_MASK", - "location": { - "column": "9", - "line": "5850", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC1_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@392143@macro@SYSCON_PRESETCTRL_FC1_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC1_RST_SHIFT", - "location": { - "column": "9", - "line": "5851", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC1_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@392199@macro@SYSCON_PRESETCTRL_FC1_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC1_RST", - "location": { - "column": "9", - "line": "5852", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC1_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@392349@macro@SYSCON_PRESETCTRL_FC2_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC2_RST_MASK", - "location": { - "column": "9", - "line": "5853", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC2_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@392409@macro@SYSCON_PRESETCTRL_FC2_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC2_RST_SHIFT", - "location": { - "column": "9", - "line": "5854", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC2_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@392465@macro@SYSCON_PRESETCTRL_FC2_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC2_RST", - "location": { - "column": "9", - "line": "5855", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC2_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@392615@macro@SYSCON_PRESETCTRL_IOCON_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_IOCON_RST_MASK", - "location": { - "column": "9", - "line": "5856", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_IOCON_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@392675@macro@SYSCON_PRESETCTRL_IOCON_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_IOCON_RST_SHIFT", - "location": { - "column": "9", - "line": "5857", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_IOCON_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@392731@macro@SYSCON_PRESETCTRL_IOCON_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_IOCON_RST", - "location": { - "column": "9", - "line": "5858", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_IOCON_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@392885@macro@SYSCON_PRESETCTRL_FC3_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC3_RST_MASK", - "location": { - "column": "9", - "line": "5859", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC3_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@392945@macro@SYSCON_PRESETCTRL_FC3_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC3_RST_SHIFT", - "location": { - "column": "9", - "line": "5860", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC3_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@393001@macro@SYSCON_PRESETCTRL_FC3_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC3_RST", - "location": { - "column": "9", - "line": "5861", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC3_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@393151@macro@SYSCON_PRESETCTRL_GPIO0_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_GPIO0_RST_MASK", - "location": { - "column": "9", - "line": "5862", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_GPIO0_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@393211@macro@SYSCON_PRESETCTRL_GPIO0_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_GPIO0_RST_SHIFT", - "location": { - "column": "9", - "line": "5863", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_GPIO0_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@393267@macro@SYSCON_PRESETCTRL_GPIO0_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_GPIO0_RST", - "location": { - "column": "9", - "line": "5864", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_GPIO0_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@393421@macro@SYSCON_PRESETCTRL_FC4_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC4_RST_MASK", - "location": { - "column": "9", - "line": "5865", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC4_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@393481@macro@SYSCON_PRESETCTRL_FC4_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC4_RST_SHIFT", - "location": { - "column": "9", - "line": "5866", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC4_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@393537@macro@SYSCON_PRESETCTRL_FC4_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC4_RST", - "location": { - "column": "9", - "line": "5867", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC4_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@393687@macro@SYSCON_PRESETCTRL_GPIO1_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_GPIO1_RST_MASK", - "location": { - "column": "9", - "line": "5868", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_GPIO1_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@393747@macro@SYSCON_PRESETCTRL_GPIO1_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_GPIO1_RST_SHIFT", - "location": { - "column": "9", - "line": "5869", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_GPIO1_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@393803@macro@SYSCON_PRESETCTRL_GPIO1_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_GPIO1_RST", - "location": { - "column": "9", - "line": "5870", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_GPIO1_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@393957@macro@SYSCON_PRESETCTRL_FC5_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC5_RST_MASK", - "location": { - "column": "9", - "line": "5871", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC5_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@394018@macro@SYSCON_PRESETCTRL_FC5_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC5_RST_SHIFT", - "location": { - "column": "9", - "line": "5872", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC5_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@394074@macro@SYSCON_PRESETCTRL_FC5_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC5_RST", - "location": { - "column": "9", - "line": "5873", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC5_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@394224@macro@SYSCON_PRESETCTRL_FC6_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC6_RST_MASK", - "location": { - "column": "9", - "line": "5874", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC6_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@394285@macro@SYSCON_PRESETCTRL_FC6_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC6_RST_SHIFT", - "location": { - "column": "9", - "line": "5875", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC6_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@394341@macro@SYSCON_PRESETCTRL_FC6_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC6_RST", - "location": { - "column": "9", - "line": "5876", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC6_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@394491@macro@SYSCON_PRESETCTRL_FC7_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC7_RST_MASK", - "location": { - "column": "9", - "line": "5877", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC7_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@394552@macro@SYSCON_PRESETCTRL_FC7_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC7_RST_SHIFT", - "location": { - "column": "9", - "line": "5878", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC7_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@394608@macro@SYSCON_PRESETCTRL_FC7_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_FC7_RST", - "location": { - "column": "9", - "line": "5879", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_FC7_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@394758@macro@SYSCON_PRESETCTRL_PINT_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_PINT_RST_MASK", - "location": { - "column": "9", - "line": "5880", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_PINT_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@394819@macro@SYSCON_PRESETCTRL_PINT_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_PINT_RST_SHIFT", - "location": { - "column": "9", - "line": "5881", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_PINT_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@394875@macro@SYSCON_PRESETCTRL_PINT_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_PINT_RST", - "location": { - "column": "9", - "line": "5882", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_PINT_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@395027@macro@SYSCON_PRESETCTRL_GINT_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_GINT_RST_MASK", - "location": { - "column": "9", - "line": "5883", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_GINT_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@395088@macro@SYSCON_PRESETCTRL_GINT_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_GINT_RST_SHIFT", - "location": { - "column": "9", - "line": "5884", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_GINT_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@395144@macro@SYSCON_PRESETCTRL_GINT_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_GINT_RST", - "location": { - "column": "9", - "line": "5885", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_GINT_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@395296@macro@SYSCON_PRESETCTRL_DMA0_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_DMA0_RST_MASK", - "location": { - "column": "9", - "line": "5886", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_DMA0_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@395358@macro@SYSCON_PRESETCTRL_DMA0_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_DMA0_RST_SHIFT", - "location": { - "column": "9", - "line": "5887", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_DMA0_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@395414@macro@SYSCON_PRESETCTRL_DMA0_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_DMA0_RST", - "location": { - "column": "9", - "line": "5888", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_DMA0_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@395566@macro@SYSCON_PRESETCTRL_CRC_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_CRC_RST_MASK", - "location": { - "column": "9", - "line": "5889", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_CRC_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@395628@macro@SYSCON_PRESETCTRL_CRC_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_CRC_RST_SHIFT", - "location": { - "column": "9", - "line": "5890", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_CRC_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@395684@macro@SYSCON_PRESETCTRL_CRC_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_CRC_RST", - "location": { - "column": "9", - "line": "5891", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_CRC_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@395834@macro@SYSCON_PRESETCTRL_WWDT_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_WWDT_RST_MASK", - "location": { - "column": "9", - "line": "5892", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_WWDT_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@395896@macro@SYSCON_PRESETCTRL_WWDT_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_WWDT_RST_SHIFT", - "location": { - "column": "9", - "line": "5893", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_WWDT_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@395952@macro@SYSCON_PRESETCTRL_WWDT_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_WWDT_RST", - "location": { - "column": "9", - "line": "5894", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_WWDT_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@396104@macro@SYSCON_PRESETCTRL_USB0_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_USB0_RST_MASK", - "location": { - "column": "9", - "line": "5895", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_USB0_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@396167@macro@SYSCON_PRESETCTRL_USB0_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_USB0_RST_SHIFT", - "location": { - "column": "9", - "line": "5896", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_USB0_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@396223@macro@SYSCON_PRESETCTRL_USB0_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_USB0_RST", - "location": { - "column": "9", - "line": "5897", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_USB0_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@396375@macro@SYSCON_PRESETCTRL_CTIMER0_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_CTIMER0_RST_MASK", - "location": { - "column": "9", - "line": "5898", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_CTIMER0_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@396438@macro@SYSCON_PRESETCTRL_CTIMER0_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_CTIMER0_RST_SHIFT", - "location": { - "column": "9", - "line": "5899", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_CTIMER0_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@396494@macro@SYSCON_PRESETCTRL_CTIMER0_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_CTIMER0_RST", - "location": { - "column": "9", - "line": "5900", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_CTIMER0_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@396652@macro@SYSCON_PRESETCTRL_ADC0_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_ADC0_RST_MASK", - "location": { - "column": "9", - "line": "5901", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_ADC0_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@396715@macro@SYSCON_PRESETCTRL_ADC0_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_ADC0_RST_SHIFT", - "location": { - "column": "9", - "line": "5902", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_ADC0_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@396771@macro@SYSCON_PRESETCTRL_ADC0_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_ADC0_RST", - "location": { - "column": "9", - "line": "5903", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_ADC0_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@396923@macro@SYSCON_PRESETCTRL_CTIMER1_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_CTIMER1_RST_MASK", - "location": { - "column": "9", - "line": "5904", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_CTIMER1_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@396986@macro@SYSCON_PRESETCTRL_CTIMER1_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_CTIMER1_RST_SHIFT", - "location": { - "column": "9", - "line": "5905", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_CTIMER1_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@397042@macro@SYSCON_PRESETCTRL_CTIMER1_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_CTIMER1_RST", - "location": { - "column": "9", - "line": "5906", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_CTIMER1_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@397251@macro@SYSCON_PRESETCTRL_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRL_COUNT", - "location": { - "column": "9", - "line": "5910", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRL_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@397373@macro@SYSCON_PRESETCTRLSET_RST_SET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRLSET_RST_SET_MASK", - "location": { - "column": "9", - "line": "5914", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRLSET_RST_SET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@397437@macro@SYSCON_PRESETCTRLSET_RST_SET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRLSET_RST_SET_SHIFT", - "location": { - "column": "9", - "line": "5915", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRLSET_RST_SET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@397492@macro@SYSCON_PRESETCTRLSET_RST_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRLSET_RST_SET", - "location": { - "column": "9", - "line": "5916", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRLSET_RST_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@397702@macro@SYSCON_PRESETCTRLSET_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRLSET_COUNT", - "location": { - "column": "9", - "line": "5920", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRLSET_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@397826@macro@SYSCON_PRESETCTRLCLR_RST_CLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRLCLR_RST_CLR_MASK", - "location": { - "column": "9", - "line": "5924", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRLCLR_RST_CLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@397890@macro@SYSCON_PRESETCTRLCLR_RST_CLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRLCLR_RST_CLR_SHIFT", - "location": { - "column": "9", - "line": "5925", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRLCLR_RST_CLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@397945@macro@SYSCON_PRESETCTRLCLR_RST_CLR", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRLCLR_RST_CLR", - "location": { - "column": "9", - "line": "5926", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRLCLR_RST_CLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@398155@macro@SYSCON_PRESETCTRLCLR_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PRESETCTRLCLR_COUNT", - "location": { - "column": "9", - "line": "5930", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PRESETCTRLCLR_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@398279@macro@SYSCON_SYSRSTSTAT_POR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_POR_MASK", - "location": { - "column": "9", - "line": "5934", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_POR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@398336@macro@SYSCON_SYSRSTSTAT_POR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_POR_SHIFT", - "location": { - "column": "9", - "line": "5935", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_POR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@398507@macro@SYSCON_SYSRSTSTAT_POR", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_POR", - "location": { - "column": "9", - "line": "5940", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_POR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@398649@macro@SYSCON_SYSRSTSTAT_EXTRST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_EXTRST_MASK", - "location": { - "column": "9", - "line": "5941", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_EXTRST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@398706@macro@SYSCON_SYSRSTSTAT_EXTRST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_EXTRST_SHIFT", - "location": { - "column": "9", - "line": "5942", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_EXTRST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@398930@macro@SYSCON_SYSRSTSTAT_EXTRST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_EXTRST", - "location": { - "column": "9", - "line": "5947", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_EXTRST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@399078@macro@SYSCON_SYSRSTSTAT_WDT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_WDT_MASK", - "location": { - "column": "9", - "line": "5948", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_WDT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@399135@macro@SYSCON_SYSRSTSTAT_WDT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_WDT_SHIFT", - "location": { - "column": "9", - "line": "5949", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_WDT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@399330@macro@SYSCON_SYSRSTSTAT_WDT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_WDT", - "location": { - "column": "9", - "line": "5954", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_WDT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@399472@macro@SYSCON_SYSRSTSTAT_BOD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_BOD_MASK", - "location": { - "column": "9", - "line": "5955", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_BOD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@399529@macro@SYSCON_SYSRSTSTAT_BOD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_BOD_SHIFT", - "location": { - "column": "9", - "line": "5956", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_BOD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@399732@macro@SYSCON_SYSRSTSTAT_BOD", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_BOD", - "location": { - "column": "9", - "line": "5961", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_BOD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@399874@macro@SYSCON_SYSRSTSTAT_SYSRST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_SYSRST_MASK", - "location": { - "column": "9", - "line": "5962", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_SYSRST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@399932@macro@SYSCON_SYSRSTSTAT_SYSRST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_SYSRST_SHIFT", - "location": { - "column": "9", - "line": "5963", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_SYSRST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@400143@macro@SYSCON_SYSRSTSTAT_SYSRST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSRSTSTAT_SYSRST", - "location": { - "column": "9", - "line": "5968", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSRSTSTAT_SYSRST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@400362@macro@SYSCON_AHBCLKCTRL_MRT0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_MRT0_MASK", - "location": { - "column": "9", - "line": "5973", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_MRT0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@400419@macro@SYSCON_AHBCLKCTRL_MRT0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_MRT0_SHIFT", - "location": { - "column": "9", - "line": "5974", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_MRT0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@400474@macro@SYSCON_AHBCLKCTRL_MRT0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_MRT0", - "location": { - "column": "9", - "line": "5975", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_MRT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@400618@macro@SYSCON_AHBCLKCTRL_ROM_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_ROM_MASK", - "location": { - "column": "9", - "line": "5976", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_ROM_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@400675@macro@SYSCON_AHBCLKCTRL_ROM_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_ROM_SHIFT", - "location": { - "column": "9", - "line": "5977", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_ROM_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@400730@macro@SYSCON_AHBCLKCTRL_ROM", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_ROM", - "location": { - "column": "9", - "line": "5978", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_ROM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@400872@macro@SYSCON_AHBCLKCTRL_SCT0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_SCT0_MASK", - "location": { - "column": "9", - "line": "5979", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_SCT0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@400929@macro@SYSCON_AHBCLKCTRL_SCT0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_SCT0_SHIFT", - "location": { - "column": "9", - "line": "5980", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_SCT0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@400984@macro@SYSCON_AHBCLKCTRL_SCT0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_SCT0", - "location": { - "column": "9", - "line": "5981", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_SCT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@401128@macro@SYSCON_AHBCLKCTRL_FLASH_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLASH_MASK", - "location": { - "column": "9", - "line": "5982", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLASH_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@401186@macro@SYSCON_AHBCLKCTRL_FLASH_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLASH_SHIFT", - "location": { - "column": "9", - "line": "5983", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLASH_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@401241@macro@SYSCON_AHBCLKCTRL_FLASH", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLASH", - "location": { - "column": "9", - "line": "5984", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLASH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@401387@macro@SYSCON_AHBCLKCTRL_FMC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FMC_MASK", - "location": { - "column": "9", - "line": "5985", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FMC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@401446@macro@SYSCON_AHBCLKCTRL_FMC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FMC_SHIFT", - "location": { - "column": "9", - "line": "5986", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FMC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@401501@macro@SYSCON_AHBCLKCTRL_FMC", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FMC", - "location": { - "column": "9", - "line": "5987", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FMC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@401643@macro@SYSCON_AHBCLKCTRL_UTICK0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_UTICK0_MASK", - "location": { - "column": "9", - "line": "5988", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_UTICK0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@401702@macro@SYSCON_AHBCLKCTRL_UTICK0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_UTICK0_SHIFT", - "location": { - "column": "9", - "line": "5989", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_UTICK0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@401758@macro@SYSCON_AHBCLKCTRL_UTICK0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_UTICK0", - "location": { - "column": "9", - "line": "5990", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_UTICK0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@401906@macro@SYSCON_AHBCLKCTRL_FLEXCOMM0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM0_MASK", - "location": { - "column": "9", - "line": "5991", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@401965@macro@SYSCON_AHBCLKCTRL_FLEXCOMM0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM0_SHIFT", - "location": { - "column": "9", - "line": "5992", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@402021@macro@SYSCON_AHBCLKCTRL_FLEXCOMM0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM0", - "location": { - "column": "9", - "line": "5993", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@402175@macro@SYSCON_AHBCLKCTRL_INPUTMUX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_INPUTMUX_MASK", - "location": { - "column": "9", - "line": "5994", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_INPUTMUX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@402234@macro@SYSCON_AHBCLKCTRL_INPUTMUX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_INPUTMUX_SHIFT", - "location": { - "column": "9", - "line": "5995", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_INPUTMUX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@402290@macro@SYSCON_AHBCLKCTRL_INPUTMUX", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_INPUTMUX", - "location": { - "column": "9", - "line": "5996", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_INPUTMUX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@402442@macro@SYSCON_AHBCLKCTRL_FLEXCOMM1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM1_MASK", - "location": { - "column": "9", - "line": "5997", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@402502@macro@SYSCON_AHBCLKCTRL_FLEXCOMM1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM1_SHIFT", - "location": { - "column": "9", - "line": "5998", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@402558@macro@SYSCON_AHBCLKCTRL_FLEXCOMM1", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM1", - "location": { - "column": "9", - "line": "5999", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@402712@macro@SYSCON_AHBCLKCTRL_FLEXCOMM2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM2_MASK", - "location": { - "column": "9", - "line": "6000", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@402772@macro@SYSCON_AHBCLKCTRL_FLEXCOMM2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM2_SHIFT", - "location": { - "column": "9", - "line": "6001", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@402828@macro@SYSCON_AHBCLKCTRL_FLEXCOMM2", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM2", - "location": { - "column": "9", - "line": "6002", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@402982@macro@SYSCON_AHBCLKCTRL_IOCON_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_IOCON_MASK", - "location": { - "column": "9", - "line": "6003", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_IOCON_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@403042@macro@SYSCON_AHBCLKCTRL_IOCON_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_IOCON_SHIFT", - "location": { - "column": "9", - "line": "6004", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_IOCON_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@403098@macro@SYSCON_AHBCLKCTRL_IOCON", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_IOCON", - "location": { - "column": "9", - "line": "6005", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_IOCON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@403244@macro@SYSCON_AHBCLKCTRL_FLEXCOMM3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM3_MASK", - "location": { - "column": "9", - "line": "6006", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@403304@macro@SYSCON_AHBCLKCTRL_FLEXCOMM3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM3_SHIFT", - "location": { - "column": "9", - "line": "6007", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@403360@macro@SYSCON_AHBCLKCTRL_FLEXCOMM3", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM3", - "location": { - "column": "9", - "line": "6008", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@403514@macro@SYSCON_AHBCLKCTRL_GPIO0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_GPIO0_MASK", - "location": { - "column": "9", - "line": "6009", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_GPIO0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@403574@macro@SYSCON_AHBCLKCTRL_GPIO0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_GPIO0_SHIFT", - "location": { - "column": "9", - "line": "6010", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_GPIO0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@403630@macro@SYSCON_AHBCLKCTRL_GPIO0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_GPIO0", - "location": { - "column": "9", - "line": "6011", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_GPIO0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@403776@macro@SYSCON_AHBCLKCTRL_FLEXCOMM4_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM4_MASK", - "location": { - "column": "9", - "line": "6012", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM4_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@403836@macro@SYSCON_AHBCLKCTRL_FLEXCOMM4_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM4_SHIFT", - "location": { - "column": "9", - "line": "6013", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM4_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@403892@macro@SYSCON_AHBCLKCTRL_FLEXCOMM4", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM4", - "location": { - "column": "9", - "line": "6014", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@404046@macro@SYSCON_AHBCLKCTRL_GPIO1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_GPIO1_MASK", - "location": { - "column": "9", - "line": "6015", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_GPIO1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@404106@macro@SYSCON_AHBCLKCTRL_GPIO1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_GPIO1_SHIFT", - "location": { - "column": "9", - "line": "6016", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_GPIO1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@404162@macro@SYSCON_AHBCLKCTRL_GPIO1", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_GPIO1", - "location": { - "column": "9", - "line": "6017", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_GPIO1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@404308@macro@SYSCON_AHBCLKCTRL_FLEXCOMM5_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM5_MASK", - "location": { - "column": "9", - "line": "6018", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM5_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@404369@macro@SYSCON_AHBCLKCTRL_FLEXCOMM5_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM5_SHIFT", - "location": { - "column": "9", - "line": "6019", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM5_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@404425@macro@SYSCON_AHBCLKCTRL_FLEXCOMM5", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM5", - "location": { - "column": "9", - "line": "6020", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@404579@macro@SYSCON_AHBCLKCTRL_FLEXCOMM6_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM6_MASK", - "location": { - "column": "9", - "line": "6021", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM6_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@404640@macro@SYSCON_AHBCLKCTRL_FLEXCOMM6_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM6_SHIFT", - "location": { - "column": "9", - "line": "6022", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM6_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@404696@macro@SYSCON_AHBCLKCTRL_FLEXCOMM6", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM6", - "location": { - "column": "9", - "line": "6023", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@404850@macro@SYSCON_AHBCLKCTRL_FLEXCOMM7_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM7_MASK", - "location": { - "column": "9", - "line": "6024", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM7_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@404911@macro@SYSCON_AHBCLKCTRL_FLEXCOMM7_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM7_SHIFT", - "location": { - "column": "9", - "line": "6025", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM7_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@404967@macro@SYSCON_AHBCLKCTRL_FLEXCOMM7", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_FLEXCOMM7", - "location": { - "column": "9", - "line": "6026", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_FLEXCOMM7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@405121@macro@SYSCON_AHBCLKCTRL_PINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_PINT_MASK", - "location": { - "column": "9", - "line": "6027", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_PINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@405182@macro@SYSCON_AHBCLKCTRL_PINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_PINT_SHIFT", - "location": { - "column": "9", - "line": "6028", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_PINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@405238@macro@SYSCON_AHBCLKCTRL_PINT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_PINT", - "location": { - "column": "9", - "line": "6029", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_PINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@405382@macro@SYSCON_AHBCLKCTRL_GINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_GINT_MASK", - "location": { - "column": "9", - "line": "6030", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_GINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@405443@macro@SYSCON_AHBCLKCTRL_GINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_GINT_SHIFT", - "location": { - "column": "9", - "line": "6031", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_GINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@405499@macro@SYSCON_AHBCLKCTRL_GINT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_GINT", - "location": { - "column": "9", - "line": "6032", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_GINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@405643@macro@SYSCON_AHBCLKCTRL_DMA0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_DMA0_MASK", - "location": { - "column": "9", - "line": "6033", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_DMA0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@405705@macro@SYSCON_AHBCLKCTRL_DMA0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_DMA0_SHIFT", - "location": { - "column": "9", - "line": "6034", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_DMA0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@405761@macro@SYSCON_AHBCLKCTRL_DMA0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_DMA0", - "location": { - "column": "9", - "line": "6035", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_DMA0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@405905@macro@SYSCON_AHBCLKCTRL_CRC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_CRC_MASK", - "location": { - "column": "9", - "line": "6036", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_CRC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@405967@macro@SYSCON_AHBCLKCTRL_CRC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_CRC_SHIFT", - "location": { - "column": "9", - "line": "6037", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_CRC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@406023@macro@SYSCON_AHBCLKCTRL_CRC", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_CRC", - "location": { - "column": "9", - "line": "6038", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_CRC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@406165@macro@SYSCON_AHBCLKCTRL_WWDT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_WWDT_MASK", - "location": { - "column": "9", - "line": "6039", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_WWDT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@406227@macro@SYSCON_AHBCLKCTRL_WWDT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_WWDT_SHIFT", - "location": { - "column": "9", - "line": "6040", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_WWDT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@406283@macro@SYSCON_AHBCLKCTRL_WWDT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_WWDT", - "location": { - "column": "9", - "line": "6041", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_WWDT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@406427@macro@SYSCON_AHBCLKCTRL_RTC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_RTC_MASK", - "location": { - "column": "9", - "line": "6042", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_RTC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@406489@macro@SYSCON_AHBCLKCTRL_RTC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_RTC_SHIFT", - "location": { - "column": "9", - "line": "6043", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_RTC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@406545@macro@SYSCON_AHBCLKCTRL_RTC", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_RTC", - "location": { - "column": "9", - "line": "6044", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_RTC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@406687@macro@SYSCON_AHBCLKCTRL_USB0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_USB0_MASK", - "location": { - "column": "9", - "line": "6045", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_USB0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@406750@macro@SYSCON_AHBCLKCTRL_USB0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_USB0_SHIFT", - "location": { - "column": "9", - "line": "6046", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_USB0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@406806@macro@SYSCON_AHBCLKCTRL_USB0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_USB0", - "location": { - "column": "9", - "line": "6047", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_USB0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@406950@macro@SYSCON_AHBCLKCTRL_CTIMER0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_CTIMER0_MASK", - "location": { - "column": "9", - "line": "6048", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_CTIMER0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@407013@macro@SYSCON_AHBCLKCTRL_CTIMER0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_CTIMER0_SHIFT", - "location": { - "column": "9", - "line": "6049", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_CTIMER0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@407069@macro@SYSCON_AHBCLKCTRL_CTIMER0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_CTIMER0", - "location": { - "column": "9", - "line": "6050", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_CTIMER0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@407219@macro@SYSCON_AHBCLKCTRL_ADC0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_ADC0_MASK", - "location": { - "column": "9", - "line": "6051", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_ADC0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@407282@macro@SYSCON_AHBCLKCTRL_ADC0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_ADC0_SHIFT", - "location": { - "column": "9", - "line": "6052", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_ADC0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@407338@macro@SYSCON_AHBCLKCTRL_ADC0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_ADC0", - "location": { - "column": "9", - "line": "6053", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_ADC0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@407482@macro@SYSCON_AHBCLKCTRL_CTIMER1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_CTIMER1_MASK", - "location": { - "column": "9", - "line": "6054", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_CTIMER1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@407545@macro@SYSCON_AHBCLKCTRL_CTIMER1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_CTIMER1_SHIFT", - "location": { - "column": "9", - "line": "6055", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_CTIMER1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@407601@macro@SYSCON_AHBCLKCTRL_CTIMER1", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_CTIMER1", - "location": { - "column": "9", - "line": "6056", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_CTIMER1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@407802@macro@SYSCON_AHBCLKCTRL_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRL_COUNT", - "location": { - "column": "9", - "line": "6060", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRL_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@407924@macro@SYSCON_AHBCLKCTRLSET_CLK_SET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRLSET_CLK_SET_MASK", - "location": { - "column": "9", - "line": "6064", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRLSET_CLK_SET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@407988@macro@SYSCON_AHBCLKCTRLSET_CLK_SET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRLSET_CLK_SET_SHIFT", - "location": { - "column": "9", - "line": "6065", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRLSET_CLK_SET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@408043@macro@SYSCON_AHBCLKCTRLSET_CLK_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRLSET_CLK_SET", - "location": { - "column": "9", - "line": "6066", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRLSET_CLK_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@408253@macro@SYSCON_AHBCLKCTRLSET_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRLSET_COUNT", - "location": { - "column": "9", - "line": "6070", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRLSET_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@408377@macro@SYSCON_AHBCLKCTRLCLR_CLK_CLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRLCLR_CLK_CLR_MASK", - "location": { - "column": "9", - "line": "6074", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRLCLR_CLK_CLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@408441@macro@SYSCON_AHBCLKCTRLCLR_CLK_CLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRLCLR_CLK_CLR_SHIFT", - "location": { - "column": "9", - "line": "6075", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRLCLR_CLK_CLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@408496@macro@SYSCON_AHBCLKCTRLCLR_CLK_CLR", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRLCLR_CLK_CLR", - "location": { - "column": "9", - "line": "6076", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRLCLR_CLK_CLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@408706@macro@SYSCON_AHBCLKCTRLCLR_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKCTRLCLR_COUNT", - "location": { - "column": "9", - "line": "6080", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKCTRLCLR_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@408829@macro@SYSCON_MAINCLKSELA_SEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MAINCLKSELA_SEL_MASK", - "location": { - "column": "9", - "line": "6084", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MAINCLKSELA_SEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@408886@macro@SYSCON_MAINCLKSELA_SEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MAINCLKSELA_SEL_SHIFT", - "location": { - "column": "9", - "line": "6085", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MAINCLKSELA_SEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@409139@macro@SYSCON_MAINCLKSELA_SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MAINCLKSELA_SEL", - "location": { - "column": "9", - "line": "6092", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MAINCLKSELA_SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@409362@macro@SYSCON_MAINCLKSELB_SEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MAINCLKSELB_SEL_MASK", - "location": { - "column": "9", - "line": "6097", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MAINCLKSELB_SEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@409419@macro@SYSCON_MAINCLKSELB_SEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MAINCLKSELB_SEL_SHIFT", - "location": { - "column": "9", - "line": "6098", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MAINCLKSELB_SEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@409778@macro@SYSCON_MAINCLKSELB_SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MAINCLKSELB_SEL", - "location": { - "column": "9", - "line": "6105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MAINCLKSELB_SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@410002@macro@SYSCON_CLKOUTSELA_SEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_CLKOUTSELA_SEL_MASK", - "location": { - "column": "9", - "line": "6110", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_CLKOUTSELA_SEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@410059@macro@SYSCON_CLKOUTSELA_SEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_CLKOUTSELA_SEL_SHIFT", - "location": { - "column": "9", - "line": "6111", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_CLKOUTSELA_SEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@410508@macro@SYSCON_CLKOUTSELA_SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_CLKOUTSELA_SEL", - "location": { - "column": "9", - "line": "6122", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_CLKOUTSELA_SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@410727@macro@SYSCON_SYSPLLCLKSEL_SEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCLKSEL_SEL_MASK", - "location": { - "column": "9", - "line": "6127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCLKSEL_SEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@410784@macro@SYSCON_SYSPLLCLKSEL_SEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCLKSEL_SEL_SHIFT", - "location": { - "column": "9", - "line": "6128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCLKSEL_SEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@411078@macro@SYSCON_SYSPLLCLKSEL_SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCLKSEL_SEL", - "location": { - "column": "9", - "line": "6135", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCLKSEL_SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@411298@macro@SYSCON_ADCCLKSEL_SEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_ADCCLKSEL_SEL_MASK", - "location": { - "column": "9", - "line": "6140", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_ADCCLKSEL_SEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@411355@macro@SYSCON_ADCCLKSEL_SEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_ADCCLKSEL_SEL_SHIFT", - "location": { - "column": "9", - "line": "6141", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_ADCCLKSEL_SEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@411655@macro@SYSCON_ADCCLKSEL_SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_ADCCLKSEL_SEL", - "location": { - "column": "9", - "line": "6148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_ADCCLKSEL_SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@411869@macro@SYSCON_USBCLKSEL_SEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_USBCLKSEL_SEL_MASK", - "location": { - "column": "9", - "line": "6153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_USBCLKSEL_SEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@411926@macro@SYSCON_USBCLKSEL_SEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_USBCLKSEL_SEL_SHIFT", - "location": { - "column": "9", - "line": "6154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_USBCLKSEL_SEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@412233@macro@SYSCON_USBCLKSEL_SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_USBCLKSEL_SEL", - "location": { - "column": "9", - "line": "6161", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_USBCLKSEL_SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@412486@macro@SYSCON_FXCOMCLKSEL_SEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FXCOMCLKSEL_SEL_MASK", - "location": { - "column": "9", - "line": "6166", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FXCOMCLKSEL_SEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@412543@macro@SYSCON_FXCOMCLKSEL_SEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FXCOMCLKSEL_SEL_SHIFT", - "location": { - "column": "9", - "line": "6167", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FXCOMCLKSEL_SEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@413004@macro@SYSCON_FXCOMCLKSEL_SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FXCOMCLKSEL_SEL", - "location": { - "column": "9", - "line": "6176", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FXCOMCLKSEL_SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@413200@macro@SYSCON_FXCOMCLKSEL_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FXCOMCLKSEL_COUNT", - "location": { - "column": "9", - "line": "6180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FXCOMCLKSEL_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@413320@macro@SYSCON_MCLKCLKSEL_SEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MCLKCLKSEL_SEL_MASK", - "location": { - "column": "9", - "line": "6184", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MCLKCLKSEL_SEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@413377@macro@SYSCON_MCLKCLKSEL_SEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MCLKCLKSEL_SEL_SHIFT", - "location": { - "column": "9", - "line": "6185", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MCLKCLKSEL_SEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@413762@macro@SYSCON_MCLKCLKSEL_SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MCLKCLKSEL_SEL", - "location": { - "column": "9", - "line": "6192", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MCLKCLKSEL_SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@414000@macro@SYSCON_FRGCLKSEL_SEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FRGCLKSEL_SEL_MASK", - "location": { - "column": "9", - "line": "6197", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FRGCLKSEL_SEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@414057@macro@SYSCON_FRGCLKSEL_SEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FRGCLKSEL_SEL_SHIFT", - "location": { - "column": "9", - "line": "6198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FRGCLKSEL_SEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@414410@macro@SYSCON_FRGCLKSEL_SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FRGCLKSEL_SEL", - "location": { - "column": "9", - "line": "6206", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FRGCLKSEL_SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@414626@macro@SYSCON_SYSTICKCLKDIV_DIV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSTICKCLKDIV_DIV_MASK", - "location": { - "column": "9", - "line": "6211", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSTICKCLKDIV_DIV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@414684@macro@SYSCON_SYSTICKCLKDIV_DIV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSTICKCLKDIV_DIV_SHIFT", - "location": { - "column": "9", - "line": "6212", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSTICKCLKDIV_DIV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@414739@macro@SYSCON_SYSTICKCLKDIV_DIV", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSTICKCLKDIV_DIV", - "location": { - "column": "9", - "line": "6213", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSTICKCLKDIV_DIV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@414955@macro@SYSCON_AHBCLKDIV_DIV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKDIV_DIV_MASK", - "location": { - "column": "9", - "line": "6218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKDIV_DIV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@415013@macro@SYSCON_AHBCLKDIV_DIV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKDIV_DIV_SHIFT", - "location": { - "column": "9", - "line": "6219", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKDIV_DIV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@415068@macro@SYSCON_AHBCLKDIV_DIV", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_AHBCLKDIV_DIV", - "location": { - "column": "9", - "line": "6220", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_AHBCLKDIV_DIV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@415279@macro@SYSCON_CLKOUTDIV_DIV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_CLKOUTDIV_DIV_MASK", - "location": { - "column": "9", - "line": "6225", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_CLKOUTDIV_DIV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@415337@macro@SYSCON_CLKOUTDIV_DIV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_CLKOUTDIV_DIV_SHIFT", - "location": { - "column": "9", - "line": "6226", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_CLKOUTDIV_DIV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@415392@macro@SYSCON_CLKOUTDIV_DIV", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_CLKOUTDIV_DIV", - "location": { - "column": "9", - "line": "6227", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_CLKOUTDIV_DIV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@415600@macro@SYSCON_ADCCLKDIV_DIV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_ADCCLKDIV_DIV_MASK", - "location": { - "column": "9", - "line": "6232", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_ADCCLKDIV_DIV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@415658@macro@SYSCON_ADCCLKDIV_DIV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_ADCCLKDIV_DIV_SHIFT", - "location": { - "column": "9", - "line": "6233", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_ADCCLKDIV_DIV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@415713@macro@SYSCON_ADCCLKDIV_DIV", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_ADCCLKDIV_DIV", - "location": { - "column": "9", - "line": "6234", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_ADCCLKDIV_DIV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@415921@macro@SYSCON_USBCLKDIV_DIV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_USBCLKDIV_DIV_MASK", - "location": { - "column": "9", - "line": "6239", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_USBCLKDIV_DIV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@415979@macro@SYSCON_USBCLKDIV_DIV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_USBCLKDIV_DIV_SHIFT", - "location": { - "column": "9", - "line": "6240", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_USBCLKDIV_DIV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@416034@macro@SYSCON_USBCLKDIV_DIV", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_USBCLKDIV_DIV", - "location": { - "column": "9", - "line": "6241", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_USBCLKDIV_DIV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@416246@macro@SYSCON_FRGCTRL_DIV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FRGCTRL_DIV_MASK", - "location": { - "column": "9", - "line": "6246", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FRGCTRL_DIV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@416304@macro@SYSCON_FRGCTRL_DIV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FRGCTRL_DIV_SHIFT", - "location": { - "column": "9", - "line": "6247", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FRGCTRL_DIV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@416359@macro@SYSCON_FRGCTRL_DIV", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FRGCTRL_DIV", - "location": { - "column": "9", - "line": "6248", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FRGCTRL_DIV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@416495@macro@SYSCON_FRGCTRL_MULT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FRGCTRL_MULT_MASK", - "location": { - "column": "9", - "line": "6249", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FRGCTRL_MULT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@416555@macro@SYSCON_FRGCTRL_MULT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FRGCTRL_MULT_SHIFT", - "location": { - "column": "9", - "line": "6250", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FRGCTRL_MULT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@416610@macro@SYSCON_FRGCTRL_MULT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FRGCTRL_MULT", - "location": { - "column": "9", - "line": "6251", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FRGCTRL_MULT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@416819@macro@SYSCON_MCLKDIV_DIV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MCLKDIV_DIV_MASK", - "location": { - "column": "9", - "line": "6256", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MCLKDIV_DIV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@416877@macro@SYSCON_MCLKDIV_DIV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MCLKDIV_DIV_SHIFT", - "location": { - "column": "9", - "line": "6257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MCLKDIV_DIV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@416932@macro@SYSCON_MCLKDIV_DIV", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MCLKDIV_DIV", - "location": { - "column": "9", - "line": "6258", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MCLKDIV_DIV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@417149@macro@SYSCON_FLASHCFG_FETCHCFG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_FETCHCFG_MASK", - "location": { - "column": "9", - "line": "6263", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_FETCHCFG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@417206@macro@SYSCON_FLASHCFG_FETCHCFG_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_FETCHCFG_SHIFT", - "location": { - "column": "9", - "line": "6264", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_FETCHCFG_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@417771@macro@SYSCON_FLASHCFG_FETCHCFG", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_FETCHCFG", - "location": { - "column": "9", - "line": "6271", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_FETCHCFG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@417919@macro@SYSCON_FLASHCFG_DATACFG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_DATACFG_MASK", - "location": { - "column": "9", - "line": "6272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_DATACFG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@417976@macro@SYSCON_FLASHCFG_DATACFG_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_DATACFG_SHIFT", - "location": { - "column": "9", - "line": "6273", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_DATACFG_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@418428@macro@SYSCON_FLASHCFG_DATACFG", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_DATACFG", - "location": { - "column": "9", - "line": "6280", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_DATACFG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@418574@macro@SYSCON_FLASHCFG_ACCEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_ACCEL_MASK", - "location": { - "column": "9", - "line": "6281", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_ACCEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@418632@macro@SYSCON_FLASHCFG_ACCEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_ACCEL_SHIFT", - "location": { - "column": "9", - "line": "6282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_ACCEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@419020@macro@SYSCON_FLASHCFG_ACCEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_ACCEL", - "location": { - "column": "9", - "line": "6287", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_ACCEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@419162@macro@SYSCON_FLASHCFG_PREFEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_PREFEN_MASK", - "location": { - "column": "9", - "line": "6288", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_PREFEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@419220@macro@SYSCON_FLASHCFG_PREFEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_PREFEN_SHIFT", - "location": { - "column": "9", - "line": "6289", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_PREFEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@419520@macro@SYSCON_FLASHCFG_PREFEN", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_PREFEN", - "location": { - "column": "9", - "line": "6294", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_PREFEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@419664@macro@SYSCON_FLASHCFG_PREFOVR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_PREFOVR_MASK", - "location": { - "column": "9", - "line": "6295", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_PREFOVR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@419722@macro@SYSCON_FLASHCFG_PREFOVR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_PREFOVR_SHIFT", - "location": { - "column": "9", - "line": "6296", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_PREFOVR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@420202@macro@SYSCON_FLASHCFG_PREFOVR", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_PREFOVR", - "location": { - "column": "9", - "line": "6301", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_PREFOVR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@420348@macro@SYSCON_FLASHCFG_FLASHTIM_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_FLASHTIM_MASK", - "location": { - "column": "9", - "line": "6302", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_FLASHTIM_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@420408@macro@SYSCON_FLASHCFG_FLASHTIM_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_FLASHTIM_SHIFT", - "location": { - "column": "9", - "line": "6303", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_FLASHTIM_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@421018@macro@SYSCON_FLASHCFG_FLASHTIM", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FLASHCFG_FLASHTIM", - "location": { - "column": "9", - "line": "6311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FLASHCFG_FLASHTIM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@421235@macro@SYSCON_USBCLKCTRL_POL_CLK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_USBCLKCTRL_POL_CLK_MASK", - "location": { - "column": "9", - "line": "6316", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_USBCLKCTRL_POL_CLK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@421292@macro@SYSCON_USBCLKCTRL_POL_CLK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_USBCLKCTRL_POL_CLK_SHIFT", - "location": { - "column": "9", - "line": "6317", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_USBCLKCTRL_POL_CLK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@421577@macro@SYSCON_USBCLKCTRL_POL_CLK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_USBCLKCTRL_POL_CLK", - "location": { - "column": "9", - "line": "6322", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_USBCLKCTRL_POL_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@421795@macro@SYSCON_USBCLKSTAT_NEED_CLKST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_USBCLKSTAT_NEED_CLKST_MASK", - "location": { - "column": "9", - "line": "6327", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_USBCLKSTAT_NEED_CLKST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@421852@macro@SYSCON_USBCLKSTAT_NEED_CLKST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_USBCLKSTAT_NEED_CLKST_SHIFT", - "location": { - "column": "9", - "line": "6328", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_USBCLKSTAT_NEED_CLKST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@421986@macro@SYSCON_USBCLKSTAT_NEED_CLKST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_USBCLKSTAT_NEED_CLKST", - "location": { - "column": "9", - "line": "6333", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_USBCLKSTAT_NEED_CLKST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@422220@macro@SYSCON_FREQMECTRL_CAPVAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FREQMECTRL_CAPVAL_MASK", - "location": { - "column": "9", - "line": "6338", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FREQMECTRL_CAPVAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@422280@macro@SYSCON_FREQMECTRL_CAPVAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FREQMECTRL_CAPVAL_SHIFT", - "location": { - "column": "9", - "line": "6339", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FREQMECTRL_CAPVAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@422335@macro@SYSCON_FREQMECTRL_CAPVAL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FREQMECTRL_CAPVAL", - "location": { - "column": "9", - "line": "6340", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FREQMECTRL_CAPVAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@422483@macro@SYSCON_FREQMECTRL_PROG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FREQMECTRL_PROG_MASK", - "location": { - "column": "9", - "line": "6341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FREQMECTRL_PROG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@422547@macro@SYSCON_FREQMECTRL_PROG_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FREQMECTRL_PROG_SHIFT", - "location": { - "column": "9", - "line": "6342", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FREQMECTRL_PROG_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@422603@macro@SYSCON_FREQMECTRL_PROG", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FREQMECTRL_PROG", - "location": { - "column": "9", - "line": "6343", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FREQMECTRL_PROG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@422820@macro@SYSCON_MCLKIO_DIR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MCLKIO_DIR_MASK", - "location": { - "column": "9", - "line": "6348", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MCLKIO_DIR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@422877@macro@SYSCON_MCLKIO_DIR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MCLKIO_DIR_SHIFT", - "location": { - "column": "9", - "line": "6349", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MCLKIO_DIR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@423055@macro@SYSCON_MCLKIO_DIR", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_MCLKIO_DIR", - "location": { - "column": "9", - "line": "6354", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_MCLKIO_DIR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@423260@macro@SYSCON_FROCTRL_TRIM_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_TRIM_MASK", - "location": { - "column": "9", - "line": "6359", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_TRIM_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@423320@macro@SYSCON_FROCTRL_TRIM_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_TRIM_SHIFT", - "location": { - "column": "9", - "line": "6360", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_TRIM_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@423375@macro@SYSCON_FROCTRL_TRIM", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_TRIM", - "location": { - "column": "9", - "line": "6361", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_TRIM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@423513@macro@SYSCON_FROCTRL_SEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_SEL_MASK", - "location": { - "column": "9", - "line": "6362", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_SEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@423573@macro@SYSCON_FROCTRL_SEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_SEL_SHIFT", - "location": { - "column": "9", - "line": "6363", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_SEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@423844@macro@SYSCON_FROCTRL_SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_SEL", - "location": { - "column": "9", - "line": "6368", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@423980@macro@SYSCON_FROCTRL_FREQTRIM_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_FREQTRIM_MASK", - "location": { - "column": "9", - "line": "6369", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_FREQTRIM_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@424042@macro@SYSCON_FROCTRL_FREQTRIM_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_FREQTRIM_SHIFT", - "location": { - "column": "9", - "line": "6370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_FREQTRIM_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@424098@macro@SYSCON_FROCTRL_FREQTRIM", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_FREQTRIM", - "location": { - "column": "9", - "line": "6371", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_FREQTRIM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@424244@macro@SYSCON_FROCTRL_USBCLKADJ_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_USBCLKADJ_MASK", - "location": { - "column": "9", - "line": "6372", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_USBCLKADJ_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@424307@macro@SYSCON_FROCTRL_USBCLKADJ_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_USBCLKADJ_SHIFT", - "location": { - "column": "9", - "line": "6373", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_USBCLKADJ_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@424919@macro@SYSCON_FROCTRL_USBCLKADJ", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_USBCLKADJ", - "location": { - "column": "9", - "line": "6378", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_USBCLKADJ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@425067@macro@SYSCON_FROCTRL_USBMODCHG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_USBMODCHG_MASK", - "location": { - "column": "9", - "line": "6379", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_USBMODCHG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@425130@macro@SYSCON_FROCTRL_USBMODCHG_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_USBMODCHG_SHIFT", - "location": { - "column": "9", - "line": "6380", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_USBMODCHG_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@425186@macro@SYSCON_FROCTRL_USBMODCHG", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_USBMODCHG", - "location": { - "column": "9", - "line": "6381", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_USBMODCHG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@425334@macro@SYSCON_FROCTRL_HSPDCLK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_HSPDCLK_MASK", - "location": { - "column": "9", - "line": "6382", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_HSPDCLK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@425398@macro@SYSCON_FROCTRL_HSPDCLK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_HSPDCLK_SHIFT", - "location": { - "column": "9", - "line": "6383", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_HSPDCLK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@425689@macro@SYSCON_FROCTRL_HSPDCLK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_HSPDCLK", - "location": { - "column": "9", - "line": "6388", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_HSPDCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@425833@macro@SYSCON_FROCTRL_WRTRIM_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_WRTRIM_MASK", - "location": { - "column": "9", - "line": "6389", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_WRTRIM_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@425897@macro@SYSCON_FROCTRL_WRTRIM_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_WRTRIM_SHIFT", - "location": { - "column": "9", - "line": "6390", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_WRTRIM_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@425953@macro@SYSCON_FROCTRL_WRTRIM", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_FROCTRL_WRTRIM", - "location": { - "column": "9", - "line": "6391", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_FROCTRL_WRTRIM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@426174@macro@SYSCON_WDTOSCCTRL_DIVSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_WDTOSCCTRL_DIVSEL_MASK", - "location": { - "column": "9", - "line": "6396", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_WDTOSCCTRL_DIVSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@426232@macro@SYSCON_WDTOSCCTRL_DIVSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_WDTOSCCTRL_DIVSEL_SHIFT", - "location": { - "column": "9", - "line": "6397", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_WDTOSCCTRL_DIVSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@426287@macro@SYSCON_WDTOSCCTRL_DIVSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_WDTOSCCTRL_DIVSEL", - "location": { - "column": "9", - "line": "6398", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_WDTOSCCTRL_DIVSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@426435@macro@SYSCON_WDTOSCCTRL_FREQSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_WDTOSCCTRL_FREQSEL_MASK", - "location": { - "column": "9", - "line": "6399", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_WDTOSCCTRL_FREQSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@426494@macro@SYSCON_WDTOSCCTRL_FREQSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_WDTOSCCTRL_FREQSEL_SHIFT", - "location": { - "column": "9", - "line": "6400", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_WDTOSCCTRL_FREQSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@426549@macro@SYSCON_WDTOSCCTRL_FREQSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_WDTOSCCTRL_FREQSEL", - "location": { - "column": "9", - "line": "6401", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_WDTOSCCTRL_FREQSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@426787@macro@SYSCON_RTCOSCCTRL_EN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_RTCOSCCTRL_EN_MASK", - "location": { - "column": "9", - "line": "6406", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_RTCOSCCTRL_EN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@426844@macro@SYSCON_RTCOSCCTRL_EN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_RTCOSCCTRL_EN_SHIFT", - "location": { - "column": "9", - "line": "6407", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_RTCOSCCTRL_EN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@427007@macro@SYSCON_RTCOSCCTRL_EN", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_RTCOSCCTRL_EN", - "location": { - "column": "9", - "line": "6412", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_RTCOSCCTRL_EN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@427210@macro@SYSCON_SYSPLLCTRL_SELR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_SELR_MASK", - "location": { - "column": "9", - "line": "6417", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_SELR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@427267@macro@SYSCON_SYSPLLCTRL_SELR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_SELR_SHIFT", - "location": { - "column": "9", - "line": "6418", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_SELR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@427322@macro@SYSCON_SYSPLLCTRL_SELR", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_SELR", - "location": { - "column": "9", - "line": "6419", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_SELR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@427466@macro@SYSCON_SYSPLLCTRL_SELI_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_SELI_MASK", - "location": { - "column": "9", - "line": "6420", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_SELI_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@427525@macro@SYSCON_SYSPLLCTRL_SELI_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_SELI_SHIFT", - "location": { - "column": "9", - "line": "6421", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_SELI_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@427580@macro@SYSCON_SYSPLLCTRL_SELI", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_SELI", - "location": { - "column": "9", - "line": "6422", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_SELI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@427724@macro@SYSCON_SYSPLLCTRL_SELP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_SELP_MASK", - "location": { - "column": "9", - "line": "6423", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_SELP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@427784@macro@SYSCON_SYSPLLCTRL_SELP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_SELP_SHIFT", - "location": { - "column": "9", - "line": "6424", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_SELP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@427840@macro@SYSCON_SYSPLLCTRL_SELP", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_SELP", - "location": { - "column": "9", - "line": "6425", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_SELP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@427984@macro@SYSCON_SYSPLLCTRL_BYPASS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_BYPASS_MASK", - "location": { - "column": "9", - "line": "6426", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_BYPASS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@428044@macro@SYSCON_SYSPLLCTRL_BYPASS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_BYPASS_SHIFT", - "location": { - "column": "9", - "line": "6427", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_BYPASS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@428296@macro@SYSCON_SYSPLLCTRL_BYPASS", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_BYPASS", - "location": { - "column": "9", - "line": "6432", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_BYPASS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@428444@macro@SYSCON_SYSPLLCTRL_BYPASSCCODIV2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_BYPASSCCODIV2_MASK", - "location": { - "column": "9", - "line": "6433", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_BYPASSCCODIV2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@428505@macro@SYSCON_SYSPLLCTRL_BYPASSCCODIV2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_BYPASSCCODIV2_SHIFT", - "location": { - "column": "9", - "line": "6434", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_BYPASSCCODIV2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@428809@macro@SYSCON_SYSPLLCTRL_BYPASSCCODIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_BYPASSCCODIV2", - "location": { - "column": "9", - "line": "6439", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_BYPASSCCODIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@428971@macro@SYSCON_SYSPLLCTRL_UPLIMOFF_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_UPLIMOFF_MASK", - "location": { - "column": "9", - "line": "6440", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_UPLIMOFF_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@429032@macro@SYSCON_SYSPLLCTRL_UPLIMOFF_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_UPLIMOFF_SHIFT", - "location": { - "column": "9", - "line": "6441", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_UPLIMOFF_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@429209@macro@SYSCON_SYSPLLCTRL_UPLIMOFF", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_UPLIMOFF", - "location": { - "column": "9", - "line": "6446", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_UPLIMOFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@429361@macro@SYSCON_SYSPLLCTRL_BANDSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_BANDSEL_MASK", - "location": { - "column": "9", - "line": "6447", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_BANDSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@429422@macro@SYSCON_SYSPLLCTRL_BANDSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_BANDSEL_SHIFT", - "location": { - "column": "9", - "line": "6448", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_BANDSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@429922@macro@SYSCON_SYSPLLCTRL_BANDSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_BANDSEL", - "location": { - "column": "9", - "line": "6453", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_BANDSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@430072@macro@SYSCON_SYSPLLCTRL_DIRECTI_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_DIRECTI_MASK", - "location": { - "column": "9", - "line": "6454", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_DIRECTI_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@430133@macro@SYSCON_SYSPLLCTRL_DIRECTI_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_DIRECTI_SHIFT", - "location": { - "column": "9", - "line": "6455", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_DIRECTI_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@430456@macro@SYSCON_SYSPLLCTRL_DIRECTI", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_DIRECTI", - "location": { - "column": "9", - "line": "6460", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_DIRECTI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@430606@macro@SYSCON_SYSPLLCTRL_DIRECTO_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_DIRECTO_MASK", - "location": { - "column": "9", - "line": "6461", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_DIRECTO_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@430668@macro@SYSCON_SYSPLLCTRL_DIRECTO_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_DIRECTO_SHIFT", - "location": { - "column": "9", - "line": "6462", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_DIRECTO_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@430973@macro@SYSCON_SYSPLLCTRL_DIRECTO", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLCTRL_DIRECTO", - "location": { - "column": "9", - "line": "6467", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLCTRL_DIRECTO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@431185@macro@SYSCON_SYSPLLSTAT_LOCK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSTAT_LOCK_MASK", - "location": { - "column": "9", - "line": "6472", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSTAT_LOCK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@431242@macro@SYSCON_SYSPLLSTAT_LOCK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSTAT_LOCK_SHIFT", - "location": { - "column": "9", - "line": "6473", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSTAT_LOCK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@431297@macro@SYSCON_SYSPLLSTAT_LOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSTAT_LOCK", - "location": { - "column": "9", - "line": "6474", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSTAT_LOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@431506@macro@SYSCON_SYSPLLNDEC_NDEC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLNDEC_NDEC_MASK", - "location": { - "column": "9", - "line": "6479", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLNDEC_NDEC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@431565@macro@SYSCON_SYSPLLNDEC_NDEC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLNDEC_NDEC_SHIFT", - "location": { - "column": "9", - "line": "6480", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLNDEC_NDEC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@431620@macro@SYSCON_SYSPLLNDEC_NDEC", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLNDEC_NDEC", - "location": { - "column": "9", - "line": "6481", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLNDEC_NDEC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@431764@macro@SYSCON_SYSPLLNDEC_NREQ_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLNDEC_NREQ_MASK", - "location": { - "column": "9", - "line": "6482", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLNDEC_NREQ_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@431823@macro@SYSCON_SYSPLLNDEC_NREQ_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLNDEC_NREQ_SHIFT", - "location": { - "column": "9", - "line": "6483", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLNDEC_NREQ_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@431879@macro@SYSCON_SYSPLLNDEC_NREQ", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLNDEC_NREQ", - "location": { - "column": "9", - "line": "6484", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLNDEC_NREQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@432088@macro@SYSCON_SYSPLLPDEC_PDEC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLPDEC_PDEC_MASK", - "location": { - "column": "9", - "line": "6489", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLPDEC_PDEC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@432146@macro@SYSCON_SYSPLLPDEC_PDEC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLPDEC_PDEC_SHIFT", - "location": { - "column": "9", - "line": "6490", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLPDEC_PDEC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@432201@macro@SYSCON_SYSPLLPDEC_PDEC", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLPDEC_PDEC", - "location": { - "column": "9", - "line": "6491", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLPDEC_PDEC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@432345@macro@SYSCON_SYSPLLPDEC_PREQ_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLPDEC_PREQ_MASK", - "location": { - "column": "9", - "line": "6492", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLPDEC_PREQ_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@432403@macro@SYSCON_SYSPLLPDEC_PREQ_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLPDEC_PREQ_SHIFT", - "location": { - "column": "9", - "line": "6493", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLPDEC_PREQ_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@432458@macro@SYSCON_SYSPLLPDEC_PREQ", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLPDEC_PREQ", - "location": { - "column": "9", - "line": "6494", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLPDEC_PREQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@432686@macro@SYSCON_SYSPLLSSCTRL0_MDEC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL0_MDEC_MASK", - "location": { - "column": "9", - "line": "6499", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL0_MDEC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@432747@macro@SYSCON_SYSPLLSSCTRL0_MDEC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL0_MDEC_SHIFT", - "location": { - "column": "9", - "line": "6500", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL0_MDEC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@432802@macro@SYSCON_SYSPLLSSCTRL0_MDEC", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL0_MDEC", - "location": { - "column": "9", - "line": "6501", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL0_MDEC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@432952@macro@SYSCON_SYSPLLSSCTRL0_MREQ_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL0_MREQ_MASK", - "location": { - "column": "9", - "line": "6502", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL0_MREQ_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@433013@macro@SYSCON_SYSPLLSSCTRL0_MREQ_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL0_MREQ_SHIFT", - "location": { - "column": "9", - "line": "6503", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL0_MREQ_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@433069@macro@SYSCON_SYSPLLSSCTRL0_MREQ", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL0_MREQ", - "location": { - "column": "9", - "line": "6504", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL0_MREQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@433219@macro@SYSCON_SYSPLLSSCTRL0_SEL_EXT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL0_SEL_EXT_MASK", - "location": { - "column": "9", - "line": "6505", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL0_SEL_EXT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@433280@macro@SYSCON_SYSPLLSSCTRL0_SEL_EXT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL0_SEL_EXT_SHIFT", - "location": { - "column": "9", - "line": "6506", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL0_SEL_EXT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@433336@macro@SYSCON_SYSPLLSSCTRL0_SEL_EXT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL0_SEL_EXT", - "location": { - "column": "9", - "line": "6507", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL0_SEL_EXT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@433576@macro@SYSCON_SYSPLLSSCTRL1_MD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MD_MASK", - "location": { - "column": "9", - "line": "6512", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@433637@macro@SYSCON_SYSPLLSSCTRL1_MD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MD_SHIFT", - "location": { - "column": "9", - "line": "6513", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@433692@macro@SYSCON_SYSPLLSSCTRL1_MD", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MD", - "location": { - "column": "9", - "line": "6514", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@433838@macro@SYSCON_SYSPLLSSCTRL1_MDREQ_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MDREQ_MASK", - "location": { - "column": "9", - "line": "6515", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MDREQ_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@433899@macro@SYSCON_SYSPLLSSCTRL1_MDREQ_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MDREQ_SHIFT", - "location": { - "column": "9", - "line": "6516", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MDREQ_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@433955@macro@SYSCON_SYSPLLSSCTRL1_MDREQ", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MDREQ", - "location": { - "column": "9", - "line": "6517", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MDREQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@434107@macro@SYSCON_SYSPLLSSCTRL1_MF_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MF_MASK", - "location": { - "column": "9", - "line": "6518", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MF_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@434169@macro@SYSCON_SYSPLLSSCTRL1_MF_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MF_SHIFT", - "location": { - "column": "9", - "line": "6519", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MF_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@434225@macro@SYSCON_SYSPLLSSCTRL1_MF", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MF", - "location": { - "column": "9", - "line": "6520", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@434371@macro@SYSCON_SYSPLLSSCTRL1_MR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MR_MASK", - "location": { - "column": "9", - "line": "6521", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@434434@macro@SYSCON_SYSPLLSSCTRL1_MR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MR_SHIFT", - "location": { - "column": "9", - "line": "6522", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@434490@macro@SYSCON_SYSPLLSSCTRL1_MR", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MR", - "location": { - "column": "9", - "line": "6523", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@434636@macro@SYSCON_SYSPLLSSCTRL1_MC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MC_MASK", - "location": { - "column": "9", - "line": "6524", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@434699@macro@SYSCON_SYSPLLSSCTRL1_MC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MC_SHIFT", - "location": { - "column": "9", - "line": "6525", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@434755@macro@SYSCON_SYSPLLSSCTRL1_MC", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_MC", - "location": { - "column": "9", - "line": "6526", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_MC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@434901@macro@SYSCON_SYSPLLSSCTRL1_PD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_PD_MASK", - "location": { - "column": "9", - "line": "6527", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_PD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@434965@macro@SYSCON_SYSPLLSSCTRL1_PD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_PD_SHIFT", - "location": { - "column": "9", - "line": "6528", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_PD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@435181@macro@SYSCON_SYSPLLSSCTRL1_PD", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_PD", - "location": { - "column": "9", - "line": "6533", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_PD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@435327@macro@SYSCON_SYSPLLSSCTRL1_DITHER_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_DITHER_MASK", - "location": { - "column": "9", - "line": "6534", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_DITHER_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@435391@macro@SYSCON_SYSPLLSSCTRL1_DITHER_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_DITHER_SHIFT", - "location": { - "column": "9", - "line": "6535", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_DITHER_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@435610@macro@SYSCON_SYSPLLSSCTRL1_DITHER", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_SYSPLLSSCTRL1_DITHER", - "location": { - "column": "9", - "line": "6540", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_SYSPLLSSCTRL1_DITHER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@435846@macro@SYSCON_PDSLEEPCFG_PD_SLEEP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDSLEEPCFG_PD_SLEEP_MASK", - "location": { - "column": "9", - "line": "6545", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDSLEEPCFG_PD_SLEEP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@435910@macro@SYSCON_PDSLEEPCFG_PD_SLEEP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDSLEEPCFG_PD_SLEEP_SHIFT", - "location": { - "column": "9", - "line": "6546", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDSLEEPCFG_PD_SLEEP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@435965@macro@SYSCON_PDSLEEPCFG_PD_SLEEP", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDSLEEPCFG_PD_SLEEP", - "location": { - "column": "9", - "line": "6547", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDSLEEPCFG_PD_SLEEP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@436168@macro@SYSCON_PDSLEEPCFG_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDSLEEPCFG_COUNT", - "location": { - "column": "9", - "line": "6551", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDSLEEPCFG_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@436292@macro@SYSCON_PDRUNCFG_PDEN_FRO_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_FRO_MASK", - "location": { - "column": "9", - "line": "6555", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_FRO_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@436350@macro@SYSCON_PDRUNCFG_PDEN_FRO_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_FRO_SHIFT", - "location": { - "column": "9", - "line": "6556", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_FRO_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@436405@macro@SYSCON_PDRUNCFG_PDEN_FRO", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_FRO", - "location": { - "column": "9", - "line": "6557", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_FRO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@436553@macro@SYSCON_PDRUNCFG_PDEN_TS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_TS_MASK", - "location": { - "column": "9", - "line": "6558", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_TS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@436611@macro@SYSCON_PDRUNCFG_PDEN_TS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_TS_SHIFT", - "location": { - "column": "9", - "line": "6559", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_TS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@436666@macro@SYSCON_PDRUNCFG_PDEN_TS", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_TS", - "location": { - "column": "9", - "line": "6560", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_TS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@436812@macro@SYSCON_PDRUNCFG_PDEN_BOD_RST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_BOD_RST_MASK", - "location": { - "column": "9", - "line": "6561", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_BOD_RST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@436870@macro@SYSCON_PDRUNCFG_PDEN_BOD_RST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_BOD_RST_SHIFT", - "location": { - "column": "9", - "line": "6562", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_BOD_RST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@436925@macro@SYSCON_PDRUNCFG_PDEN_BOD_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_BOD_RST", - "location": { - "column": "9", - "line": "6563", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_BOD_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@437081@macro@SYSCON_PDRUNCFG_PDEN_BOD_INTR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_BOD_INTR_MASK", - "location": { - "column": "9", - "line": "6564", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_BOD_INTR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@437140@macro@SYSCON_PDRUNCFG_PDEN_BOD_INTR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_BOD_INTR_SHIFT", - "location": { - "column": "9", - "line": "6565", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_BOD_INTR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@437195@macro@SYSCON_PDRUNCFG_PDEN_BOD_INTR", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_BOD_INTR", - "location": { - "column": "9", - "line": "6566", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_BOD_INTR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@437353@macro@SYSCON_PDRUNCFG_PDEN_ADC0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_ADC0_MASK", - "location": { - "column": "9", - "line": "6567", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_ADC0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@437412@macro@SYSCON_PDRUNCFG_PDEN_ADC0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_ADC0_SHIFT", - "location": { - "column": "9", - "line": "6568", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_ADC0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@437468@macro@SYSCON_PDRUNCFG_PDEN_ADC0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_ADC0", - "location": { - "column": "9", - "line": "6569", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_ADC0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@437618@macro@SYSCON_PDRUNCFG_PDEN_SRAM0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_SRAM0_MASK", - "location": { - "column": "9", - "line": "6570", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_SRAM0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@437678@macro@SYSCON_PDRUNCFG_PDEN_SRAM0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_SRAM0_SHIFT", - "location": { - "column": "9", - "line": "6571", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_SRAM0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@437734@macro@SYSCON_PDRUNCFG_PDEN_SRAM0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_SRAM0", - "location": { - "column": "9", - "line": "6572", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_SRAM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@437886@macro@SYSCON_PDRUNCFG_PDEN_SRAMX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_SRAMX_MASK", - "location": { - "column": "9", - "line": "6573", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_SRAMX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@437947@macro@SYSCON_PDRUNCFG_PDEN_SRAMX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_SRAMX_SHIFT", - "location": { - "column": "9", - "line": "6574", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_SRAMX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@438003@macro@SYSCON_PDRUNCFG_PDEN_SRAMX", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_SRAMX", - "location": { - "column": "9", - "line": "6575", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_SRAMX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@438155@macro@SYSCON_PDRUNCFG_PDEN_ROM_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_ROM_MASK", - "location": { - "column": "9", - "line": "6576", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_ROM_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@438216@macro@SYSCON_PDRUNCFG_PDEN_ROM_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_ROM_SHIFT", - "location": { - "column": "9", - "line": "6577", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_ROM_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@438272@macro@SYSCON_PDRUNCFG_PDEN_ROM", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_ROM", - "location": { - "column": "9", - "line": "6578", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_ROM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@438420@macro@SYSCON_PDRUNCFG_PDEN_VDDA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_VDDA_MASK", - "location": { - "column": "9", - "line": "6579", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_VDDA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@438481@macro@SYSCON_PDRUNCFG_PDEN_VDDA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_VDDA_SHIFT", - "location": { - "column": "9", - "line": "6580", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_VDDA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@438537@macro@SYSCON_PDRUNCFG_PDEN_VDDA", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_VDDA", - "location": { - "column": "9", - "line": "6581", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_VDDA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@438687@macro@SYSCON_PDRUNCFG_PDEN_WDT_OSC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_WDT_OSC_MASK", - "location": { - "column": "9", - "line": "6582", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_WDT_OSC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@438749@macro@SYSCON_PDRUNCFG_PDEN_WDT_OSC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_WDT_OSC_SHIFT", - "location": { - "column": "9", - "line": "6583", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_WDT_OSC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@438805@macro@SYSCON_PDRUNCFG_PDEN_WDT_OSC", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_WDT_OSC", - "location": { - "column": "9", - "line": "6584", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_WDT_OSC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@438961@macro@SYSCON_PDRUNCFG_PDEN_USB_PHY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_USB_PHY_MASK", - "location": { - "column": "9", - "line": "6585", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_USB_PHY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@439023@macro@SYSCON_PDRUNCFG_PDEN_USB_PHY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_USB_PHY_SHIFT", - "location": { - "column": "9", - "line": "6586", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_USB_PHY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@439079@macro@SYSCON_PDRUNCFG_PDEN_USB_PHY", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_USB_PHY", - "location": { - "column": "9", - "line": "6587", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_USB_PHY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@439235@macro@SYSCON_PDRUNCFG_PDEN_SYS_PLL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_SYS_PLL_MASK", - "location": { - "column": "9", - "line": "6588", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_SYS_PLL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@439297@macro@SYSCON_PDRUNCFG_PDEN_SYS_PLL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_SYS_PLL_SHIFT", - "location": { - "column": "9", - "line": "6589", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_SYS_PLL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@439353@macro@SYSCON_PDRUNCFG_PDEN_SYS_PLL", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_SYS_PLL", - "location": { - "column": "9", - "line": "6590", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_SYS_PLL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@439509@macro@SYSCON_PDRUNCFG_PDEN_VREFP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_VREFP_MASK", - "location": { - "column": "9", - "line": "6591", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_VREFP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@439571@macro@SYSCON_PDRUNCFG_PDEN_VREFP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_VREFP_SHIFT", - "location": { - "column": "9", - "line": "6592", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_VREFP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@439627@macro@SYSCON_PDRUNCFG_PDEN_VREFP", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_PDEN_VREFP", - "location": { - "column": "9", - "line": "6593", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_PDEN_VREFP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@439828@macro@SYSCON_PDRUNCFG_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFG_COUNT", - "location": { - "column": "9", - "line": "6597", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFG_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@439946@macro@SYSCON_PDRUNCFGSET_PD_SET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFGSET_PD_SET_MASK", - "location": { - "column": "9", - "line": "6601", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFGSET_PD_SET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@440010@macro@SYSCON_PDRUNCFGSET_PD_SET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFGSET_PD_SET_SHIFT", - "location": { - "column": "9", - "line": "6602", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFGSET_PD_SET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@440065@macro@SYSCON_PDRUNCFGSET_PD_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFGSET_PD_SET", - "location": { - "column": "9", - "line": "6603", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFGSET_PD_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@440267@macro@SYSCON_PDRUNCFGSET_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFGSET_COUNT", - "location": { - "column": "9", - "line": "6607", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFGSET_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@440387@macro@SYSCON_PDRUNCFGCLR_PD_CLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFGCLR_PD_CLR_MASK", - "location": { - "column": "9", - "line": "6611", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFGCLR_PD_CLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@440451@macro@SYSCON_PDRUNCFGCLR_PD_CLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFGCLR_PD_CLR_SHIFT", - "location": { - "column": "9", - "line": "6612", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFGCLR_PD_CLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@440506@macro@SYSCON_PDRUNCFGCLR_PD_CLR", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFGCLR_PD_CLR", - "location": { - "column": "9", - "line": "6613", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFGCLR_PD_CLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@440708@macro@SYSCON_PDRUNCFGCLR_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_PDRUNCFGCLR_COUNT", - "location": { - "column": "9", - "line": "6617", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_PDRUNCFGCLR_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@440838@macro@SYSCON_STARTER_WDT_BOD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_WDT_BOD_MASK", - "location": { - "column": "9", - "line": "6621", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_WDT_BOD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@440895@macro@SYSCON_STARTER_WDT_BOD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_WDT_BOD_SHIFT", - "location": { - "column": "9", - "line": "6622", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_WDT_BOD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@440950@macro@SYSCON_STARTER_WDT_BOD", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_WDT_BOD", - "location": { - "column": "9", - "line": "6623", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_WDT_BOD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@441094@macro@SYSCON_STARTER_DMA0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_DMA0_MASK", - "location": { - "column": "9", - "line": "6624", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_DMA0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@441151@macro@SYSCON_STARTER_DMA0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_DMA0_SHIFT", - "location": { - "column": "9", - "line": "6625", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_DMA0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@441206@macro@SYSCON_STARTER_DMA0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_DMA0", - "location": { - "column": "9", - "line": "6626", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_DMA0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@441344@macro@SYSCON_STARTER_GINT0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_GINT0_MASK", - "location": { - "column": "9", - "line": "6627", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_GINT0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@441401@macro@SYSCON_STARTER_GINT0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_GINT0_SHIFT", - "location": { - "column": "9", - "line": "6628", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_GINT0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@441456@macro@SYSCON_STARTER_GINT0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_GINT0", - "location": { - "column": "9", - "line": "6629", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_GINT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@441596@macro@SYSCON_STARTER_GINT1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_GINT1_MASK", - "location": { - "column": "9", - "line": "6630", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_GINT1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@441653@macro@SYSCON_STARTER_GINT1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_GINT1_SHIFT", - "location": { - "column": "9", - "line": "6631", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_GINT1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@441708@macro@SYSCON_STARTER_GINT1", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_GINT1", - "location": { - "column": "9", - "line": "6632", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_GINT1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@441848@macro@SYSCON_STARTER_PIN_INT0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_PIN_INT0_MASK", - "location": { - "column": "9", - "line": "6633", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_PIN_INT0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@441906@macro@SYSCON_STARTER_PIN_INT0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_PIN_INT0_SHIFT", - "location": { - "column": "9", - "line": "6634", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_PIN_INT0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@441961@macro@SYSCON_STARTER_PIN_INT0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_PIN_INT0", - "location": { - "column": "9", - "line": "6635", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_PIN_INT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@442107@macro@SYSCON_STARTER_PIN_INT1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_PIN_INT1_MASK", - "location": { - "column": "9", - "line": "6636", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_PIN_INT1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@442165@macro@SYSCON_STARTER_PIN_INT1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_PIN_INT1_SHIFT", - "location": { - "column": "9", - "line": "6637", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_PIN_INT1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@442220@macro@SYSCON_STARTER_PIN_INT1", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_PIN_INT1", - "location": { - "column": "9", - "line": "6638", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_PIN_INT1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@442366@macro@SYSCON_STARTER_PIN_INT2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_PIN_INT2_MASK", - "location": { - "column": "9", - "line": "6639", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_PIN_INT2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@442424@macro@SYSCON_STARTER_PIN_INT2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_PIN_INT2_SHIFT", - "location": { - "column": "9", - "line": "6640", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_PIN_INT2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@442479@macro@SYSCON_STARTER_PIN_INT2", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_PIN_INT2", - "location": { - "column": "9", - "line": "6641", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_PIN_INT2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@442625@macro@SYSCON_STARTER_PIN_INT3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_PIN_INT3_MASK", - "location": { - "column": "9", - "line": "6642", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_PIN_INT3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@442683@macro@SYSCON_STARTER_PIN_INT3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_PIN_INT3_SHIFT", - "location": { - "column": "9", - "line": "6643", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_PIN_INT3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@442738@macro@SYSCON_STARTER_PIN_INT3", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_PIN_INT3", - "location": { - "column": "9", - "line": "6644", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_PIN_INT3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@442884@macro@SYSCON_STARTER_UTICK0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_UTICK0_MASK", - "location": { - "column": "9", - "line": "6645", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_UTICK0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@442943@macro@SYSCON_STARTER_UTICK0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_UTICK0_SHIFT", - "location": { - "column": "9", - "line": "6646", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_UTICK0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@442998@macro@SYSCON_STARTER_UTICK0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_UTICK0", - "location": { - "column": "9", - "line": "6647", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_UTICK0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@443140@macro@SYSCON_STARTER_MRT0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_MRT0_MASK", - "location": { - "column": "9", - "line": "6648", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_MRT0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@443199@macro@SYSCON_STARTER_MRT0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_MRT0_SHIFT", - "location": { - "column": "9", - "line": "6649", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_MRT0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@443254@macro@SYSCON_STARTER_MRT0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_MRT0", - "location": { - "column": "9", - "line": "6650", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_MRT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@443392@macro@SYSCON_STARTER_CTIMER0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_CTIMER0_MASK", - "location": { - "column": "9", - "line": "6651", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_CTIMER0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@443451@macro@SYSCON_STARTER_CTIMER0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_CTIMER0_SHIFT", - "location": { - "column": "9", - "line": "6652", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_CTIMER0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@443507@macro@SYSCON_STARTER_CTIMER0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_CTIMER0", - "location": { - "column": "9", - "line": "6653", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_CTIMER0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@443651@macro@SYSCON_STARTER_CTIMER1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_CTIMER1_MASK", - "location": { - "column": "9", - "line": "6654", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_CTIMER1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@443710@macro@SYSCON_STARTER_CTIMER1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_CTIMER1_SHIFT", - "location": { - "column": "9", - "line": "6655", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_CTIMER1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@443766@macro@SYSCON_STARTER_CTIMER1", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_CTIMER1", - "location": { - "column": "9", - "line": "6656", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_CTIMER1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@443910@macro@SYSCON_STARTER_SCT0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_SCT0_MASK", - "location": { - "column": "9", - "line": "6657", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_SCT0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@443970@macro@SYSCON_STARTER_SCT0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_SCT0_SHIFT", - "location": { - "column": "9", - "line": "6658", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_SCT0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@444026@macro@SYSCON_STARTER_SCT0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_SCT0", - "location": { - "column": "9", - "line": "6659", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_SCT0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@444164@macro@SYSCON_STARTER_CTIMER3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_CTIMER3_MASK", - "location": { - "column": "9", - "line": "6660", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_CTIMER3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@444224@macro@SYSCON_STARTER_CTIMER3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_CTIMER3_SHIFT", - "location": { - "column": "9", - "line": "6661", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_CTIMER3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@444280@macro@SYSCON_STARTER_CTIMER3", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_CTIMER3", - "location": { - "column": "9", - "line": "6662", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_CTIMER3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@444424@macro@SYSCON_STARTER_FLEXCOMM0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM0_MASK", - "location": { - "column": "9", - "line": "6663", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@444484@macro@SYSCON_STARTER_FLEXCOMM0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM0_SHIFT", - "location": { - "column": "9", - "line": "6664", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@444540@macro@SYSCON_STARTER_FLEXCOMM0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM0", - "location": { - "column": "9", - "line": "6665", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@444688@macro@SYSCON_STARTER_FLEXCOMM1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM1_MASK", - "location": { - "column": "9", - "line": "6666", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@444748@macro@SYSCON_STARTER_FLEXCOMM1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM1_SHIFT", - "location": { - "column": "9", - "line": "6667", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@444804@macro@SYSCON_STARTER_FLEXCOMM1", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM1", - "location": { - "column": "9", - "line": "6668", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@444952@macro@SYSCON_STARTER_FLEXCOMM2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM2_MASK", - "location": { - "column": "9", - "line": "6669", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@445013@macro@SYSCON_STARTER_FLEXCOMM2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM2_SHIFT", - "location": { - "column": "9", - "line": "6670", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@445069@macro@SYSCON_STARTER_FLEXCOMM2", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM2", - "location": { - "column": "9", - "line": "6671", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@445217@macro@SYSCON_STARTER_FLEXCOMM3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM3_MASK", - "location": { - "column": "9", - "line": "6672", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@445278@macro@SYSCON_STARTER_FLEXCOMM3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM3_SHIFT", - "location": { - "column": "9", - "line": "6673", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@445334@macro@SYSCON_STARTER_FLEXCOMM3", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM3", - "location": { - "column": "9", - "line": "6674", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@445482@macro@SYSCON_STARTER_FLEXCOMM4_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM4_MASK", - "location": { - "column": "9", - "line": "6675", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM4_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@445543@macro@SYSCON_STARTER_FLEXCOMM4_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM4_SHIFT", - "location": { - "column": "9", - "line": "6676", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM4_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@445599@macro@SYSCON_STARTER_FLEXCOMM4", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM4", - "location": { - "column": "9", - "line": "6677", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@445747@macro@SYSCON_STARTER_FLEXCOMM5_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM5_MASK", - "location": { - "column": "9", - "line": "6678", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM5_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@445808@macro@SYSCON_STARTER_FLEXCOMM5_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM5_SHIFT", - "location": { - "column": "9", - "line": "6679", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM5_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@445864@macro@SYSCON_STARTER_FLEXCOMM5", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM5", - "location": { - "column": "9", - "line": "6680", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@446012@macro@SYSCON_STARTER_FLEXCOMM6_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM6_MASK", - "location": { - "column": "9", - "line": "6681", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM6_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@446074@macro@SYSCON_STARTER_FLEXCOMM6_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM6_SHIFT", - "location": { - "column": "9", - "line": "6682", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM6_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@446130@macro@SYSCON_STARTER_FLEXCOMM6", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM6", - "location": { - "column": "9", - "line": "6683", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@446278@macro@SYSCON_STARTER_FLEXCOMM7_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM7_MASK", - "location": { - "column": "9", - "line": "6684", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM7_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@446340@macro@SYSCON_STARTER_FLEXCOMM7_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM7_SHIFT", - "location": { - "column": "9", - "line": "6685", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM7_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@446396@macro@SYSCON_STARTER_FLEXCOMM7", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_FLEXCOMM7", - "location": { - "column": "9", - "line": "6686", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_FLEXCOMM7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@446544@macro@SYSCON_STARTER_USB0_NEEDCLK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_USB0_NEEDCLK_MASK", - "location": { - "column": "9", - "line": "6687", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_USB0_NEEDCLK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@446607@macro@SYSCON_STARTER_USB0_NEEDCLK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_USB0_NEEDCLK_SHIFT", - "location": { - "column": "9", - "line": "6688", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_USB0_NEEDCLK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@446663@macro@SYSCON_STARTER_USB0_NEEDCLK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_USB0_NEEDCLK", - "location": { - "column": "9", - "line": "6689", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_USB0_NEEDCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@446817@macro@SYSCON_STARTER_USB0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_USB0_MASK", - "location": { - "column": "9", - "line": "6690", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_USB0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@446881@macro@SYSCON_STARTER_USB0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_USB0_SHIFT", - "location": { - "column": "9", - "line": "6691", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_USB0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@446937@macro@SYSCON_STARTER_USB0", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_USB0", - "location": { - "column": "9", - "line": "6692", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_USB0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@447075@macro@SYSCON_STARTER_RTC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_RTC_MASK", - "location": { - "column": "9", - "line": "6693", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_RTC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@447139@macro@SYSCON_STARTER_RTC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_RTC_SHIFT", - "location": { - "column": "9", - "line": "6694", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_RTC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@447195@macro@SYSCON_STARTER_RTC", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_RTC", - "location": { - "column": "9", - "line": "6695", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_RTC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@447379@macro@SYSCON_STARTER_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTER_COUNT", - "location": { - "column": "9", - "line": "6699", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTER_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@447495@macro@SYSCON_STARTERSET_START_SET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTERSET_START_SET_MASK", - "location": { - "column": "9", - "line": "6703", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTERSET_START_SET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@447559@macro@SYSCON_STARTERSET_START_SET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTERSET_START_SET_SHIFT", - "location": { - "column": "9", - "line": "6704", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTERSET_START_SET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@447614@macro@SYSCON_STARTERSET_START_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTERSET_START_SET", - "location": { - "column": "9", - "line": "6705", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTERSET_START_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@447819@macro@SYSCON_STARTERSET_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTERSET_COUNT", - "location": { - "column": "9", - "line": "6709", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTERSET_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@447937@macro@SYSCON_STARTERCLR_START_CLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTERCLR_START_CLR_MASK", - "location": { - "column": "9", - "line": "6713", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTERCLR_START_CLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@448001@macro@SYSCON_STARTERCLR_START_CLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTERCLR_START_CLR_SHIFT", - "location": { - "column": "9", - "line": "6714", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTERCLR_START_CLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@448056@macro@SYSCON_STARTERCLR_START_CLR", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTERCLR_START_CLR", - "location": { - "column": "9", - "line": "6715", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTERCLR_START_CLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@448261@macro@SYSCON_STARTERCLR_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_STARTERCLR_COUNT", - "location": { - "column": "9", - "line": "6719", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_STARTERCLR_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@448397@macro@SYSCON_HWWAKE_FORCEWAKE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_HWWAKE_FORCEWAKE_MASK", - "location": { - "column": "9", - "line": "6723", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_HWWAKE_FORCEWAKE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@448454@macro@SYSCON_HWWAKE_FORCEWAKE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_HWWAKE_FORCEWAKE_SHIFT", - "location": { - "column": "9", - "line": "6724", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_HWWAKE_FORCEWAKE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@448509@macro@SYSCON_HWWAKE_FORCEWAKE", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_HWWAKE_FORCEWAKE", - "location": { - "column": "9", - "line": "6725", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_HWWAKE_FORCEWAKE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@448655@macro@SYSCON_HWWAKE_FCWAKE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_HWWAKE_FCWAKE_MASK", - "location": { - "column": "9", - "line": "6726", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_HWWAKE_FCWAKE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@448712@macro@SYSCON_HWWAKE_FCWAKE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_HWWAKE_FCWAKE_SHIFT", - "location": { - "column": "9", - "line": "6727", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_HWWAKE_FCWAKE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@448767@macro@SYSCON_HWWAKE_FCWAKE", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_HWWAKE_FCWAKE", - "location": { - "column": "9", - "line": "6728", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_HWWAKE_FCWAKE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@448907@macro@SYSCON_HWWAKE_WAKEDMA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_HWWAKE_WAKEDMA_MASK", - "location": { - "column": "9", - "line": "6729", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_HWWAKE_WAKEDMA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@448964@macro@SYSCON_HWWAKE_WAKEDMA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_HWWAKE_WAKEDMA_SHIFT", - "location": { - "column": "9", - "line": "6730", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_HWWAKE_WAKEDMA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@449019@macro@SYSCON_HWWAKE_WAKEDMA", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_HWWAKE_WAKEDMA", - "location": { - "column": "9", - "line": "6731", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_HWWAKE_WAKEDMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@449234@macro@SYSCON_JTAGIDCODE_JTAGID_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_JTAGIDCODE_JTAGID_MASK", - "location": { - "column": "9", - "line": "6736", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_JTAGIDCODE_JTAGID_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@449298@macro@SYSCON_JTAGIDCODE_JTAGID_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_JTAGIDCODE_JTAGID_SHIFT", - "location": { - "column": "9", - "line": "6737", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_JTAGIDCODE_JTAGID_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@449353@macro@SYSCON_JTAGIDCODE_JTAGID", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_JTAGIDCODE_JTAGID", - "location": { - "column": "9", - "line": "6738", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_JTAGIDCODE_JTAGID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@449569@macro@SYSCON_DEVICE_ID0_PARTID_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_DEVICE_ID0_PARTID_MASK", - "location": { - "column": "9", - "line": "6743", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_DEVICE_ID0_PARTID_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@449633@macro@SYSCON_DEVICE_ID0_PARTID_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_DEVICE_ID0_PARTID_SHIFT", - "location": { - "column": "9", - "line": "6744", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_DEVICE_ID0_PARTID_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@449688@macro@SYSCON_DEVICE_ID0_PARTID", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_DEVICE_ID0_PARTID", - "location": { - "column": "9", - "line": "6745", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_DEVICE_ID0_PARTID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@449922@macro@SYSCON_DEVICE_ID1_REVID_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_DEVICE_ID1_REVID_MASK", - "location": { - "column": "9", - "line": "6750", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_DEVICE_ID1_REVID_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@449986@macro@SYSCON_DEVICE_ID1_REVID_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_DEVICE_ID1_REVID_SHIFT", - "location": { - "column": "9", - "line": "6751", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_DEVICE_ID1_REVID_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@450041@macro@SYSCON_DEVICE_ID1_REVID", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_DEVICE_ID1_REVID", - "location": { - "column": "9", - "line": "6752", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_DEVICE_ID1_REVID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@450260@macro@SYSCON_BODCTRL_BODRSTLEV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODRSTLEV_MASK", - "location": { - "column": "9", - "line": "6757", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODRSTLEV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@450317@macro@SYSCON_BODCTRL_BODRSTLEV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODRSTLEV_SHIFT", - "location": { - "column": "9", - "line": "6758", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODRSTLEV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@450515@macro@SYSCON_BODCTRL_BODRSTLEV", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODRSTLEV", - "location": { - "column": "9", - "line": "6765", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODRSTLEV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@450663@macro@SYSCON_BODCTRL_BODRSTENA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODRSTENA_MASK", - "location": { - "column": "9", - "line": "6766", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODRSTENA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@450720@macro@SYSCON_BODCTRL_BODRSTENA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODRSTENA_SHIFT", - "location": { - "column": "9", - "line": "6767", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODRSTENA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@450881@macro@SYSCON_BODCTRL_BODRSTENA", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODRSTENA", - "location": { - "column": "9", - "line": "6772", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODRSTENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@451029@macro@SYSCON_BODCTRL_BODINTLEV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODINTLEV_MASK", - "location": { - "column": "9", - "line": "6773", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODINTLEV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@451087@macro@SYSCON_BODCTRL_BODINTLEV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODINTLEV_SHIFT", - "location": { - "column": "9", - "line": "6774", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODINTLEV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@451292@macro@SYSCON_BODCTRL_BODINTLEV", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODINTLEV", - "location": { - "column": "9", - "line": "6781", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODINTLEV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@451440@macro@SYSCON_BODCTRL_BODINTENA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODINTENA_MASK", - "location": { - "column": "9", - "line": "6782", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODINTENA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@451498@macro@SYSCON_BODCTRL_BODINTENA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODINTENA_SHIFT", - "location": { - "column": "9", - "line": "6783", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODINTENA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@451671@macro@SYSCON_BODCTRL_BODINTENA", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODINTENA", - "location": { - "column": "9", - "line": "6788", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODINTENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@451819@macro@SYSCON_BODCTRL_BODRSTSTAT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODRSTSTAT_MASK", - "location": { - "column": "9", - "line": "6789", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODRSTSTAT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@451877@macro@SYSCON_BODCTRL_BODRSTSTAT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODRSTSTAT_SHIFT", - "location": { - "column": "9", - "line": "6790", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODRSTSTAT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@451932@macro@SYSCON_BODCTRL_BODRSTSTAT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODRSTSTAT", - "location": { - "column": "9", - "line": "6791", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODRSTSTAT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@452082@macro@SYSCON_BODCTRL_BODINTSTAT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODINTSTAT_MASK", - "location": { - "column": "9", - "line": "6792", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODINTSTAT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@452140@macro@SYSCON_BODCTRL_BODINTSTAT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODINTSTAT_SHIFT", - "location": { - "column": "9", - "line": "6793", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODINTSTAT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@452195@macro@SYSCON_BODCTRL_BODINTSTAT", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BODCTRL_BODINTSTAT", - "location": { - "column": "9", - "line": "6794", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BODCTRL_BODINTSTAT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@452512@macro@SYSCON_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BASE", - "location": { - "column": "9", - "line": "6805", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@452615@macro@SYSCON", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON", - "location": { - "column": "9", - "line": "6807", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@452756@macro@SYSCON_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BASE_ADDRS", - "location": { - "column": "9", - "line": "6809", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@452883@macro@SYSCON_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "SYSCON_BASE_PTRS", - "location": { - "column": "9", - "line": "6811", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "SYSCON_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@USART_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "6828", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@USART_Type@FI@CFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "CFG", - "location": { - "column": "17", - "line": "6829", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@CTL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTL", - "location": { - "column": "17", - "line": "6830", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@STAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "STAT", - "location": { - "column": "17", - "line": "6831", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "STAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@INTENSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTENSET", - "location": { - "column": "17", - "line": "6832", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTENSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@INTENCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTENCLR", - "location": { - "column": "17", - "line": "6833", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTENCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "6834", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@BRG", - "What": "FieldDecl", - "defdec": "Def", - "display": "BRG", - "location": { - "column": "17", - "line": "6835", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "BRG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@INTSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTSTAT", - "location": { - "column": "17", - "line": "6836", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@OSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "OSR", - "location": { - "column": "17", - "line": "6837", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "OSR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@ADDR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ADDR", - "location": { - "column": "17", - "line": "6838", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ADDR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@RESERVED_1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_1", - "location": { - "column": "16", - "line": "6839", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_1", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@FIFOCFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOCFG", - "location": { - "column": "17", - "line": "6840", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOCFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@FIFOSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOSTAT", - "location": { - "column": "17", - "line": "6841", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@FIFOTRIG", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOTRIG", - "location": { - "column": "17", - "line": "6842", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOTRIG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@RESERVED_2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_2", - "location": { - "column": "16", - "line": "6843", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_2", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@FIFOINTENSET", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOINTENSET", - "location": { - "column": "17", - "line": "6844", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOINTENSET", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@FIFOINTENCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOINTENCLR", - "location": { - "column": "17", - "line": "6845", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOINTENCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@FIFOINTSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOINTSTAT", - "location": { - "column": "17", - "line": "6846", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOINTSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@RESERVED_3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_3", - "location": { - "column": "16", - "line": "6847", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_3", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@FIFOWR", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFOWR", - "location": { - "column": "17", - "line": "6848", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFOWR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@RESERVED_4", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_4", - "location": { - "column": "16", - "line": "6849", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_4", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@FIFORD", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFORD", - "location": { - "column": "17", - "line": "6850", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFORD", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@RESERVED_5", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_5", - "location": { - "column": "16", - "line": "6851", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_5", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@FIFORDNOPOP", - "What": "FieldDecl", - "defdec": "Def", - "display": "FIFORDNOPOP", - "location": { - "column": "17", - "line": "6852", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FIFORDNOPOP", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@RESERVED_6", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_6", - "location": { - "column": "16", - "line": "6853", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_6", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - }, - { - "ID": "c:@SA@USART_Type@FI@ID", - "What": "FieldDecl", - "defdec": "Def", - "display": "ID", - "location": { - "column": "17", - "line": "6854", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "ID", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_6828_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@USART_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct USART_Type", - "location": { - "column": "3", - "line": "6855", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@456887@macro@USART_CFG_ENABLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_ENABLE_MASK", - "location": { - "column": "9", - "line": "6868", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_ENABLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@456944@macro@USART_CFG_ENABLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_ENABLE_SHIFT", - "location": { - "column": "9", - "line": "6869", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_ENABLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@457463@macro@USART_CFG_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_ENABLE", - "location": { - "column": "9", - "line": "6874", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@457595@macro@USART_CFG_DATALEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_DATALEN_MASK", - "location": { - "column": "9", - "line": "6875", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_DATALEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@457652@macro@USART_CFG_DATALEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_DATALEN_SHIFT", - "location": { - "column": "9", - "line": "6876", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_DATALEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@457979@macro@USART_CFG_DATALEN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_DATALEN", - "location": { - "column": "9", - "line": "6883", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_DATALEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@458113@macro@USART_CFG_PARITYSEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_PARITYSEL_MASK", - "location": { - "column": "9", - "line": "6884", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_PARITYSEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@458171@macro@USART_CFG_PARITYSEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_PARITYSEL_SHIFT", - "location": { - "column": "9", - "line": "6885", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_PARITYSEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@458708@macro@USART_CFG_PARITYSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_PARITYSEL", - "location": { - "column": "9", - "line": "6892", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_PARITYSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@458846@macro@USART_CFG_STOPLEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_STOPLEN_MASK", - "location": { - "column": "9", - "line": "6893", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_STOPLEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@458904@macro@USART_CFG_STOPLEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_STOPLEN_SHIFT", - "location": { - "column": "9", - "line": "6894", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_STOPLEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@459193@macro@USART_CFG_STOPLEN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_STOPLEN", - "location": { - "column": "9", - "line": "6899", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_STOPLEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@459327@macro@USART_CFG_MODE32K_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_MODE32K_MASK", - "location": { - "column": "9", - "line": "6900", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_MODE32K_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@459385@macro@USART_CFG_MODE32K_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_MODE32K_SHIFT", - "location": { - "column": "9", - "line": "6901", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_MODE32K_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@459695@macro@USART_CFG_MODE32K", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_MODE32K", - "location": { - "column": "9", - "line": "6906", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_MODE32K", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@459829@macro@USART_CFG_LINMODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_LINMODE_MASK", - "location": { - "column": "9", - "line": "6907", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_LINMODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@459888@macro@USART_CFG_LINMODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_LINMODE_SHIFT", - "location": { - "column": "9", - "line": "6908", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_LINMODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@460150@macro@USART_CFG_LINMODE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_LINMODE", - "location": { - "column": "9", - "line": "6913", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_LINMODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@460284@macro@USART_CFG_CTSEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_CTSEN_MASK", - "location": { - "column": "9", - "line": "6914", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_CTSEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@460343@macro@USART_CFG_CTSEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_CTSEN_SHIFT", - "location": { - "column": "9", - "line": "6915", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_CTSEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@460787@macro@USART_CFG_CTSEN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_CTSEN", - "location": { - "column": "9", - "line": "6920", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_CTSEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@460917@macro@USART_CFG_SYNCEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_SYNCEN_MASK", - "location": { - "column": "9", - "line": "6921", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_SYNCEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@460976@macro@USART_CFG_SYNCEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_SYNCEN_SHIFT", - "location": { - "column": "9", - "line": "6922", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_SYNCEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@461155@macro@USART_CFG_SYNCEN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_SYNCEN", - "location": { - "column": "9", - "line": "6927", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_SYNCEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@461287@macro@USART_CFG_CLKPOL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_CLKPOL_MASK", - "location": { - "column": "9", - "line": "6928", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_CLKPOL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@461347@macro@USART_CFG_CLKPOL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_CLKPOL_SHIFT", - "location": { - "column": "9", - "line": "6929", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_CLKPOL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@461645@macro@USART_CFG_CLKPOL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_CLKPOL", - "location": { - "column": "9", - "line": "6934", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_CLKPOL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@461777@macro@USART_CFG_SYNCMST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_SYNCMST_MASK", - "location": { - "column": "9", - "line": "6935", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_SYNCMST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@461837@macro@USART_CFG_SYNCMST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_SYNCMST_SHIFT", - "location": { - "column": "9", - "line": "6936", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_SYNCMST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@462093@macro@USART_CFG_SYNCMST", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_SYNCMST", - "location": { - "column": "9", - "line": "6941", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_SYNCMST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@462227@macro@USART_CFG_LOOP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_LOOP_MASK", - "location": { - "column": "9", - "line": "6942", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_LOOP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@462287@macro@USART_CFG_LOOP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_LOOP_SHIFT", - "location": { - "column": "9", - "line": "6943", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_LOOP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@462848@macro@USART_CFG_LOOP", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_LOOP", - "location": { - "column": "9", - "line": "6948", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_LOOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@462976@macro@USART_CFG_OETA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_OETA_MASK", - "location": { - "column": "9", - "line": "6949", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_OETA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@463037@macro@USART_CFG_OETA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_OETA_SHIFT", - "location": { - "column": "9", - "line": "6950", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_OETA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@463539@macro@USART_CFG_OETA", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_OETA", - "location": { - "column": "9", - "line": "6955", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_OETA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@463667@macro@USART_CFG_AUTOADDR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_AUTOADDR_MASK", - "location": { - "column": "9", - "line": "6956", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_AUTOADDR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@463728@macro@USART_CFG_AUTOADDR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_AUTOADDR_SHIFT", - "location": { - "column": "9", - "line": "6957", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_AUTOADDR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@464190@macro@USART_CFG_AUTOADDR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_AUTOADDR", - "location": { - "column": "9", - "line": "6962", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_AUTOADDR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@464326@macro@USART_CFG_OESEL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_OESEL_MASK", - "location": { - "column": "9", - "line": "6963", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_OESEL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@464388@macro@USART_CFG_OESEL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_OESEL_SHIFT", - "location": { - "column": "9", - "line": "6964", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_OESEL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@464679@macro@USART_CFG_OESEL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_OESEL", - "location": { - "column": "9", - "line": "6969", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_OESEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@464809@macro@USART_CFG_OEPOL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_OEPOL_MASK", - "location": { - "column": "9", - "line": "6970", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_OEPOL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@464871@macro@USART_CFG_OEPOL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_OEPOL_SHIFT", - "location": { - "column": "9", - "line": "6971", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_OEPOL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@465111@macro@USART_CFG_OEPOL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_OEPOL", - "location": { - "column": "9", - "line": "6976", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_OEPOL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@465241@macro@USART_CFG_RXPOL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_RXPOL_MASK", - "location": { - "column": "9", - "line": "6977", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_RXPOL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@465303@macro@USART_CFG_RXPOL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_RXPOL_SHIFT", - "location": { - "column": "9", - "line": "6978", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_RXPOL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@465746@macro@USART_CFG_RXPOL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_RXPOL", - "location": { - "column": "9", - "line": "6983", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_RXPOL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@465876@macro@USART_CFG_TXPOL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_TXPOL_MASK", - "location": { - "column": "9", - "line": "6984", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_TXPOL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@465938@macro@USART_CFG_TXPOL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_TXPOL_SHIFT", - "location": { - "column": "9", - "line": "6985", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_TXPOL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@466378@macro@USART_CFG_TXPOL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CFG_TXPOL", - "location": { - "column": "9", - "line": "6990", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CFG_TXPOL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@466648@macro@USART_CTL_TXBRKEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_TXBRKEN_MASK", - "location": { - "column": "9", - "line": "6995", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_TXBRKEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@466705@macro@USART_CTL_TXBRKEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_TXBRKEN_SHIFT", - "location": { - "column": "9", - "line": "6996", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_TXBRKEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@467197@macro@USART_CTL_TXBRKEN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_TXBRKEN", - "location": { - "column": "9", - "line": "7001", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_TXBRKEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@467331@macro@USART_CTL_ADDRDET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_ADDRDET_MASK", - "location": { - "column": "9", - "line": "7002", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_ADDRDET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@467388@macro@USART_CTL_ADDRDET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_ADDRDET_SHIFT", - "location": { - "column": "9", - "line": "7003", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_ADDRDET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@467989@macro@USART_CTL_ADDRDET", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_ADDRDET", - "location": { - "column": "9", - "line": "7008", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_ADDRDET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@468123@macro@USART_CTL_TXDIS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_TXDIS_MASK", - "location": { - "column": "9", - "line": "7009", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_TXDIS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@468181@macro@USART_CTL_TXDIS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_TXDIS_SHIFT", - "location": { - "column": "9", - "line": "7010", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_TXDIS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@468504@macro@USART_CTL_TXDIS", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_TXDIS", - "location": { - "column": "9", - "line": "7015", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_TXDIS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@468634@macro@USART_CTL_CC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_CC_MASK", - "location": { - "column": "9", - "line": "7016", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_CC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@468693@macro@USART_CTL_CC_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_CC_SHIFT", - "location": { - "column": "9", - "line": "7017", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_CC_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@469198@macro@USART_CTL_CC", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_CC", - "location": { - "column": "9", - "line": "7022", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_CC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@469322@macro@USART_CTL_CLRCCONRX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_CLRCCONRX_MASK", - "location": { - "column": "9", - "line": "7023", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_CLRCCONRX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@469381@macro@USART_CTL_CLRCCONRX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_CLRCCONRX_SHIFT", - "location": { - "column": "9", - "line": "7024", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_CLRCCONRX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@469669@macro@USART_CTL_CLRCCONRX", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_CLRCCONRX", - "location": { - "column": "9", - "line": "7029", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_CLRCCONRX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@469807@macro@USART_CTL_AUTOBAUD_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_AUTOBAUD_MASK", - "location": { - "column": "9", - "line": "7030", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_AUTOBAUD_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@469868@macro@USART_CTL_AUTOBAUD_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_AUTOBAUD_SHIFT", - "location": { - "column": "9", - "line": "7031", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_AUTOBAUD_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@470307@macro@USART_CTL_AUTOBAUD", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_CTL_AUTOBAUD", - "location": { - "column": "9", - "line": "7036", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_CTL_AUTOBAUD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@470651@macro@USART_STAT_RXIDLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_RXIDLE_MASK", - "location": { - "column": "9", - "line": "7041", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_RXIDLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@470708@macro@USART_STAT_RXIDLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_RXIDLE_SHIFT", - "location": { - "column": "9", - "line": "7042", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_RXIDLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@470763@macro@USART_STAT_RXIDLE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_RXIDLE", - "location": { - "column": "9", - "line": "7043", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_RXIDLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@470897@macro@USART_STAT_TXIDLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_TXIDLE_MASK", - "location": { - "column": "9", - "line": "7044", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_TXIDLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@470954@macro@USART_STAT_TXIDLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_TXIDLE_SHIFT", - "location": { - "column": "9", - "line": "7045", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_TXIDLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@471009@macro@USART_STAT_TXIDLE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_TXIDLE", - "location": { - "column": "9", - "line": "7046", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_TXIDLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@471143@macro@USART_STAT_CTS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_CTS_MASK", - "location": { - "column": "9", - "line": "7047", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_CTS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@471201@macro@USART_STAT_CTS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_CTS_SHIFT", - "location": { - "column": "9", - "line": "7048", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_CTS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@471256@macro@USART_STAT_CTS", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_CTS", - "location": { - "column": "9", - "line": "7049", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_CTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@471384@macro@USART_STAT_DELTACTS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_DELTACTS_MASK", - "location": { - "column": "9", - "line": "7050", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_DELTACTS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@471442@macro@USART_STAT_DELTACTS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_DELTACTS_SHIFT", - "location": { - "column": "9", - "line": "7051", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_DELTACTS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@471497@macro@USART_STAT_DELTACTS", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_DELTACTS", - "location": { - "column": "9", - "line": "7052", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_DELTACTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@471635@macro@USART_STAT_TXDISSTAT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_TXDISSTAT_MASK", - "location": { - "column": "9", - "line": "7053", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_TXDISSTAT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@471693@macro@USART_STAT_TXDISSTAT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_TXDISSTAT_SHIFT", - "location": { - "column": "9", - "line": "7054", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_TXDISSTAT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@471748@macro@USART_STAT_TXDISSTAT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_TXDISSTAT", - "location": { - "column": "9", - "line": "7055", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_TXDISSTAT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@471888@macro@USART_STAT_RXBRK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_RXBRK_MASK", - "location": { - "column": "9", - "line": "7056", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_RXBRK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@471947@macro@USART_STAT_RXBRK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_RXBRK_SHIFT", - "location": { - "column": "9", - "line": "7057", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_RXBRK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@472003@macro@USART_STAT_RXBRK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_RXBRK", - "location": { - "column": "9", - "line": "7058", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_RXBRK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@472135@macro@USART_STAT_DELTARXBRK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_DELTARXBRK_MASK", - "location": { - "column": "9", - "line": "7059", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_DELTARXBRK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@472194@macro@USART_STAT_DELTARXBRK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_DELTARXBRK_SHIFT", - "location": { - "column": "9", - "line": "7060", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_DELTARXBRK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@472250@macro@USART_STAT_DELTARXBRK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_DELTARXBRK", - "location": { - "column": "9", - "line": "7061", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_DELTARXBRK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@472392@macro@USART_STAT_START_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_START_MASK", - "location": { - "column": "9", - "line": "7062", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_START_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@472452@macro@USART_STAT_START_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_START_SHIFT", - "location": { - "column": "9", - "line": "7063", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_START_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@472508@macro@USART_STAT_START", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_START", - "location": { - "column": "9", - "line": "7064", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_START", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@472640@macro@USART_STAT_FRAMERRINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_FRAMERRINT_MASK", - "location": { - "column": "9", - "line": "7065", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_FRAMERRINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@472700@macro@USART_STAT_FRAMERRINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_FRAMERRINT_SHIFT", - "location": { - "column": "9", - "line": "7066", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_FRAMERRINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@472756@macro@USART_STAT_FRAMERRINT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_FRAMERRINT", - "location": { - "column": "9", - "line": "7067", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_FRAMERRINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@472898@macro@USART_STAT_PARITYERRINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_PARITYERRINT_MASK", - "location": { - "column": "9", - "line": "7068", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_PARITYERRINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@472958@macro@USART_STAT_PARITYERRINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_PARITYERRINT_SHIFT", - "location": { - "column": "9", - "line": "7069", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_PARITYERRINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@473014@macro@USART_STAT_PARITYERRINT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_PARITYERRINT", - "location": { - "column": "9", - "line": "7070", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_PARITYERRINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@473160@macro@USART_STAT_RXNOISEINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_RXNOISEINT_MASK", - "location": { - "column": "9", - "line": "7071", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_RXNOISEINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@473220@macro@USART_STAT_RXNOISEINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_RXNOISEINT_SHIFT", - "location": { - "column": "9", - "line": "7072", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_RXNOISEINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@473276@macro@USART_STAT_RXNOISEINT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_RXNOISEINT", - "location": { - "column": "9", - "line": "7073", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_RXNOISEINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@473418@macro@USART_STAT_ABERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_ABERR_MASK", - "location": { - "column": "9", - "line": "7074", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_ABERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@473479@macro@USART_STAT_ABERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_ABERR_SHIFT", - "location": { - "column": "9", - "line": "7075", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_ABERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@473535@macro@USART_STAT_ABERR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_STAT_ABERR", - "location": { - "column": "9", - "line": "7076", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_STAT_ABERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@473982@macro@USART_INTENSET_TXIDLEEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_TXIDLEEN_MASK", - "location": { - "column": "9", - "line": "7081", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_TXIDLEEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@474039@macro@USART_INTENSET_TXIDLEEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_TXIDLEEN_SHIFT", - "location": { - "column": "9", - "line": "7082", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_TXIDLEEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@474094@macro@USART_INTENSET_TXIDLEEN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_TXIDLEEN", - "location": { - "column": "9", - "line": "7083", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_TXIDLEEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@474240@macro@USART_INTENSET_DELTACTSEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_DELTACTSEN_MASK", - "location": { - "column": "9", - "line": "7084", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_DELTACTSEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@474298@macro@USART_INTENSET_DELTACTSEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_DELTACTSEN_SHIFT", - "location": { - "column": "9", - "line": "7085", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_DELTACTSEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@474353@macro@USART_INTENSET_DELTACTSEN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_DELTACTSEN", - "location": { - "column": "9", - "line": "7086", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_DELTACTSEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@474503@macro@USART_INTENSET_TXDISEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_TXDISEN_MASK", - "location": { - "column": "9", - "line": "7087", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_TXDISEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@474561@macro@USART_INTENSET_TXDISEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_TXDISEN_SHIFT", - "location": { - "column": "9", - "line": "7088", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_TXDISEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@474616@macro@USART_INTENSET_TXDISEN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_TXDISEN", - "location": { - "column": "9", - "line": "7089", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_TXDISEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@474760@macro@USART_INTENSET_DELTARXBRKEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_DELTARXBRKEN_MASK", - "location": { - "column": "9", - "line": "7090", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_DELTARXBRKEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@474819@macro@USART_INTENSET_DELTARXBRKEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_DELTARXBRKEN_SHIFT", - "location": { - "column": "9", - "line": "7091", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_DELTARXBRKEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@474875@macro@USART_INTENSET_DELTARXBRKEN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_DELTARXBRKEN", - "location": { - "column": "9", - "line": "7092", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_DELTARXBRKEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@475029@macro@USART_INTENSET_STARTEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_STARTEN_MASK", - "location": { - "column": "9", - "line": "7093", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_STARTEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@475089@macro@USART_INTENSET_STARTEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_STARTEN_SHIFT", - "location": { - "column": "9", - "line": "7094", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_STARTEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@475145@macro@USART_INTENSET_STARTEN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_STARTEN", - "location": { - "column": "9", - "line": "7095", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_STARTEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@475289@macro@USART_INTENSET_FRAMERREN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_FRAMERREN_MASK", - "location": { - "column": "9", - "line": "7096", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_FRAMERREN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@475349@macro@USART_INTENSET_FRAMERREN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_FRAMERREN_SHIFT", - "location": { - "column": "9", - "line": "7097", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_FRAMERREN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@475405@macro@USART_INTENSET_FRAMERREN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_FRAMERREN", - "location": { - "column": "9", - "line": "7098", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_FRAMERREN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@475553@macro@USART_INTENSET_PARITYERREN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_PARITYERREN_MASK", - "location": { - "column": "9", - "line": "7099", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_PARITYERREN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@475613@macro@USART_INTENSET_PARITYERREN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_PARITYERREN_SHIFT", - "location": { - "column": "9", - "line": "7100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_PARITYERREN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@475669@macro@USART_INTENSET_PARITYERREN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_PARITYERREN", - "location": { - "column": "9", - "line": "7101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_PARITYERREN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@475821@macro@USART_INTENSET_RXNOISEEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_RXNOISEEN_MASK", - "location": { - "column": "9", - "line": "7102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_RXNOISEEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@475881@macro@USART_INTENSET_RXNOISEEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_RXNOISEEN_SHIFT", - "location": { - "column": "9", - "line": "7103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_RXNOISEEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@475937@macro@USART_INTENSET_RXNOISEEN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_RXNOISEEN", - "location": { - "column": "9", - "line": "7104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_RXNOISEEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@476085@macro@USART_INTENSET_ABERREN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_ABERREN_MASK", - "location": { - "column": "9", - "line": "7105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_ABERREN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@476146@macro@USART_INTENSET_ABERREN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_ABERREN_SHIFT", - "location": { - "column": "9", - "line": "7106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_ABERREN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@476202@macro@USART_INTENSET_ABERREN", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENSET_ABERREN", - "location": { - "column": "9", - "line": "7107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENSET_ABERREN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@476582@macro@USART_INTENCLR_TXIDLECLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_TXIDLECLR_MASK", - "location": { - "column": "9", - "line": "7112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_TXIDLECLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@476639@macro@USART_INTENCLR_TXIDLECLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_TXIDLECLR_SHIFT", - "location": { - "column": "9", - "line": "7113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_TXIDLECLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@476694@macro@USART_INTENCLR_TXIDLECLR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_TXIDLECLR", - "location": { - "column": "9", - "line": "7114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_TXIDLECLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@476842@macro@USART_INTENCLR_DELTACTSCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_DELTACTSCLR_MASK", - "location": { - "column": "9", - "line": "7115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_DELTACTSCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@476900@macro@USART_INTENCLR_DELTACTSCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_DELTACTSCLR_SHIFT", - "location": { - "column": "9", - "line": "7116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_DELTACTSCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@476955@macro@USART_INTENCLR_DELTACTSCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_DELTACTSCLR", - "location": { - "column": "9", - "line": "7117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_DELTACTSCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@477107@macro@USART_INTENCLR_TXDISCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_TXDISCLR_MASK", - "location": { - "column": "9", - "line": "7118", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_TXDISCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@477165@macro@USART_INTENCLR_TXDISCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_TXDISCLR_SHIFT", - "location": { - "column": "9", - "line": "7119", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_TXDISCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@477220@macro@USART_INTENCLR_TXDISCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_TXDISCLR", - "location": { - "column": "9", - "line": "7120", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_TXDISCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@477366@macro@USART_INTENCLR_DELTARXBRKCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_DELTARXBRKCLR_MASK", - "location": { - "column": "9", - "line": "7121", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_DELTARXBRKCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@477425@macro@USART_INTENCLR_DELTARXBRKCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_DELTARXBRKCLR_SHIFT", - "location": { - "column": "9", - "line": "7122", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_DELTARXBRKCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@477481@macro@USART_INTENCLR_DELTARXBRKCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_DELTARXBRKCLR", - "location": { - "column": "9", - "line": "7123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_DELTARXBRKCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@477637@macro@USART_INTENCLR_STARTCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_STARTCLR_MASK", - "location": { - "column": "9", - "line": "7124", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_STARTCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@477697@macro@USART_INTENCLR_STARTCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_STARTCLR_SHIFT", - "location": { - "column": "9", - "line": "7125", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_STARTCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@477753@macro@USART_INTENCLR_STARTCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_STARTCLR", - "location": { - "column": "9", - "line": "7126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_STARTCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@477899@macro@USART_INTENCLR_FRAMERRCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_FRAMERRCLR_MASK", - "location": { - "column": "9", - "line": "7127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_FRAMERRCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@477959@macro@USART_INTENCLR_FRAMERRCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_FRAMERRCLR_SHIFT", - "location": { - "column": "9", - "line": "7128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_FRAMERRCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@478015@macro@USART_INTENCLR_FRAMERRCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_FRAMERRCLR", - "location": { - "column": "9", - "line": "7129", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_FRAMERRCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@478165@macro@USART_INTENCLR_PARITYERRCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_PARITYERRCLR_MASK", - "location": { - "column": "9", - "line": "7130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_PARITYERRCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@478225@macro@USART_INTENCLR_PARITYERRCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_PARITYERRCLR_SHIFT", - "location": { - "column": "9", - "line": "7131", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_PARITYERRCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@478281@macro@USART_INTENCLR_PARITYERRCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_PARITYERRCLR", - "location": { - "column": "9", - "line": "7132", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_PARITYERRCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@478435@macro@USART_INTENCLR_RXNOISECLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_RXNOISECLR_MASK", - "location": { - "column": "9", - "line": "7133", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_RXNOISECLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@478495@macro@USART_INTENCLR_RXNOISECLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_RXNOISECLR_SHIFT", - "location": { - "column": "9", - "line": "7134", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_RXNOISECLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@478551@macro@USART_INTENCLR_RXNOISECLR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_RXNOISECLR", - "location": { - "column": "9", - "line": "7135", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_RXNOISECLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@478701@macro@USART_INTENCLR_ABERRCLR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_ABERRCLR_MASK", - "location": { - "column": "9", - "line": "7136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_ABERRCLR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@478762@macro@USART_INTENCLR_ABERRCLR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_ABERRCLR_SHIFT", - "location": { - "column": "9", - "line": "7137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_ABERRCLR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@478818@macro@USART_INTENCLR_ABERRCLR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTENCLR_ABERRCLR", - "location": { - "column": "9", - "line": "7138", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTENCLR_ABERRCLR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@479078@macro@USART_BRG_BRGVAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_BRG_BRGVAL_MASK", - "location": { - "column": "9", - "line": "7143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_BRG_BRGVAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@479138@macro@USART_BRG_BRGVAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_BRG_BRGVAL_SHIFT", - "location": { - "column": "9", - "line": "7144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_BRG_BRGVAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@479193@macro@USART_BRG_BRGVAL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_BRG_BRGVAL", - "location": { - "column": "9", - "line": "7145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_BRG_BRGVAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@479448@macro@USART_INTSTAT_TXIDLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_TXIDLE_MASK", - "location": { - "column": "9", - "line": "7150", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_TXIDLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@479505@macro@USART_INTSTAT_TXIDLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_TXIDLE_SHIFT", - "location": { - "column": "9", - "line": "7151", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_TXIDLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@479560@macro@USART_INTSTAT_TXIDLE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_TXIDLE", - "location": { - "column": "9", - "line": "7152", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_TXIDLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@479700@macro@USART_INTSTAT_DELTACTS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_DELTACTS_MASK", - "location": { - "column": "9", - "line": "7153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_DELTACTS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@479758@macro@USART_INTSTAT_DELTACTS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_DELTACTS_SHIFT", - "location": { - "column": "9", - "line": "7154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_DELTACTS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@479813@macro@USART_INTSTAT_DELTACTS", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_DELTACTS", - "location": { - "column": "9", - "line": "7155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_DELTACTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@479957@macro@USART_INTSTAT_TXDISINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_TXDISINT_MASK", - "location": { - "column": "9", - "line": "7156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_TXDISINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@480015@macro@USART_INTSTAT_TXDISINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_TXDISINT_SHIFT", - "location": { - "column": "9", - "line": "7157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_TXDISINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@480070@macro@USART_INTSTAT_TXDISINT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_TXDISINT", - "location": { - "column": "9", - "line": "7158", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_TXDISINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@480214@macro@USART_INTSTAT_DELTARXBRK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_DELTARXBRK_MASK", - "location": { - "column": "9", - "line": "7159", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_DELTARXBRK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@480273@macro@USART_INTSTAT_DELTARXBRK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_DELTARXBRK_SHIFT", - "location": { - "column": "9", - "line": "7160", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_DELTARXBRK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@480329@macro@USART_INTSTAT_DELTARXBRK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_DELTARXBRK", - "location": { - "column": "9", - "line": "7161", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_DELTARXBRK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@480477@macro@USART_INTSTAT_START_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_START_MASK", - "location": { - "column": "9", - "line": "7162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_START_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@480537@macro@USART_INTSTAT_START_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_START_SHIFT", - "location": { - "column": "9", - "line": "7163", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_START_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@480593@macro@USART_INTSTAT_START", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_START", - "location": { - "column": "9", - "line": "7164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_START", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@480731@macro@USART_INTSTAT_FRAMERRINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_FRAMERRINT_MASK", - "location": { - "column": "9", - "line": "7165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_FRAMERRINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@480791@macro@USART_INTSTAT_FRAMERRINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_FRAMERRINT_SHIFT", - "location": { - "column": "9", - "line": "7166", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_FRAMERRINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@480847@macro@USART_INTSTAT_FRAMERRINT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_FRAMERRINT", - "location": { - "column": "9", - "line": "7167", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_FRAMERRINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@480995@macro@USART_INTSTAT_PARITYERRINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_PARITYERRINT_MASK", - "location": { - "column": "9", - "line": "7168", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_PARITYERRINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@481055@macro@USART_INTSTAT_PARITYERRINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_PARITYERRINT_SHIFT", - "location": { - "column": "9", - "line": "7169", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_PARITYERRINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@481111@macro@USART_INTSTAT_PARITYERRINT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_PARITYERRINT", - "location": { - "column": "9", - "line": "7170", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_PARITYERRINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@481263@macro@USART_INTSTAT_RXNOISEINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_RXNOISEINT_MASK", - "location": { - "column": "9", - "line": "7171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_RXNOISEINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@481323@macro@USART_INTSTAT_RXNOISEINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_RXNOISEINT_SHIFT", - "location": { - "column": "9", - "line": "7172", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_RXNOISEINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@481379@macro@USART_INTSTAT_RXNOISEINT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_RXNOISEINT", - "location": { - "column": "9", - "line": "7173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_RXNOISEINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@481527@macro@USART_INTSTAT_ABERRINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_ABERRINT_MASK", - "location": { - "column": "9", - "line": "7174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_ABERRINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@481588@macro@USART_INTSTAT_ABERRINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_ABERRINT_SHIFT", - "location": { - "column": "9", - "line": "7175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_ABERRINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@481644@macro@USART_INTSTAT_ABERRINT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_INTSTAT_ABERRINT", - "location": { - "column": "9", - "line": "7176", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_INTSTAT_ABERRINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@481894@macro@USART_OSR_OSRVAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_OSR_OSRVAL_MASK", - "location": { - "column": "9", - "line": "7181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_OSR_OSRVAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@481951@macro@USART_OSR_OSRVAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_OSR_OSRVAL_SHIFT", - "location": { - "column": "9", - "line": "7182", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_OSR_OSRVAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@482006@macro@USART_OSR_OSRVAL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_OSR_OSRVAL", - "location": { - "column": "9", - "line": "7183", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_OSR_OSRVAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@482232@macro@USART_ADDR_ADDRESS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ADDR_ADDRESS_MASK", - "location": { - "column": "9", - "line": "7188", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ADDR_ADDRESS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@482290@macro@USART_ADDR_ADDRESS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ADDR_ADDRESS_SHIFT", - "location": { - "column": "9", - "line": "7189", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ADDR_ADDRESS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@482345@macro@USART_ADDR_ADDRESS", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ADDR_ADDRESS", - "location": { - "column": "9", - "line": "7190", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ADDR_ADDRESS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@482569@macro@USART_FIFOCFG_ENABLETX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_ENABLETX_MASK", - "location": { - "column": "9", - "line": "7195", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_ENABLETX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@482626@macro@USART_FIFOCFG_ENABLETX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_ENABLETX_SHIFT", - "location": { - "column": "9", - "line": "7196", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_ENABLETX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@482812@macro@USART_FIFOCFG_ENABLETX", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_ENABLETX", - "location": { - "column": "9", - "line": "7201", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_ENABLETX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@482956@macro@USART_FIFOCFG_ENABLERX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_ENABLERX_MASK", - "location": { - "column": "9", - "line": "7202", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_ENABLERX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@483013@macro@USART_FIFOCFG_ENABLERX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_ENABLERX_SHIFT", - "location": { - "column": "9", - "line": "7203", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_ENABLERX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@483196@macro@USART_FIFOCFG_ENABLERX", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_ENABLERX", - "location": { - "column": "9", - "line": "7208", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_ENABLERX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@483340@macro@USART_FIFOCFG_SIZE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_SIZE_MASK", - "location": { - "column": "9", - "line": "7209", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_SIZE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@483398@macro@USART_FIFOCFG_SIZE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_SIZE_SHIFT", - "location": { - "column": "9", - "line": "7210", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_SIZE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@483453@macro@USART_FIFOCFG_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_SIZE", - "location": { - "column": "9", - "line": "7211", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@483589@macro@USART_FIFOCFG_DMATX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_DMATX_MASK", - "location": { - "column": "9", - "line": "7212", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_DMATX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@483649@macro@USART_FIFOCFG_DMATX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_DMATX_SHIFT", - "location": { - "column": "9", - "line": "7213", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_DMATX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@483945@macro@USART_FIFOCFG_DMATX", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_DMATX", - "location": { - "column": "9", - "line": "7218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_DMATX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@484083@macro@USART_FIFOCFG_DMARX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_DMARX_MASK", - "location": { - "column": "9", - "line": "7219", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_DMARX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@484143@macro@USART_FIFOCFG_DMARX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_DMARX_SHIFT", - "location": { - "column": "9", - "line": "7220", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_DMARX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@484437@macro@USART_FIFOCFG_DMARX", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_DMARX", - "location": { - "column": "9", - "line": "7225", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_DMARX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@484575@macro@USART_FIFOCFG_WAKETX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_WAKETX_MASK", - "location": { - "column": "9", - "line": "7226", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_WAKETX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@484635@macro@USART_FIFOCFG_WAKETX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_WAKETX_SHIFT", - "location": { - "column": "9", - "line": "7227", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_WAKETX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@485354@macro@USART_FIFOCFG_WAKETX", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_WAKETX", - "location": { - "column": "9", - "line": "7232", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_WAKETX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@485494@macro@USART_FIFOCFG_WAKERX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_WAKERX_MASK", - "location": { - "column": "9", - "line": "7233", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_WAKERX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@485554@macro@USART_FIFOCFG_WAKERX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_WAKERX_SHIFT", - "location": { - "column": "9", - "line": "7234", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_WAKERX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@486271@macro@USART_FIFOCFG_WAKERX", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_WAKERX", - "location": { - "column": "9", - "line": "7239", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_WAKERX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@486411@macro@USART_FIFOCFG_EMPTYTX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_EMPTYTX_MASK", - "location": { - "column": "9", - "line": "7240", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_EMPTYTX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@486472@macro@USART_FIFOCFG_EMPTYTX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_EMPTYTX_SHIFT", - "location": { - "column": "9", - "line": "7241", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_EMPTYTX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@486528@macro@USART_FIFOCFG_EMPTYTX", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_EMPTYTX", - "location": { - "column": "9", - "line": "7242", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_EMPTYTX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@486670@macro@USART_FIFOCFG_EMPTYRX_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_EMPTYRX_MASK", - "location": { - "column": "9", - "line": "7243", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_EMPTYRX_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@486731@macro@USART_FIFOCFG_EMPTYRX_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_EMPTYRX_SHIFT", - "location": { - "column": "9", - "line": "7244", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_EMPTYRX_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@486787@macro@USART_FIFOCFG_EMPTYRX", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOCFG_EMPTYRX", - "location": { - "column": "9", - "line": "7245", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOCFG_EMPTYRX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@487000@macro@USART_FIFOSTAT_TXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_TXERR_MASK", - "location": { - "column": "9", - "line": "7250", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_TXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@487057@macro@USART_FIFOSTAT_TXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_TXERR_SHIFT", - "location": { - "column": "9", - "line": "7251", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_TXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@487112@macro@USART_FIFOSTAT_TXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_TXERR", - "location": { - "column": "9", - "line": "7252", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_TXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@487252@macro@USART_FIFOSTAT_RXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_RXERR_MASK", - "location": { - "column": "9", - "line": "7253", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_RXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@487309@macro@USART_FIFOSTAT_RXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_RXERR_SHIFT", - "location": { - "column": "9", - "line": "7254", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_RXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@487364@macro@USART_FIFOSTAT_RXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_RXERR", - "location": { - "column": "9", - "line": "7255", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_RXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@487504@macro@USART_FIFOSTAT_PERINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_PERINT_MASK", - "location": { - "column": "9", - "line": "7256", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_PERINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@487561@macro@USART_FIFOSTAT_PERINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_PERINT_SHIFT", - "location": { - "column": "9", - "line": "7257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_PERINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@487616@macro@USART_FIFOSTAT_PERINT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_PERINT", - "location": { - "column": "9", - "line": "7258", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_PERINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@487758@macro@USART_FIFOSTAT_TXEMPTY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_TXEMPTY_MASK", - "location": { - "column": "9", - "line": "7259", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_TXEMPTY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@487816@macro@USART_FIFOSTAT_TXEMPTY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_TXEMPTY_SHIFT", - "location": { - "column": "9", - "line": "7260", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_TXEMPTY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@487871@macro@USART_FIFOSTAT_TXEMPTY", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_TXEMPTY", - "location": { - "column": "9", - "line": "7261", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_TXEMPTY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@488015@macro@USART_FIFOSTAT_TXNOTFULL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_TXNOTFULL_MASK", - "location": { - "column": "9", - "line": "7262", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_TXNOTFULL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@488073@macro@USART_FIFOSTAT_TXNOTFULL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_TXNOTFULL_SHIFT", - "location": { - "column": "9", - "line": "7263", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_TXNOTFULL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@488128@macro@USART_FIFOSTAT_TXNOTFULL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_TXNOTFULL", - "location": { - "column": "9", - "line": "7264", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_TXNOTFULL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@488276@macro@USART_FIFOSTAT_RXNOTEMPTY_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_RXNOTEMPTY_MASK", - "location": { - "column": "9", - "line": "7265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_RXNOTEMPTY_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@488334@macro@USART_FIFOSTAT_RXNOTEMPTY_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_RXNOTEMPTY_SHIFT", - "location": { - "column": "9", - "line": "7266", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_RXNOTEMPTY_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@488389@macro@USART_FIFOSTAT_RXNOTEMPTY", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_RXNOTEMPTY", - "location": { - "column": "9", - "line": "7267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_RXNOTEMPTY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@488539@macro@USART_FIFOSTAT_RXFULL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_RXFULL_MASK", - "location": { - "column": "9", - "line": "7268", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_RXFULL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@488597@macro@USART_FIFOSTAT_RXFULL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_RXFULL_SHIFT", - "location": { - "column": "9", - "line": "7269", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_RXFULL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@488652@macro@USART_FIFOSTAT_RXFULL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_RXFULL", - "location": { - "column": "9", - "line": "7270", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_RXFULL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@488794@macro@USART_FIFOSTAT_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_TXLVL_MASK", - "location": { - "column": "9", - "line": "7271", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@488854@macro@USART_FIFOSTAT_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "7272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@488909@macro@USART_FIFOSTAT_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_TXLVL", - "location": { - "column": "9", - "line": "7273", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@489049@macro@USART_FIFOSTAT_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_RXLVL_MASK", - "location": { - "column": "9", - "line": "7274", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@489111@macro@USART_FIFOSTAT_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "7275", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@489167@macro@USART_FIFOSTAT_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOSTAT_RXLVL", - "location": { - "column": "9", - "line": "7276", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOSTAT_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@489409@macro@USART_FIFOTRIG_TXLVLENA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_TXLVLENA_MASK", - "location": { - "column": "9", - "line": "7281", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOTRIG_TXLVLENA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@489466@macro@USART_FIFOTRIG_TXLVLENA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_TXLVLENA_SHIFT", - "location": { - "column": "9", - "line": "7282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOTRIG_TXLVLENA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@489890@macro@USART_FIFOTRIG_TXLVLENA", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_TXLVLENA", - "location": { - "column": "9", - "line": "7287", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOTRIG_TXLVLENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@490036@macro@USART_FIFOTRIG_RXLVLENA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_RXLVLENA_MASK", - "location": { - "column": "9", - "line": "7288", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOTRIG_RXLVLENA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@490093@macro@USART_FIFOTRIG_RXLVLENA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_RXLVLENA_SHIFT", - "location": { - "column": "9", - "line": "7289", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOTRIG_RXLVLENA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@490514@macro@USART_FIFOTRIG_RXLVLENA", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_RXLVLENA", - "location": { - "column": "9", - "line": "7294", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOTRIG_RXLVLENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@490660@macro@USART_FIFOTRIG_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_TXLVL_MASK", - "location": { - "column": "9", - "line": "7295", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOTRIG_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@490719@macro@USART_FIFOTRIG_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "7296", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOTRIG_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@490774@macro@USART_FIFOTRIG_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_TXLVL", - "location": { - "column": "9", - "line": "7297", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOTRIG_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@490914@macro@USART_FIFOTRIG_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_RXLVL_MASK", - "location": { - "column": "9", - "line": "7298", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOTRIG_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@490975@macro@USART_FIFOTRIG_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "7299", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOTRIG_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@491031@macro@USART_FIFOTRIG_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_RXLVL", - "location": { - "column": "9", - "line": "7300", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOTRIG_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@491278@macro@USART_FIFOINTENSET_TXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENSET_TXERR_MASK", - "location": { - "column": "9", - "line": "7305", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENSET_TXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@491335@macro@USART_FIFOINTENSET_TXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENSET_TXERR_SHIFT", - "location": { - "column": "9", - "line": "7306", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENSET_TXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@491661@macro@USART_FIFOINTENSET_TXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENSET_TXERR", - "location": { - "column": "9", - "line": "7311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENSET_TXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@491809@macro@USART_FIFOINTENSET_RXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENSET_RXERR_MASK", - "location": { - "column": "9", - "line": "7312", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENSET_RXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@491866@macro@USART_FIFOINTENSET_RXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENSET_RXERR_SHIFT", - "location": { - "column": "9", - "line": "7313", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENSET_RXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@492189@macro@USART_FIFOINTENSET_RXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENSET_RXERR", - "location": { - "column": "9", - "line": "7318", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENSET_RXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@492337@macro@USART_FIFOINTENSET_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENSET_TXLVL_MASK", - "location": { - "column": "9", - "line": "7319", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENSET_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@492394@macro@USART_FIFOINTENSET_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENSET_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "7320", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENSET_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@492847@macro@USART_FIFOINTENSET_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENSET_TXLVL", - "location": { - "column": "9", - "line": "7325", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENSET_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@492995@macro@USART_FIFOINTENSET_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENSET_RXLVL_MASK", - "location": { - "column": "9", - "line": "7326", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENSET_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@493052@macro@USART_FIFOINTENSET_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENSET_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "7327", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENSET_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@493513@macro@USART_FIFOINTENSET_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENSET_RXLVL", - "location": { - "column": "9", - "line": "7332", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENSET_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@493771@macro@USART_FIFOINTENCLR_TXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENCLR_TXERR_MASK", - "location": { - "column": "9", - "line": "7337", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENCLR_TXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@493828@macro@USART_FIFOINTENCLR_TXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENCLR_TXERR_SHIFT", - "location": { - "column": "9", - "line": "7338", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENCLR_TXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@493883@macro@USART_FIFOINTENCLR_TXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENCLR_TXERR", - "location": { - "column": "9", - "line": "7339", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENCLR_TXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@494031@macro@USART_FIFOINTENCLR_RXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENCLR_RXERR_MASK", - "location": { - "column": "9", - "line": "7340", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENCLR_RXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@494088@macro@USART_FIFOINTENCLR_RXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENCLR_RXERR_SHIFT", - "location": { - "column": "9", - "line": "7341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENCLR_RXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@494143@macro@USART_FIFOINTENCLR_RXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENCLR_RXERR", - "location": { - "column": "9", - "line": "7342", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENCLR_RXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@494291@macro@USART_FIFOINTENCLR_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENCLR_TXLVL_MASK", - "location": { - "column": "9", - "line": "7343", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENCLR_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@494348@macro@USART_FIFOINTENCLR_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENCLR_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "7344", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENCLR_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@494403@macro@USART_FIFOINTENCLR_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENCLR_TXLVL", - "location": { - "column": "9", - "line": "7345", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENCLR_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@494551@macro@USART_FIFOINTENCLR_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENCLR_RXLVL_MASK", - "location": { - "column": "9", - "line": "7346", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENCLR_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@494608@macro@USART_FIFOINTENCLR_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENCLR_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "7347", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENCLR_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@494663@macro@USART_FIFOINTENCLR_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTENCLR_RXLVL", - "location": { - "column": "9", - "line": "7348", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTENCLR_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@494895@macro@USART_FIFOINTSTAT_TXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_TXERR_MASK", - "location": { - "column": "9", - "line": "7353", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_TXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@494952@macro@USART_FIFOINTSTAT_TXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_TXERR_SHIFT", - "location": { - "column": "9", - "line": "7354", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_TXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@495007@macro@USART_FIFOINTSTAT_TXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_TXERR", - "location": { - "column": "9", - "line": "7355", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_TXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@495153@macro@USART_FIFOINTSTAT_RXERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_RXERR_MASK", - "location": { - "column": "9", - "line": "7356", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_RXERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@495210@macro@USART_FIFOINTSTAT_RXERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_RXERR_SHIFT", - "location": { - "column": "9", - "line": "7357", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_RXERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@495265@macro@USART_FIFOINTSTAT_RXERR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_RXERR", - "location": { - "column": "9", - "line": "7358", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_RXERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@495411@macro@USART_FIFOINTSTAT_TXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_TXLVL_MASK", - "location": { - "column": "9", - "line": "7359", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_TXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@495468@macro@USART_FIFOINTSTAT_TXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_TXLVL_SHIFT", - "location": { - "column": "9", - "line": "7360", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_TXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@495523@macro@USART_FIFOINTSTAT_TXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_TXLVL", - "location": { - "column": "9", - "line": "7361", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_TXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@495669@macro@USART_FIFOINTSTAT_RXLVL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_RXLVL_MASK", - "location": { - "column": "9", - "line": "7362", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_RXLVL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@495726@macro@USART_FIFOINTSTAT_RXLVL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_RXLVL_SHIFT", - "location": { - "column": "9", - "line": "7363", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_RXLVL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@495781@macro@USART_FIFOINTSTAT_RXLVL", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_RXLVL", - "location": { - "column": "9", - "line": "7364", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_RXLVL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@495927@macro@USART_FIFOINTSTAT_PERINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_PERINT_MASK", - "location": { - "column": "9", - "line": "7365", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_PERINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@495985@macro@USART_FIFOINTSTAT_PERINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_PERINT_SHIFT", - "location": { - "column": "9", - "line": "7366", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_PERINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@496040@macro@USART_FIFOINTSTAT_PERINT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOINTSTAT_PERINT", - "location": { - "column": "9", - "line": "7367", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOINTSTAT_PERINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@496252@macro@USART_FIFOWR_TXDATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOWR_TXDATA_MASK", - "location": { - "column": "9", - "line": "7372", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOWR_TXDATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@496311@macro@USART_FIFOWR_TXDATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOWR_TXDATA_SHIFT", - "location": { - "column": "9", - "line": "7373", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOWR_TXDATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@496366@macro@USART_FIFOWR_TXDATA", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOWR_TXDATA", - "location": { - "column": "9", - "line": "7374", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFOWR_TXDATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@496567@macro@USART_FIFORD_RXDATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORD_RXDATA_MASK", - "location": { - "column": "9", - "line": "7379", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORD_RXDATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@496626@macro@USART_FIFORD_RXDATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORD_RXDATA_SHIFT", - "location": { - "column": "9", - "line": "7380", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORD_RXDATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@496681@macro@USART_FIFORD_RXDATA", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORD_RXDATA", - "location": { - "column": "9", - "line": "7381", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORD_RXDATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@496819@macro@USART_FIFORD_FRAMERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORD_FRAMERR_MASK", - "location": { - "column": "9", - "line": "7382", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORD_FRAMERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@496879@macro@USART_FIFORD_FRAMERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORD_FRAMERR_SHIFT", - "location": { - "column": "9", - "line": "7383", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORD_FRAMERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@496935@macro@USART_FIFORD_FRAMERR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORD_FRAMERR", - "location": { - "column": "9", - "line": "7384", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORD_FRAMERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@497075@macro@USART_FIFORD_PARITYERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORD_PARITYERR_MASK", - "location": { - "column": "9", - "line": "7385", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORD_PARITYERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@497135@macro@USART_FIFORD_PARITYERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORD_PARITYERR_SHIFT", - "location": { - "column": "9", - "line": "7386", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORD_PARITYERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@497191@macro@USART_FIFORD_PARITYERR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORD_PARITYERR", - "location": { - "column": "9", - "line": "7387", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORD_PARITYERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@497335@macro@USART_FIFORD_RXNOISE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORD_RXNOISE_MASK", - "location": { - "column": "9", - "line": "7388", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORD_RXNOISE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@497395@macro@USART_FIFORD_RXNOISE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORD_RXNOISE_SHIFT", - "location": { - "column": "9", - "line": "7389", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORD_RXNOISE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@497451@macro@USART_FIFORD_RXNOISE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORD_RXNOISE", - "location": { - "column": "9", - "line": "7390", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORD_RXNOISE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@497676@macro@USART_FIFORDNOPOP_RXDATA_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORDNOPOP_RXDATA_MASK", - "location": { - "column": "9", - "line": "7395", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORDNOPOP_RXDATA_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@497735@macro@USART_FIFORDNOPOP_RXDATA_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORDNOPOP_RXDATA_SHIFT", - "location": { - "column": "9", - "line": "7396", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORDNOPOP_RXDATA_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@497790@macro@USART_FIFORDNOPOP_RXDATA", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORDNOPOP_RXDATA", - "location": { - "column": "9", - "line": "7397", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORDNOPOP_RXDATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@497938@macro@USART_FIFORDNOPOP_FRAMERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORDNOPOP_FRAMERR_MASK", - "location": { - "column": "9", - "line": "7398", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORDNOPOP_FRAMERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@497998@macro@USART_FIFORDNOPOP_FRAMERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORDNOPOP_FRAMERR_SHIFT", - "location": { - "column": "9", - "line": "7399", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORDNOPOP_FRAMERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@498054@macro@USART_FIFORDNOPOP_FRAMERR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORDNOPOP_FRAMERR", - "location": { - "column": "9", - "line": "7400", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORDNOPOP_FRAMERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@498204@macro@USART_FIFORDNOPOP_PARITYERR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORDNOPOP_PARITYERR_MASK", - "location": { - "column": "9", - "line": "7401", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORDNOPOP_PARITYERR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@498264@macro@USART_FIFORDNOPOP_PARITYERR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORDNOPOP_PARITYERR_SHIFT", - "location": { - "column": "9", - "line": "7402", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORDNOPOP_PARITYERR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@498320@macro@USART_FIFORDNOPOP_PARITYERR", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORDNOPOP_PARITYERR", - "location": { - "column": "9", - "line": "7403", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORDNOPOP_PARITYERR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@498474@macro@USART_FIFORDNOPOP_RXNOISE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORDNOPOP_RXNOISE_MASK", - "location": { - "column": "9", - "line": "7404", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORDNOPOP_RXNOISE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@498534@macro@USART_FIFORDNOPOP_RXNOISE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORDNOPOP_RXNOISE_SHIFT", - "location": { - "column": "9", - "line": "7405", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORDNOPOP_RXNOISE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@498590@macro@USART_FIFORDNOPOP_RXNOISE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFORDNOPOP_RXNOISE", - "location": { - "column": "9", - "line": "7406", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_FIFORDNOPOP_RXNOISE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@498819@macro@USART_ID_APERTURE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ID_APERTURE_MASK", - "location": { - "column": "9", - "line": "7411", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ID_APERTURE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@498877@macro@USART_ID_APERTURE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ID_APERTURE_SHIFT", - "location": { - "column": "9", - "line": "7412", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ID_APERTURE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@498932@macro@USART_ID_APERTURE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ID_APERTURE", - "location": { - "column": "9", - "line": "7413", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ID_APERTURE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@499066@macro@USART_ID_MINOR_REV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ID_MINOR_REV_MASK", - "location": { - "column": "9", - "line": "7414", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ID_MINOR_REV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@499125@macro@USART_ID_MINOR_REV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ID_MINOR_REV_SHIFT", - "location": { - "column": "9", - "line": "7415", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ID_MINOR_REV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@499180@macro@USART_ID_MINOR_REV", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ID_MINOR_REV", - "location": { - "column": "9", - "line": "7416", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ID_MINOR_REV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@499316@macro@USART_ID_MAJOR_REV_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ID_MAJOR_REV_MASK", - "location": { - "column": "9", - "line": "7417", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ID_MAJOR_REV_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@499376@macro@USART_ID_MAJOR_REV_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ID_MAJOR_REV_SHIFT", - "location": { - "column": "9", - "line": "7418", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ID_MAJOR_REV_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@499432@macro@USART_ID_MAJOR_REV", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ID_MAJOR_REV", - "location": { - "column": "9", - "line": "7419", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ID_MAJOR_REV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@499568@macro@USART_ID_ID_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ID_ID_MASK", - "location": { - "column": "9", - "line": "7420", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ID_ID_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@499632@macro@USART_ID_ID_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ID_ID_SHIFT", - "location": { - "column": "9", - "line": "7421", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ID_ID_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@499688@macro@USART_ID_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_ID_ID", - "location": { - "column": "9", - "line": "7422", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_ID_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@499975@macro@USART0_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART0_BASE", - "location": { - "column": "9", - "line": "7433", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART0_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@500078@macro@USART0", - "What": "MacroDef", - "defdec": "Def", - "display": "USART0", - "location": { - "column": "9", - "line": "7435", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@500195@macro@USART1_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART1_BASE", - "location": { - "column": "9", - "line": "7437", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART1_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@500298@macro@USART1", - "What": "MacroDef", - "defdec": "Def", - "display": "USART1", - "location": { - "column": "9", - "line": "7439", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@500415@macro@USART2_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART2_BASE", - "location": { - "column": "9", - "line": "7441", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART2_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@500518@macro@USART2", - "What": "MacroDef", - "defdec": "Def", - "display": "USART2", - "location": { - "column": "9", - "line": "7443", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@500635@macro@USART3_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART3_BASE", - "location": { - "column": "9", - "line": "7445", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART3_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@500738@macro@USART3", - "What": "MacroDef", - "defdec": "Def", - "display": "USART3", - "location": { - "column": "9", - "line": "7447", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@500855@macro@USART4_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART4_BASE", - "location": { - "column": "9", - "line": "7449", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART4_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@500958@macro@USART4", - "What": "MacroDef", - "defdec": "Def", - "display": "USART4", - "location": { - "column": "9", - "line": "7451", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@501075@macro@USART5_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART5_BASE", - "location": { - "column": "9", - "line": "7453", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART5_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@501178@macro@USART5", - "What": "MacroDef", - "defdec": "Def", - "display": "USART5", - "location": { - "column": "9", - "line": "7455", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@501295@macro@USART6_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART6_BASE", - "location": { - "column": "9", - "line": "7457", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART6_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@501398@macro@USART6", - "What": "MacroDef", - "defdec": "Def", - "display": "USART6", - "location": { - "column": "9", - "line": "7459", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@501515@macro@USART7_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "USART7_BASE", - "location": { - "column": "9", - "line": "7461", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART7_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@501618@macro@USART7", - "What": "MacroDef", - "defdec": "Def", - "display": "USART7", - "location": { - "column": "9", - "line": "7463", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@501757@macro@USART_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_BASE_ADDRS", - "location": { - "column": "9", - "line": "7465", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@501974@macro@USART_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_BASE_PTRS", - "location": { - "column": "9", - "line": "7467", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@502147@macro@USART_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_IRQS", - "location": { - "column": "9", - "line": "7469", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USART_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@USB_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "7486", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@USB_Type@FI@DEVCMDSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "DEVCMDSTAT", - "location": { - "column": "17", - "line": "7487", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DEVCMDSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7486_9" - }, - { - "ID": "c:@SA@USB_Type@FI@INFO", - "What": "FieldDecl", - "defdec": "Def", - "display": "INFO", - "location": { - "column": "17", - "line": "7488", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INFO", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7486_9" - }, - { - "ID": "c:@SA@USB_Type@FI@EPLISTSTART", - "What": "FieldDecl", - "defdec": "Def", - "display": "EPLISTSTART", - "location": { - "column": "17", - "line": "7489", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "EPLISTSTART", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7486_9" - }, - { - "ID": "c:@SA@USB_Type@FI@DATABUFSTART", - "What": "FieldDecl", - "defdec": "Def", - "display": "DATABUFSTART", - "location": { - "column": "17", - "line": "7490", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "DATABUFSTART", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7486_9" - }, - { - "ID": "c:@SA@USB_Type@FI@LPM", - "What": "FieldDecl", - "defdec": "Def", - "display": "LPM", - "location": { - "column": "17", - "line": "7491", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "LPM", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7486_9" - }, - { - "ID": "c:@SA@USB_Type@FI@EPSKIP", - "What": "FieldDecl", - "defdec": "Def", - "display": "EPSKIP", - "location": { - "column": "17", - "line": "7492", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "EPSKIP", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7486_9" - }, - { - "ID": "c:@SA@USB_Type@FI@EPINUSE", - "What": "FieldDecl", - "defdec": "Def", - "display": "EPINUSE", - "location": { - "column": "17", - "line": "7493", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "EPINUSE", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7486_9" - }, - { - "ID": "c:@SA@USB_Type@FI@EPBUFCFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "EPBUFCFG", - "location": { - "column": "17", - "line": "7494", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "EPBUFCFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7486_9" - }, - { - "ID": "c:@SA@USB_Type@FI@INTSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTSTAT", - "location": { - "column": "17", - "line": "7495", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7486_9" - }, - { - "ID": "c:@SA@USB_Type@FI@INTEN", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTEN", - "location": { - "column": "17", - "line": "7496", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTEN", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7486_9" - }, - { - "ID": "c:@SA@USB_Type@FI@INTSETSTAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "INTSETSTAT", - "location": { - "column": "17", - "line": "7497", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "INTSETSTAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7486_9" - }, - { - "ID": "c:@SA@USB_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "7498", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7486_9" - }, - { - "ID": "c:@SA@USB_Type@FI@EPTOGGLE", - "What": "FieldDecl", - "defdec": "Def", - "display": "EPTOGGLE", - "location": { - "column": "17", - "line": "7499", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "EPTOGGLE", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7486_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@USB_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct USB_Type", - "location": { - "column": "3", - "line": "7500", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@504388@macro@USB_DEVCMDSTAT_DEV_ADDR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DEV_ADDR_MASK", - "location": { - "column": "9", - "line": "7513", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DEV_ADDR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@504446@macro@USB_DEVCMDSTAT_DEV_ADDR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DEV_ADDR_SHIFT", - "location": { - "column": "9", - "line": "7514", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DEV_ADDR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@504501@macro@USB_DEVCMDSTAT_DEV_ADDR", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DEV_ADDR", - "location": { - "column": "9", - "line": "7515", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DEV_ADDR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@504647@macro@USB_DEVCMDSTAT_DEV_EN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DEV_EN_MASK", - "location": { - "column": "9", - "line": "7516", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DEV_EN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@504705@macro@USB_DEVCMDSTAT_DEV_EN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DEV_EN_SHIFT", - "location": { - "column": "9", - "line": "7517", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DEV_EN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@504760@macro@USB_DEVCMDSTAT_DEV_EN", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DEV_EN", - "location": { - "column": "9", - "line": "7518", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DEV_EN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@504902@macro@USB_DEVCMDSTAT_SETUP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_SETUP_MASK", - "location": { - "column": "9", - "line": "7519", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_SETUP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@504961@macro@USB_DEVCMDSTAT_SETUP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_SETUP_SHIFT", - "location": { - "column": "9", - "line": "7520", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_SETUP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@505016@macro@USB_DEVCMDSTAT_SETUP", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_SETUP", - "location": { - "column": "9", - "line": "7521", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_SETUP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@505156@macro@USB_DEVCMDSTAT_FORCE_NEEDCLK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_FORCE_NEEDCLK_MASK", - "location": { - "column": "9", - "line": "7522", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_FORCE_NEEDCLK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@505215@macro@USB_DEVCMDSTAT_FORCE_NEEDCLK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_FORCE_NEEDCLK_SHIFT", - "location": { - "column": "9", - "line": "7523", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_FORCE_NEEDCLK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@505460@macro@USB_DEVCMDSTAT_FORCE_NEEDCLK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_FORCE_NEEDCLK", - "location": { - "column": "9", - "line": "7528", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_FORCE_NEEDCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@505616@macro@USB_DEVCMDSTAT_LPM_SUP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_LPM_SUP_MASK", - "location": { - "column": "9", - "line": "7529", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_LPM_SUP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@505675@macro@USB_DEVCMDSTAT_LPM_SUP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_LPM_SUP_SHIFT", - "location": { - "column": "9", - "line": "7530", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_LPM_SUP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@505820@macro@USB_DEVCMDSTAT_LPM_SUP", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_LPM_SUP", - "location": { - "column": "9", - "line": "7535", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_LPM_SUP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@505964@macro@USB_DEVCMDSTAT_INTONNAK_AO_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_INTONNAK_AO_MASK", - "location": { - "column": "9", - "line": "7536", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_INTONNAK_AO_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@506024@macro@USB_DEVCMDSTAT_INTONNAK_AO_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_INTONNAK_AO_SHIFT", - "location": { - "column": "9", - "line": "7537", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_INTONNAK_AO_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@506276@macro@USB_DEVCMDSTAT_INTONNAK_AO", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_INTONNAK_AO", - "location": { - "column": "9", - "line": "7542", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_INTONNAK_AO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@506428@macro@USB_DEVCMDSTAT_INTONNAK_AI_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_INTONNAK_AI_MASK", - "location": { - "column": "9", - "line": "7543", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_INTONNAK_AI_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@506488@macro@USB_DEVCMDSTAT_INTONNAK_AI_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_INTONNAK_AI_SHIFT", - "location": { - "column": "9", - "line": "7544", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_INTONNAK_AI_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@506739@macro@USB_DEVCMDSTAT_INTONNAK_AI", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_INTONNAK_AI", - "location": { - "column": "9", - "line": "7549", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_INTONNAK_AI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@506891@macro@USB_DEVCMDSTAT_INTONNAK_CO_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_INTONNAK_CO_MASK", - "location": { - "column": "9", - "line": "7550", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_INTONNAK_CO_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@506951@macro@USB_DEVCMDSTAT_INTONNAK_CO_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_INTONNAK_CO_SHIFT", - "location": { - "column": "9", - "line": "7551", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_INTONNAK_CO_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@507192@macro@USB_DEVCMDSTAT_INTONNAK_CO", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_INTONNAK_CO", - "location": { - "column": "9", - "line": "7556", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_INTONNAK_CO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@507344@macro@USB_DEVCMDSTAT_INTONNAK_CI_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_INTONNAK_CI_MASK", - "location": { - "column": "9", - "line": "7557", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_INTONNAK_CI_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@507404@macro@USB_DEVCMDSTAT_INTONNAK_CI_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_INTONNAK_CI_SHIFT", - "location": { - "column": "9", - "line": "7558", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_INTONNAK_CI_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@507644@macro@USB_DEVCMDSTAT_INTONNAK_CI", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_INTONNAK_CI", - "location": { - "column": "9", - "line": "7563", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_INTONNAK_CI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@507796@macro@USB_DEVCMDSTAT_DCON_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DCON_MASK", - "location": { - "column": "9", - "line": "7564", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DCON_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@507857@macro@USB_DEVCMDSTAT_DCON_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DCON_SHIFT", - "location": { - "column": "9", - "line": "7565", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DCON_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@507913@macro@USB_DEVCMDSTAT_DCON", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DCON", - "location": { - "column": "9", - "line": "7566", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DCON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@508051@macro@USB_DEVCMDSTAT_DSUS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DSUS_MASK", - "location": { - "column": "9", - "line": "7567", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DSUS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@508112@macro@USB_DEVCMDSTAT_DSUS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DSUS_SHIFT", - "location": { - "column": "9", - "line": "7568", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DSUS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@508168@macro@USB_DEVCMDSTAT_DSUS", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DSUS", - "location": { - "column": "9", - "line": "7569", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DSUS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@508306@macro@USB_DEVCMDSTAT_LPM_SUS_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_LPM_SUS_MASK", - "location": { - "column": "9", - "line": "7570", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_LPM_SUS_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@508367@macro@USB_DEVCMDSTAT_LPM_SUS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_LPM_SUS_SHIFT", - "location": { - "column": "9", - "line": "7571", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_LPM_SUS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@508423@macro@USB_DEVCMDSTAT_LPM_SUS", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_LPM_SUS", - "location": { - "column": "9", - "line": "7572", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_LPM_SUS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@508567@macro@USB_DEVCMDSTAT_LPM_REWP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_LPM_REWP_MASK", - "location": { - "column": "9", - "line": "7573", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_LPM_REWP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@508629@macro@USB_DEVCMDSTAT_LPM_REWP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_LPM_REWP_SHIFT", - "location": { - "column": "9", - "line": "7574", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_LPM_REWP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@508685@macro@USB_DEVCMDSTAT_LPM_REWP", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_LPM_REWP", - "location": { - "column": "9", - "line": "7575", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_LPM_REWP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@508831@macro@USB_DEVCMDSTAT_DCON_C_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DCON_C_MASK", - "location": { - "column": "9", - "line": "7576", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DCON_C_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@508894@macro@USB_DEVCMDSTAT_DCON_C_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DCON_C_SHIFT", - "location": { - "column": "9", - "line": "7577", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DCON_C_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@508950@macro@USB_DEVCMDSTAT_DCON_C", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DCON_C", - "location": { - "column": "9", - "line": "7578", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DCON_C", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@509092@macro@USB_DEVCMDSTAT_DSUS_C_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DSUS_C_MASK", - "location": { - "column": "9", - "line": "7579", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DSUS_C_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@509155@macro@USB_DEVCMDSTAT_DSUS_C_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DSUS_C_SHIFT", - "location": { - "column": "9", - "line": "7580", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DSUS_C_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@509211@macro@USB_DEVCMDSTAT_DSUS_C", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DSUS_C", - "location": { - "column": "9", - "line": "7581", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DSUS_C", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@509353@macro@USB_DEVCMDSTAT_DRES_C_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DRES_C_MASK", - "location": { - "column": "9", - "line": "7582", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DRES_C_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@509416@macro@USB_DEVCMDSTAT_DRES_C_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DRES_C_SHIFT", - "location": { - "column": "9", - "line": "7583", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DRES_C_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@509472@macro@USB_DEVCMDSTAT_DRES_C", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_DRES_C", - "location": { - "column": "9", - "line": "7584", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_DRES_C", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@509614@macro@USB_DEVCMDSTAT_VBUSDEBOUNCED_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_VBUSDEBOUNCED_MASK", - "location": { - "column": "9", - "line": "7585", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_VBUSDEBOUNCED_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@509678@macro@USB_DEVCMDSTAT_VBUSDEBOUNCED_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_VBUSDEBOUNCED_SHIFT", - "location": { - "column": "9", - "line": "7586", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_VBUSDEBOUNCED_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@509734@macro@USB_DEVCMDSTAT_VBUSDEBOUNCED", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DEVCMDSTAT_VBUSDEBOUNCED", - "location": { - "column": "9", - "line": "7587", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DEVCMDSTAT_VBUSDEBOUNCED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@509953@macro@USB_INFO_FRAME_NR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INFO_FRAME_NR_MASK", - "location": { - "column": "9", - "line": "7592", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INFO_FRAME_NR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@510012@macro@USB_INFO_FRAME_NR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INFO_FRAME_NR_SHIFT", - "location": { - "column": "9", - "line": "7593", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INFO_FRAME_NR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@510067@macro@USB_INFO_FRAME_NR", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INFO_FRAME_NR", - "location": { - "column": "9", - "line": "7594", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INFO_FRAME_NR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@510201@macro@USB_INFO_ERR_CODE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INFO_ERR_CODE_MASK", - "location": { - "column": "9", - "line": "7595", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INFO_ERR_CODE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@510261@macro@USB_INFO_ERR_CODE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INFO_ERR_CODE_SHIFT", - "location": { - "column": "9", - "line": "7596", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INFO_ERR_CODE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@510800@macro@USB_INFO_ERR_CODE", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INFO_ERR_CODE", - "location": { - "column": "9", - "line": "7615", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INFO_ERR_CODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@511027@macro@USB_EPLISTSTART_EP_LIST_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPLISTSTART_EP_LIST_MASK", - "location": { - "column": "9", - "line": "7620", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPLISTSTART_EP_LIST_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@511091@macro@USB_EPLISTSTART_EP_LIST_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPLISTSTART_EP_LIST_SHIFT", - "location": { - "column": "9", - "line": "7621", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPLISTSTART_EP_LIST_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@511146@macro@USB_EPLISTSTART_EP_LIST", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPLISTSTART_EP_LIST", - "location": { - "column": "9", - "line": "7622", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPLISTSTART_EP_LIST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@511375@macro@USB_DATABUFSTART_DA_BUF_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DATABUFSTART_DA_BUF_MASK", - "location": { - "column": "9", - "line": "7627", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DATABUFSTART_DA_BUF_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@511439@macro@USB_DATABUFSTART_DA_BUF_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DATABUFSTART_DA_BUF_SHIFT", - "location": { - "column": "9", - "line": "7628", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DATABUFSTART_DA_BUF_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@511495@macro@USB_DATABUFSTART_DA_BUF", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_DATABUFSTART_DA_BUF", - "location": { - "column": "9", - "line": "7629", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_DATABUFSTART_DA_BUF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@511720@macro@USB_LPM_HIRD_HW_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_LPM_HIRD_HW_MASK", - "location": { - "column": "9", - "line": "7634", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_LPM_HIRD_HW_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@511777@macro@USB_LPM_HIRD_HW_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_LPM_HIRD_HW_SHIFT", - "location": { - "column": "9", - "line": "7635", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_LPM_HIRD_HW_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@511832@macro@USB_LPM_HIRD_HW", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_LPM_HIRD_HW", - "location": { - "column": "9", - "line": "7636", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_LPM_HIRD_HW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@511962@macro@USB_LPM_HIRD_SW_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_LPM_HIRD_SW_MASK", - "location": { - "column": "9", - "line": "7637", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_LPM_HIRD_SW_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@512020@macro@USB_LPM_HIRD_SW_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_LPM_HIRD_SW_SHIFT", - "location": { - "column": "9", - "line": "7638", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_LPM_HIRD_SW_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@512075@macro@USB_LPM_HIRD_SW", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_LPM_HIRD_SW", - "location": { - "column": "9", - "line": "7639", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_LPM_HIRD_SW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@512205@macro@USB_LPM_DATA_PENDING_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_LPM_DATA_PENDING_MASK", - "location": { - "column": "9", - "line": "7640", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_LPM_DATA_PENDING_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@512264@macro@USB_LPM_DATA_PENDING_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_LPM_DATA_PENDING_SHIFT", - "location": { - "column": "9", - "line": "7641", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_LPM_DATA_PENDING_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@512319@macro@USB_LPM_DATA_PENDING", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_LPM_DATA_PENDING", - "location": { - "column": "9", - "line": "7642", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_LPM_DATA_PENDING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@512524@macro@USB_EPSKIP_SKIP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPSKIP_SKIP_MASK", - "location": { - "column": "9", - "line": "7647", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPSKIP_SKIP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@512588@macro@USB_EPSKIP_SKIP_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPSKIP_SKIP_SHIFT", - "location": { - "column": "9", - "line": "7648", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPSKIP_SKIP_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@512643@macro@USB_EPSKIP_SKIP", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPSKIP_SKIP", - "location": { - "column": "9", - "line": "7649", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPSKIP_SKIP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@512848@macro@USB_EPINUSE_BUF_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPINUSE_BUF_MASK", - "location": { - "column": "9", - "line": "7654", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPINUSE_BUF_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@512907@macro@USB_EPINUSE_BUF_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPINUSE_BUF_SHIFT", - "location": { - "column": "9", - "line": "7655", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPINUSE_BUF_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@512962@macro@USB_EPINUSE_BUF", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPINUSE_BUF", - "location": { - "column": "9", - "line": "7656", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPINUSE_BUF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@513184@macro@USB_EPBUFCFG_BUF_SB_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPBUFCFG_BUF_SB_MASK", - "location": { - "column": "9", - "line": "7661", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPBUFCFG_BUF_SB_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@513243@macro@USB_EPBUFCFG_BUF_SB_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPBUFCFG_BUF_SB_SHIFT", - "location": { - "column": "9", - "line": "7662", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPBUFCFG_BUF_SB_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@513298@macro@USB_EPBUFCFG_BUF_SB", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPBUFCFG_BUF_SB", - "location": { - "column": "9", - "line": "7663", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPBUFCFG_BUF_SB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@513514@macro@USB_INTSTAT_EP0OUT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP0OUT_MASK", - "location": { - "column": "9", - "line": "7668", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP0OUT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@513571@macro@USB_INTSTAT_EP0OUT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP0OUT_SHIFT", - "location": { - "column": "9", - "line": "7669", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP0OUT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@513626@macro@USB_INTSTAT_EP0OUT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP0OUT", - "location": { - "column": "9", - "line": "7670", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP0OUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@513762@macro@USB_INTSTAT_EP0IN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP0IN_MASK", - "location": { - "column": "9", - "line": "7671", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP0IN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@513819@macro@USB_INTSTAT_EP0IN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP0IN_SHIFT", - "location": { - "column": "9", - "line": "7672", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP0IN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@513874@macro@USB_INTSTAT_EP0IN", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP0IN", - "location": { - "column": "9", - "line": "7673", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP0IN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@514008@macro@USB_INTSTAT_EP1OUT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP1OUT_MASK", - "location": { - "column": "9", - "line": "7674", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP1OUT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@514065@macro@USB_INTSTAT_EP1OUT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP1OUT_SHIFT", - "location": { - "column": "9", - "line": "7675", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP1OUT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@514120@macro@USB_INTSTAT_EP1OUT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP1OUT", - "location": { - "column": "9", - "line": "7676", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP1OUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@514256@macro@USB_INTSTAT_EP1IN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP1IN_MASK", - "location": { - "column": "9", - "line": "7677", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP1IN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@514313@macro@USB_INTSTAT_EP1IN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP1IN_SHIFT", - "location": { - "column": "9", - "line": "7678", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP1IN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@514368@macro@USB_INTSTAT_EP1IN", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP1IN", - "location": { - "column": "9", - "line": "7679", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP1IN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@514502@macro@USB_INTSTAT_EP2OUT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP2OUT_MASK", - "location": { - "column": "9", - "line": "7680", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP2OUT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@514560@macro@USB_INTSTAT_EP2OUT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP2OUT_SHIFT", - "location": { - "column": "9", - "line": "7681", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP2OUT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@514615@macro@USB_INTSTAT_EP2OUT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP2OUT", - "location": { - "column": "9", - "line": "7682", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP2OUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@514751@macro@USB_INTSTAT_EP2IN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP2IN_MASK", - "location": { - "column": "9", - "line": "7683", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP2IN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@514809@macro@USB_INTSTAT_EP2IN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP2IN_SHIFT", - "location": { - "column": "9", - "line": "7684", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP2IN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@514864@macro@USB_INTSTAT_EP2IN", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP2IN", - "location": { - "column": "9", - "line": "7685", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP2IN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@514998@macro@USB_INTSTAT_EP3OUT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP3OUT_MASK", - "location": { - "column": "9", - "line": "7686", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP3OUT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@515056@macro@USB_INTSTAT_EP3OUT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP3OUT_SHIFT", - "location": { - "column": "9", - "line": "7687", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP3OUT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@515111@macro@USB_INTSTAT_EP3OUT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP3OUT", - "location": { - "column": "9", - "line": "7688", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP3OUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@515247@macro@USB_INTSTAT_EP3IN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP3IN_MASK", - "location": { - "column": "9", - "line": "7689", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP3IN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@515305@macro@USB_INTSTAT_EP3IN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP3IN_SHIFT", - "location": { - "column": "9", - "line": "7690", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP3IN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@515360@macro@USB_INTSTAT_EP3IN", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP3IN", - "location": { - "column": "9", - "line": "7691", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP3IN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@515494@macro@USB_INTSTAT_EP4OUT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP4OUT_MASK", - "location": { - "column": "9", - "line": "7692", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP4OUT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@515553@macro@USB_INTSTAT_EP4OUT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP4OUT_SHIFT", - "location": { - "column": "9", - "line": "7693", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP4OUT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@515608@macro@USB_INTSTAT_EP4OUT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP4OUT", - "location": { - "column": "9", - "line": "7694", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP4OUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@515744@macro@USB_INTSTAT_EP4IN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP4IN_MASK", - "location": { - "column": "9", - "line": "7695", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP4IN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@515803@macro@USB_INTSTAT_EP4IN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP4IN_SHIFT", - "location": { - "column": "9", - "line": "7696", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP4IN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@515858@macro@USB_INTSTAT_EP4IN", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_EP4IN", - "location": { - "column": "9", - "line": "7697", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_EP4IN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@515992@macro@USB_INTSTAT_FRAME_INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_FRAME_INT_MASK", - "location": { - "column": "9", - "line": "7698", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_FRAME_INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@516056@macro@USB_INTSTAT_FRAME_INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_FRAME_INT_SHIFT", - "location": { - "column": "9", - "line": "7699", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_FRAME_INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@516112@macro@USB_INTSTAT_FRAME_INT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_FRAME_INT", - "location": { - "column": "9", - "line": "7700", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_FRAME_INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@516254@macro@USB_INTSTAT_DEV_INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_DEV_INT_MASK", - "location": { - "column": "9", - "line": "7701", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_DEV_INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@516318@macro@USB_INTSTAT_DEV_INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_DEV_INT_SHIFT", - "location": { - "column": "9", - "line": "7702", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_DEV_INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@516374@macro@USB_INTSTAT_DEV_INT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSTAT_DEV_INT", - "location": { - "column": "9", - "line": "7703", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSTAT_DEV_INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@516588@macro@USB_INTEN_EP_INT_EN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTEN_EP_INT_EN_MASK", - "location": { - "column": "9", - "line": "7708", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTEN_EP_INT_EN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@516647@macro@USB_INTEN_EP_INT_EN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTEN_EP_INT_EN_SHIFT", - "location": { - "column": "9", - "line": "7709", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTEN_EP_INT_EN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@516702@macro@USB_INTEN_EP_INT_EN", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTEN_EP_INT_EN", - "location": { - "column": "9", - "line": "7710", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTEN_EP_INT_EN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@516840@macro@USB_INTEN_FRAME_INT_EN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTEN_FRAME_INT_EN_MASK", - "location": { - "column": "9", - "line": "7711", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTEN_FRAME_INT_EN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@516904@macro@USB_INTEN_FRAME_INT_EN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTEN_FRAME_INT_EN_SHIFT", - "location": { - "column": "9", - "line": "7712", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTEN_FRAME_INT_EN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@516960@macro@USB_INTEN_FRAME_INT_EN", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTEN_FRAME_INT_EN", - "location": { - "column": "9", - "line": "7713", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTEN_FRAME_INT_EN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@517104@macro@USB_INTEN_DEV_INT_EN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTEN_DEV_INT_EN_MASK", - "location": { - "column": "9", - "line": "7714", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTEN_DEV_INT_EN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@517168@macro@USB_INTEN_DEV_INT_EN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTEN_DEV_INT_EN_SHIFT", - "location": { - "column": "9", - "line": "7715", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTEN_DEV_INT_EN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@517224@macro@USB_INTEN_DEV_INT_EN", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTEN_DEV_INT_EN", - "location": { - "column": "9", - "line": "7716", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTEN_DEV_INT_EN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@517449@macro@USB_INTSETSTAT_EP_SET_INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSETSTAT_EP_SET_INT_MASK", - "location": { - "column": "9", - "line": "7721", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSETSTAT_EP_SET_INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@517508@macro@USB_INTSETSTAT_EP_SET_INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSETSTAT_EP_SET_INT_SHIFT", - "location": { - "column": "9", - "line": "7722", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSETSTAT_EP_SET_INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@517563@macro@USB_INTSETSTAT_EP_SET_INT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSETSTAT_EP_SET_INT", - "location": { - "column": "9", - "line": "7723", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSETSTAT_EP_SET_INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@517713@macro@USB_INTSETSTAT_FRAME_SET_INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSETSTAT_FRAME_SET_INT_MASK", - "location": { - "column": "9", - "line": "7724", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSETSTAT_FRAME_SET_INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@517777@macro@USB_INTSETSTAT_FRAME_SET_INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSETSTAT_FRAME_SET_INT_SHIFT", - "location": { - "column": "9", - "line": "7725", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSETSTAT_FRAME_SET_INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@517833@macro@USB_INTSETSTAT_FRAME_SET_INT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSETSTAT_FRAME_SET_INT", - "location": { - "column": "9", - "line": "7726", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSETSTAT_FRAME_SET_INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@517989@macro@USB_INTSETSTAT_DEV_SET_INT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSETSTAT_DEV_SET_INT_MASK", - "location": { - "column": "9", - "line": "7727", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSETSTAT_DEV_SET_INT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@518053@macro@USB_INTSETSTAT_DEV_SET_INT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSETSTAT_DEV_SET_INT_SHIFT", - "location": { - "column": "9", - "line": "7728", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSETSTAT_DEV_SET_INT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@518109@macro@USB_INTSETSTAT_DEV_SET_INT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_INTSETSTAT_DEV_SET_INT", - "location": { - "column": "9", - "line": "7729", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_INTSETSTAT_DEV_SET_INT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@518339@macro@USB_EPTOGGLE_TOGGLE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPTOGGLE_TOGGLE_MASK", - "location": { - "column": "9", - "line": "7734", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPTOGGLE_TOGGLE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@518398@macro@USB_EPTOGGLE_TOGGLE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPTOGGLE_TOGGLE_SHIFT", - "location": { - "column": "9", - "line": "7735", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPTOGGLE_TOGGLE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@518453@macro@USB_EPTOGGLE_TOGGLE", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_EPTOGGLE_TOGGLE", - "location": { - "column": "9", - "line": "7736", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_EPTOGGLE_TOGGLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@518750@macro@USB0_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "USB0_BASE", - "location": { - "column": "9", - "line": "7747", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB0_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@518851@macro@USB0", - "What": "MacroDef", - "defdec": "Def", - "display": "USB0", - "location": { - "column": "9", - "line": "7749", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@518984@macro@USB_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_BASE_ADDRS", - "location": { - "column": "9", - "line": "7751", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@519106@macro@USB_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_BASE_PTRS", - "location": { - "column": "9", - "line": "7753", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@519219@macro@USB_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_IRQS", - "location": { - "column": "9", - "line": "7755", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@519283@macro@USB_NEEDCLK_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_NEEDCLK_IRQS", - "location": { - "column": "9", - "line": "7756", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "USB_NEEDCLK_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@UTICK_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "7773", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@UTICK_Type@FI@CTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTRL", - "location": { - "column": "17", - "line": "7774", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CTRL", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7773_9" - }, - { - "ID": "c:@SA@UTICK_Type@FI@STAT", - "What": "FieldDecl", - "defdec": "Def", - "display": "STAT", - "location": { - "column": "17", - "line": "7775", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "STAT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7773_9" - }, - { - "ID": "c:@SA@UTICK_Type@FI@CFG", - "What": "FieldDecl", - "defdec": "Def", - "display": "CFG", - "location": { - "column": "17", - "line": "7776", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CFG", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7773_9" - }, - { - "ID": "c:@SA@UTICK_Type@FI@CAPCLR", - "What": "FieldDecl", - "defdec": "Def", - "display": "CAPCLR", - "location": { - "column": "17", - "line": "7777", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CAPCLR", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7773_9" - }, - { - "ID": "c:@SA@UTICK_Type@FI@CAP", - "What": "FieldDecl", - "defdec": "Def", - "display": "CAP", - "location": { - "column": "17", - "line": "7778", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "CAP", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7773_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@UTICK_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct UTICK_Type", - "location": { - "column": "3", - "line": "7779", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@520620@macro@UTICK_CTRL_DELAYVAL_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CTRL_DELAYVAL_MASK", - "location": { - "column": "9", - "line": "7792", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CTRL_DELAYVAL_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@520684@macro@UTICK_CTRL_DELAYVAL_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CTRL_DELAYVAL_SHIFT", - "location": { - "column": "9", - "line": "7793", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CTRL_DELAYVAL_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@520739@macro@UTICK_CTRL_DELAYVAL", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CTRL_DELAYVAL", - "location": { - "column": "9", - "line": "7794", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CTRL_DELAYVAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@520877@macro@UTICK_CTRL_REPEAT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CTRL_REPEAT_MASK", - "location": { - "column": "9", - "line": "7795", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CTRL_REPEAT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@520941@macro@UTICK_CTRL_REPEAT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CTRL_REPEAT_SHIFT", - "location": { - "column": "9", - "line": "7796", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CTRL_REPEAT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@520997@macro@UTICK_CTRL_REPEAT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CTRL_REPEAT", - "location": { - "column": "9", - "line": "7797", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CTRL_REPEAT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@521193@macro@UTICK_STAT_INTR_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_STAT_INTR_MASK", - "location": { - "column": "9", - "line": "7802", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_STAT_INTR_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@521250@macro@UTICK_STAT_INTR_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_STAT_INTR_SHIFT", - "location": { - "column": "9", - "line": "7803", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_STAT_INTR_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@521305@macro@UTICK_STAT_INTR", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_STAT_INTR", - "location": { - "column": "9", - "line": "7804", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_STAT_INTR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@521435@macro@UTICK_STAT_ACTIVE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_STAT_ACTIVE_MASK", - "location": { - "column": "9", - "line": "7805", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_STAT_ACTIVE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@521492@macro@UTICK_STAT_ACTIVE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_STAT_ACTIVE_SHIFT", - "location": { - "column": "9", - "line": "7806", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_STAT_ACTIVE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@521547@macro@UTICK_STAT_ACTIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_STAT_ACTIVE", - "location": { - "column": "9", - "line": "7807", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_STAT_ACTIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@521757@macro@UTICK_CFG_CAPEN0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPEN0_MASK", - "location": { - "column": "9", - "line": "7812", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPEN0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@521814@macro@UTICK_CFG_CAPEN0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPEN0_SHIFT", - "location": { - "column": "9", - "line": "7813", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPEN0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@521869@macro@UTICK_CFG_CAPEN0", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPEN0", - "location": { - "column": "9", - "line": "7814", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPEN0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@522001@macro@UTICK_CFG_CAPEN1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPEN1_MASK", - "location": { - "column": "9", - "line": "7815", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPEN1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@522058@macro@UTICK_CFG_CAPEN1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPEN1_SHIFT", - "location": { - "column": "9", - "line": "7816", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPEN1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@522113@macro@UTICK_CFG_CAPEN1", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPEN1", - "location": { - "column": "9", - "line": "7817", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPEN1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@522245@macro@UTICK_CFG_CAPEN2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPEN2_MASK", - "location": { - "column": "9", - "line": "7818", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPEN2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@522302@macro@UTICK_CFG_CAPEN2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPEN2_SHIFT", - "location": { - "column": "9", - "line": "7819", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPEN2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@522357@macro@UTICK_CFG_CAPEN2", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPEN2", - "location": { - "column": "9", - "line": "7820", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPEN2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@522489@macro@UTICK_CFG_CAPEN3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPEN3_MASK", - "location": { - "column": "9", - "line": "7821", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPEN3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@522546@macro@UTICK_CFG_CAPEN3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPEN3_SHIFT", - "location": { - "column": "9", - "line": "7822", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPEN3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@522601@macro@UTICK_CFG_CAPEN3", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPEN3", - "location": { - "column": "9", - "line": "7823", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPEN3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@522733@macro@UTICK_CFG_CAPPOL0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPPOL0_MASK", - "location": { - "column": "9", - "line": "7824", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPPOL0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@522792@macro@UTICK_CFG_CAPPOL0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPPOL0_SHIFT", - "location": { - "column": "9", - "line": "7825", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPPOL0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@522847@macro@UTICK_CFG_CAPPOL0", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPPOL0", - "location": { - "column": "9", - "line": "7826", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPPOL0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@522981@macro@UTICK_CFG_CAPPOL1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPPOL1_MASK", - "location": { - "column": "9", - "line": "7827", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPPOL1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@523040@macro@UTICK_CFG_CAPPOL1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPPOL1_SHIFT", - "location": { - "column": "9", - "line": "7828", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPPOL1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@523095@macro@UTICK_CFG_CAPPOL1", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPPOL1", - "location": { - "column": "9", - "line": "7829", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPPOL1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@523229@macro@UTICK_CFG_CAPPOL2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPPOL2_MASK", - "location": { - "column": "9", - "line": "7830", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPPOL2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@523288@macro@UTICK_CFG_CAPPOL2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPPOL2_SHIFT", - "location": { - "column": "9", - "line": "7831", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPPOL2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@523344@macro@UTICK_CFG_CAPPOL2", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPPOL2", - "location": { - "column": "9", - "line": "7832", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPPOL2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@523478@macro@UTICK_CFG_CAPPOL3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPPOL3_MASK", - "location": { - "column": "9", - "line": "7833", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPPOL3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@523537@macro@UTICK_CFG_CAPPOL3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPPOL3_SHIFT", - "location": { - "column": "9", - "line": "7834", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPPOL3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@523593@macro@UTICK_CFG_CAPPOL3", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CFG_CAPPOL3", - "location": { - "column": "9", - "line": "7835", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CFG_CAPPOL3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@523798@macro@UTICK_CAPCLR_CAPCLR0_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAPCLR_CAPCLR0_MASK", - "location": { - "column": "9", - "line": "7840", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAPCLR_CAPCLR0_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@523855@macro@UTICK_CAPCLR_CAPCLR0_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAPCLR_CAPCLR0_SHIFT", - "location": { - "column": "9", - "line": "7841", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAPCLR_CAPCLR0_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@523910@macro@UTICK_CAPCLR_CAPCLR0", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAPCLR_CAPCLR0", - "location": { - "column": "9", - "line": "7842", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAPCLR_CAPCLR0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@524050@macro@UTICK_CAPCLR_CAPCLR1_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAPCLR_CAPCLR1_MASK", - "location": { - "column": "9", - "line": "7843", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAPCLR_CAPCLR1_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@524107@macro@UTICK_CAPCLR_CAPCLR1_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAPCLR_CAPCLR1_SHIFT", - "location": { - "column": "9", - "line": "7844", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAPCLR_CAPCLR1_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@524162@macro@UTICK_CAPCLR_CAPCLR1", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAPCLR_CAPCLR1", - "location": { - "column": "9", - "line": "7845", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAPCLR_CAPCLR1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@524302@macro@UTICK_CAPCLR_CAPCLR2_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAPCLR_CAPCLR2_MASK", - "location": { - "column": "9", - "line": "7846", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAPCLR_CAPCLR2_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@524359@macro@UTICK_CAPCLR_CAPCLR2_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAPCLR_CAPCLR2_SHIFT", - "location": { - "column": "9", - "line": "7847", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAPCLR_CAPCLR2_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@524414@macro@UTICK_CAPCLR_CAPCLR2", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAPCLR_CAPCLR2", - "location": { - "column": "9", - "line": "7848", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAPCLR_CAPCLR2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@524554@macro@UTICK_CAPCLR_CAPCLR3_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAPCLR_CAPCLR3_MASK", - "location": { - "column": "9", - "line": "7849", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAPCLR_CAPCLR3_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@524611@macro@UTICK_CAPCLR_CAPCLR3_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAPCLR_CAPCLR3_SHIFT", - "location": { - "column": "9", - "line": "7850", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAPCLR_CAPCLR3_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@524666@macro@UTICK_CAPCLR_CAPCLR3", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAPCLR_CAPCLR3", - "location": { - "column": "9", - "line": "7851", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAPCLR_CAPCLR3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@524869@macro@UTICK_CAP_CAP_VALUE_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAP_CAP_VALUE_MASK", - "location": { - "column": "9", - "line": "7856", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAP_CAP_VALUE_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@524933@macro@UTICK_CAP_CAP_VALUE_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAP_CAP_VALUE_SHIFT", - "location": { - "column": "9", - "line": "7857", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAP_CAP_VALUE_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@524988@macro@UTICK_CAP_CAP_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAP_CAP_VALUE", - "location": { - "column": "9", - "line": "7858", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAP_CAP_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@525126@macro@UTICK_CAP_VALID_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAP_VALID_MASK", - "location": { - "column": "9", - "line": "7859", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAP_VALID_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@525190@macro@UTICK_CAP_VALID_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAP_VALID_SHIFT", - "location": { - "column": "9", - "line": "7860", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAP_VALID_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@525246@macro@UTICK_CAP_VALID", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAP_VALID", - "location": { - "column": "9", - "line": "7861", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAP_VALID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@525419@macro@UTICK_CAP_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CAP_COUNT", - "location": { - "column": "9", - "line": "7865", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_CAP_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@525628@macro@UTICK0_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK0_BASE", - "location": { - "column": "9", - "line": "7875", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK0_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@525731@macro@UTICK0", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK0", - "location": { - "column": "9", - "line": "7877", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@525870@macro@UTICK_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_BASE_ADDRS", - "location": { - "column": "9", - "line": "7879", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@525996@macro@UTICK_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_BASE_PTRS", - "location": { - "column": "9", - "line": "7881", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@526113@macro@UTICK_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_IRQS", - "location": { - "column": "9", - "line": "7883", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "UTICK_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@WWDT_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "7900", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "members": [ - { - "ID": "c:@SA@WWDT_Type@FI@MOD", - "What": "FieldDecl", - "defdec": "Def", - "display": "MOD", - "location": { - "column": "17", - "line": "7901", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "MOD", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7900_9" - }, - { - "ID": "c:@SA@WWDT_Type@FI@TC", - "What": "FieldDecl", - "defdec": "Def", - "display": "TC", - "location": { - "column": "17", - "line": "7902", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "TC", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7900_9" - }, - { - "ID": "c:@SA@WWDT_Type@FI@FEED", - "What": "FieldDecl", - "defdec": "Def", - "display": "FEED", - "location": { - "column": "17", - "line": "7903", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "FEED", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7900_9" - }, - { - "ID": "c:@SA@WWDT_Type@FI@TV", - "What": "FieldDecl", - "defdec": "Def", - "display": "TV", - "location": { - "column": "17", - "line": "7904", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "TV", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7900_9" - }, - { - "ID": "c:@SA@WWDT_Type@FI@RESERVED_0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED_0", - "location": { - "column": "16", - "line": "7905", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "RESERVED_0", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7900_9" - }, - { - "ID": "c:@SA@WWDT_Type@FI@WARNINT", - "What": "FieldDecl", - "defdec": "Def", - "display": "WARNINT", - "location": { - "column": "17", - "line": "7906", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WARNINT", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7900_9" - }, - { - "ID": "c:@SA@WWDT_Type@FI@WINDOW", - "What": "FieldDecl", - "defdec": "Def", - "display": "WINDOW", - "location": { - "column": "17", - "line": "7907", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WINDOW", - "origin": "user_include", - "scope": "_anonymous_LPC51U68_h_7900_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@WWDT_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct WWDT_Type", - "location": { - "column": "3", - "line": "7908", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@527984@macro@WWDT_MOD_WDEN_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDEN_MASK", - "location": { - "column": "9", - "line": "7921", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDEN_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@528041@macro@WWDT_MOD_WDEN_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDEN_SHIFT", - "location": { - "column": "9", - "line": "7922", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDEN_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@528330@macro@WWDT_MOD_WDEN", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDEN", - "location": { - "column": "9", - "line": "7927", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@528456@macro@WWDT_MOD_WDRESET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDRESET_MASK", - "location": { - "column": "9", - "line": "7928", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDRESET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@528513@macro@WWDT_MOD_WDRESET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDRESET_SHIFT", - "location": { - "column": "9", - "line": "7929", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDRESET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@528821@macro@WWDT_MOD_WDRESET", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDRESET", - "location": { - "column": "9", - "line": "7934", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDRESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@528953@macro@WWDT_MOD_WDTOF_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDTOF_MASK", - "location": { - "column": "9", - "line": "7935", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDTOF_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@529010@macro@WWDT_MOD_WDTOF_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDTOF_SHIFT", - "location": { - "column": "9", - "line": "7936", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDTOF_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@529065@macro@WWDT_MOD_WDTOF", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDTOF", - "location": { - "column": "9", - "line": "7937", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDTOF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@529193@macro@WWDT_MOD_WDINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDINT_MASK", - "location": { - "column": "9", - "line": "7938", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@529250@macro@WWDT_MOD_WDINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDINT_SHIFT", - "location": { - "column": "9", - "line": "7939", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@529305@macro@WWDT_MOD_WDINT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDINT", - "location": { - "column": "9", - "line": "7940", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@529433@macro@WWDT_MOD_WDPROTECT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDPROTECT_MASK", - "location": { - "column": "9", - "line": "7941", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDPROTECT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@529491@macro@WWDT_MOD_WDPROTECT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDPROTECT_SHIFT", - "location": { - "column": "9", - "line": "7942", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDPROTECT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@529878@macro@WWDT_MOD_WDPROTECT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_WDPROTECT", - "location": { - "column": "9", - "line": "7947", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_WDPROTECT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@530014@macro@WWDT_MOD_LOCK_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_LOCK_MASK", - "location": { - "column": "9", - "line": "7948", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_LOCK_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@530072@macro@WWDT_MOD_LOCK_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_LOCK_SHIFT", - "location": { - "column": "9", - "line": "7949", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_LOCK_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@530127@macro@WWDT_MOD_LOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_MOD_LOCK", - "location": { - "column": "9", - "line": "7950", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_MOD_LOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@530382@macro@WWDT_TC_COUNT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_TC_COUNT_MASK", - "location": { - "column": "9", - "line": "7955", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_TC_COUNT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@530444@macro@WWDT_TC_COUNT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_TC_COUNT_SHIFT", - "location": { - "column": "9", - "line": "7956", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_TC_COUNT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@530499@macro@WWDT_TC_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_TC_COUNT", - "location": { - "column": "9", - "line": "7957", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_TC_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@530809@macro@WWDT_FEED_FEED_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_FEED_FEED_MASK", - "location": { - "column": "9", - "line": "7962", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_FEED_FEED_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@530867@macro@WWDT_FEED_FEED_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_FEED_FEED_SHIFT", - "location": { - "column": "9", - "line": "7963", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_FEED_FEED_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@530922@macro@WWDT_FEED_FEED", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_FEED_FEED", - "location": { - "column": "9", - "line": "7964", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_FEED_FEED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@531196@macro@WWDT_TV_COUNT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_TV_COUNT_MASK", - "location": { - "column": "9", - "line": "7969", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_TV_COUNT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@531258@macro@WWDT_TV_COUNT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_TV_COUNT_SHIFT", - "location": { - "column": "9", - "line": "7970", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_TV_COUNT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@531313@macro@WWDT_TV_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_TV_COUNT", - "location": { - "column": "9", - "line": "7971", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_TV_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@531529@macro@WWDT_WARNINT_WARNINT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_WARNINT_WARNINT_MASK", - "location": { - "column": "9", - "line": "7976", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_WARNINT_WARNINT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@531588@macro@WWDT_WARNINT_WARNINT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_WARNINT_WARNINT_SHIFT", - "location": { - "column": "9", - "line": "7977", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_WARNINT_WARNINT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@531643@macro@WWDT_WARNINT_WARNINT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_WARNINT_WARNINT", - "location": { - "column": "9", - "line": "7978", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_WARNINT_WARNINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@531861@macro@WWDT_WINDOW_WINDOW_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_WINDOW_WINDOW_MASK", - "location": { - "column": "9", - "line": "7983", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_WINDOW_WINDOW_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@531923@macro@WWDT_WINDOW_WINDOW_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_WINDOW_WINDOW_SHIFT", - "location": { - "column": "9", - "line": "7984", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_WINDOW_WINDOW_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@531978@macro@WWDT_WINDOW_WINDOW", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_WINDOW_WINDOW", - "location": { - "column": "9", - "line": "7985", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_WINDOW_WINDOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@532275@macro@WWDT_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_BASE", - "location": { - "column": "9", - "line": "7996", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@532376@macro@WWDT", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT", - "location": { - "column": "9", - "line": "7998", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@532511@macro@WWDT_BASE_ADDRS", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_BASE_ADDRS", - "location": { - "column": "9", - "line": "8000", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_BASE_ADDRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@532634@macro@WWDT_BASE_PTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_BASE_PTRS", - "location": { - "column": "9", - "line": "8002", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_BASE_PTRS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@532748@macro@WWDT_IRQS", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_IRQS", - "location": { - "column": "9", - "line": "8004", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "WWDT_IRQS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@534087@macro@NXP_VAL2FLD", - "What": "MacroDef", - "defdec": "Def", - "display": "NXP_VAL2FLD", - "location": { - "column": "9", - "line": "8057", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "NXP_VAL2FLD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68.h@534403@macro@NXP_FLD2VAL", - "What": "MacroDef", - "defdec": "Def", - "display": "NXP_FLD2VAL", - "location": { - "column": "9", - "line": "8064", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68.h" - }, - "name": "NXP_FLD2VAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@693@macro@_LPC51U68_FEATURES_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_LPC51U68_FEATURES_H_", - "location": { - "column": "9", - "line": "26", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "_LPC51U68_FEATURES_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@798@macro@FSL_FEATURE_SOC_ADC_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_ADC_COUNT", - "location": { - "column": "9", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_ADC_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@889@macro@FSL_FEATURE_SOC_ASYNC_SYSCON_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_ASYNC_SYSCON_COUNT", - "location": { - "column": "9", - "line": "33", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_ASYNC_SYSCON_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@980@macro@FSL_FEATURE_SOC_CRC_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_CRC_COUNT", - "location": { - "column": "9", - "line": "35", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_CRC_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@1065@macro@FSL_FEATURE_SOC_CTIMER_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_CTIMER_COUNT", - "location": { - "column": "9", - "line": "37", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_CTIMER_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@1150@macro@FSL_FEATURE_SOC_DMA_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_DMA_COUNT", - "location": { - "column": "9", - "line": "39", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_DMA_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@1237@macro@FSL_FEATURE_SOC_FLEXCOMM_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_FLEXCOMM_COUNT", - "location": { - "column": "9", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_FLEXCOMM_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@1324@macro@FSL_FEATURE_SOC_FMC_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_FMC_COUNT", - "location": { - "column": "9", - "line": "43", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_FMC_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@1407@macro@FSL_FEATURE_SOC_GINT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_GINT_COUNT", - "location": { - "column": "9", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_GINT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@1491@macro@FSL_FEATURE_SOC_GPIO_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_GPIO_COUNT", - "location": { - "column": "9", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_GPIO_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@1574@macro@FSL_FEATURE_SOC_I2C_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_I2C_COUNT", - "location": { - "column": "9", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_I2C_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@1656@macro@FSL_FEATURE_SOC_I2S_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_I2S_COUNT", - "location": { - "column": "9", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_I2S_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@1743@macro@FSL_FEATURE_SOC_INPUTMUX_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_INPUTMUX_COUNT", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_INPUTMUX_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@1832@macro@FSL_FEATURE_SOC_IOCON_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_IOCON_COUNT", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_IOCON_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@1916@macro@FSL_FEATURE_SOC_MRT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_MRT_COUNT", - "location": { - "column": "9", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_MRT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@1999@macro@FSL_FEATURE_SOC_PINT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_PINT_COUNT", - "location": { - "column": "9", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_PINT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@2082@macro@FSL_FEATURE_SOC_RTC_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_RTC_COUNT", - "location": { - "column": "9", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_RTC_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@2164@macro@FSL_FEATURE_SOC_SCT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_SCT_COUNT", - "location": { - "column": "9", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_SCT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@2246@macro@FSL_FEATURE_SOC_SPI_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_SPI_COUNT", - "location": { - "column": "9", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_SPI_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@2331@macro@FSL_FEATURE_SOC_SYSCON_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_SYSCON_COUNT", - "location": { - "column": "9", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_SYSCON_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@2418@macro@FSL_FEATURE_SOC_USART_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_USART_COUNT", - "location": { - "column": "9", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_USART_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@2502@macro@FSL_FEATURE_SOC_USB_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_USB_COUNT", - "location": { - "column": "9", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_USB_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@2586@macro@FSL_FEATURE_SOC_UTICK_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_UTICK_COUNT", - "location": { - "column": "9", - "line": "73", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_UTICK_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@2671@macro@FSL_FEATURE_SOC_WWDT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SOC_WWDT_COUNT", - "location": { - "column": "9", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SOC_WWDT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@2798@macro@FSL_FEATURE_ADC_HAS_NO_INSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_ADC_HAS_NO_INSEL", - "location": { - "column": "9", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_ADC_HAS_NO_INSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@2894@macro@FSL_FEATURE_ADC_HAS_CTRL_ASYNMODE", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_ADC_HAS_CTRL_ASYNMODE", - "location": { - "column": "9", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_ADC_HAS_CTRL_ASYNMODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@2994@macro@FSL_FEATURE_ADC_HAS_CTRL_RESOL", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_ADC_HAS_CTRL_RESOL", - "location": { - "column": "9", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_ADC_HAS_CTRL_RESOL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@3091@macro@FSL_FEATURE_ADC_HAS_CTRL_BYPASSCAL", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_ADC_HAS_CTRL_BYPASSCAL", - "location": { - "column": "9", - "line": "86", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_ADC_HAS_CTRL_BYPASSCAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@3192@macro@FSL_FEATURE_ADC_HAS_CTRL_TSAMP", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_ADC_HAS_CTRL_TSAMP", - "location": { - "column": "9", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_ADC_HAS_CTRL_TSAMP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@3289@macro@FSL_FEATURE_ADC_HAS_CTRL_LPWRMODE", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_ADC_HAS_CTRL_LPWRMODE", - "location": { - "column": "9", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_ADC_HAS_CTRL_LPWRMODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@3389@macro@FSL_FEATURE_ADC_HAS_CTRL_CALMODE", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_ADC_HAS_CTRL_CALMODE", - "location": { - "column": "9", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_ADC_HAS_CTRL_CALMODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@3471@macro@FSL_FEATURE_ADC_HAS_STARTUP_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_ADC_HAS_STARTUP_REG", - "location": { - "column": "9", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_ADC_HAS_STARTUP_REG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@3550@macro@FSL_FEATURE_ADC_HAS_TRIM_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_ADC_HAS_TRIM_REG", - "location": { - "column": "9", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_ADC_HAS_TRIM_REG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@3632@macro@FSL_FEATURE_ADC_HAS_CALIB_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_ADC_HAS_CALIB_REG", - "location": { - "column": "9", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_ADC_HAS_CALIB_REG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@3739@macro@FSL_FEATURE_DMA_NUMBER_OF_CHANNELS", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_DMA_NUMBER_OF_CHANNELS", - "location": { - "column": "9", - "line": "103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_DMA_NUMBER_OF_CHANNELS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@3831@macro@FSL_FEATURE_DMA_DESCRIPTOR_ALIGN_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_DMA_DESCRIPTOR_ALIGN_SIZE", - "location": { - "column": "9", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_DMA_DESCRIPTOR_ALIGN_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@3940@macro@FSL_FEATURE_DMA_LINK_DESCRIPTOR_ALIGN_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_DMA_LINK_DESCRIPTOR_ALIGN_SIZE", - "location": { - "column": "9", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_DMA_LINK_DESCRIPTOR_ALIGN_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@4072@macro@FSL_FEATURE_FLEXCOMM0_USART_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM0_USART_INDEX", - "location": { - "column": "9", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM0_USART_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@4156@macro@FSL_FEATURE_FLEXCOMM0_SPI_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM0_SPI_INDEX", - "location": { - "column": "9", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM0_SPI_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@4238@macro@FSL_FEATURE_FLEXCOMM0_I2C_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM0_I2C_INDEX", - "location": { - "column": "9", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM0_I2C_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@4322@macro@FSL_FEATURE_FLEXCOMM1_USART_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM1_USART_INDEX", - "location": { - "column": "9", - "line": "118", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM1_USART_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@4406@macro@FSL_FEATURE_FLEXCOMM1_SPI_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM1_SPI_INDEX", - "location": { - "column": "9", - "line": "120", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM1_SPI_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@4488@macro@FSL_FEATURE_FLEXCOMM1_I2C_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM1_I2C_INDEX", - "location": { - "column": "9", - "line": "122", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM1_I2C_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@4572@macro@FSL_FEATURE_FLEXCOMM2_USART_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM2_USART_INDEX", - "location": { - "column": "9", - "line": "124", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM2_USART_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@4656@macro@FSL_FEATURE_FLEXCOMM2_SPI_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM2_SPI_INDEX", - "location": { - "column": "9", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM2_SPI_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@4738@macro@FSL_FEATURE_FLEXCOMM2_I2C_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM2_I2C_INDEX", - "location": { - "column": "9", - "line": "128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM2_I2C_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@4822@macro@FSL_FEATURE_FLEXCOMM3_USART_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM3_USART_INDEX", - "location": { - "column": "9", - "line": "130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM3_USART_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@4906@macro@FSL_FEATURE_FLEXCOMM3_SPI_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM3_SPI_INDEX", - "location": { - "column": "9", - "line": "132", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM3_SPI_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@4988@macro@FSL_FEATURE_FLEXCOMM3_I2C_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM3_I2C_INDEX", - "location": { - "column": "9", - "line": "134", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM3_I2C_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@5072@macro@FSL_FEATURE_FLEXCOMM4_USART_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM4_USART_INDEX", - "location": { - "column": "9", - "line": "136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM4_USART_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@5156@macro@FSL_FEATURE_FLEXCOMM4_SPI_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM4_SPI_INDEX", - "location": { - "column": "9", - "line": "138", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM4_SPI_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@5238@macro@FSL_FEATURE_FLEXCOMM4_I2C_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM4_I2C_INDEX", - "location": { - "column": "9", - "line": "140", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM4_I2C_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@5322@macro@FSL_FEATURE_FLEXCOMM5_USART_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM5_USART_INDEX", - "location": { - "column": "9", - "line": "142", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM5_USART_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@5406@macro@FSL_FEATURE_FLEXCOMM5_SPI_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM5_SPI_INDEX", - "location": { - "column": "9", - "line": "144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM5_SPI_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@5488@macro@FSL_FEATURE_FLEXCOMM5_I2C_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM5_I2C_INDEX", - "location": { - "column": "9", - "line": "146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM5_I2C_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@5572@macro@FSL_FEATURE_FLEXCOMM6_USART_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM6_USART_INDEX", - "location": { - "column": "9", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM6_USART_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@5656@macro@FSL_FEATURE_FLEXCOMM6_SPI_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM6_SPI_INDEX", - "location": { - "column": "9", - "line": "150", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM6_SPI_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@5738@macro@FSL_FEATURE_FLEXCOMM6_I2C_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM6_I2C_INDEX", - "location": { - "column": "9", - "line": "152", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM6_I2C_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@5820@macro@FSL_FEATURE_FLEXCOMM6_I2S_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM6_I2S_INDEX", - "location": { - "column": "9", - "line": "154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM6_I2S_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@5904@macro@FSL_FEATURE_FLEXCOMM7_USART_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM7_USART_INDEX", - "location": { - "column": "9", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM7_USART_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@5988@macro@FSL_FEATURE_FLEXCOMM7_SPI_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM7_SPI_INDEX", - "location": { - "column": "9", - "line": "158", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM7_SPI_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@6070@macro@FSL_FEATURE_FLEXCOMM7_I2C_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM7_I2C_INDEX", - "location": { - "column": "9", - "line": "160", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM7_I2C_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@6152@macro@FSL_FEATURE_FLEXCOMM7_I2S_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM7_I2S_INDEX", - "location": { - "column": "9", - "line": "162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM7_I2S_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@6241@macro@FSL_FEATURE_FLEXCOMM_INSTANCE_I2S_HAS_DMIC_INTERCONNECTIONn", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM_INSTANCE_I2S_HAS_DMIC_INTERCONNECTIONn", - "location": { - "column": "9", - "line": "164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM_INSTANCE_I2S_HAS_DMIC_INTERCONNECTIONn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@6396@macro@FSL_FEATURE_I2S_SUPPORT_SECONDARY_CHANNEL", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_I2S_SUPPORT_SECONDARY_CHANNEL", - "location": { - "column": "9", - "line": "169", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_I2S_SUPPORT_SECONDARY_CHANNEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@6494@macro@FSL_FEATURE_FLEXCOMM_I2S_HAS_DMIC_INTERCONNECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_FLEXCOMM_I2S_HAS_DMIC_INTERCONNECTION", - "location": { - "column": "9", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_FLEXCOMM_I2S_HAS_DMIC_INTERCONNECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@6623@macro@FSL_FEATURE_MRT_NUMBER_OF_CHANNELS", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_MRT_NUMBER_OF_CHANNELS", - "location": { - "column": "9", - "line": "176", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_MRT_NUMBER_OF_CHANNELS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@6756@macro@FSL_FEATURE_INTERRUPT_IRQ_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_INTERRUPT_IRQ_MIN", - "location": { - "column": "9", - "line": "181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_INTERRUPT_IRQ_MIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@6849@macro@FSL_FEATURE_INTERRUPT_IRQ_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_INTERRUPT_IRQ_MAX", - "location": { - "column": "9", - "line": "183", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_INTERRUPT_IRQ_MAX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@6968@macro@FSL_FEATURE_PINT_NUMBER_OF_CONNECTED_OUTPUTS", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_PINT_NUMBER_OF_CONNECTED_OUTPUTS", - "location": { - "column": "9", - "line": "188", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_PINT_NUMBER_OF_CONNECTED_OUTPUTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@7096@macro@FSL_FEATURE_RTC_HAS_NO_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_RTC_HAS_NO_RESET", - "location": { - "column": "9", - "line": "193", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_RTC_HAS_NO_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@7200@macro@FSL_FEATURE_SCT_NUMBER_OF_EVENTS", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SCT_NUMBER_OF_EVENTS", - "location": { - "column": "9", - "line": "198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SCT_NUMBER_OF_EVENTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@7278@macro@FSL_FEATURE_SCT_NUMBER_OF_STATES", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SCT_NUMBER_OF_STATES", - "location": { - "column": "9", - "line": "200", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SCT_NUMBER_OF_STATES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@7363@macro@FSL_FEATURE_SCT_NUMBER_OF_MATCH_CAPTURE", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SCT_NUMBER_OF_MATCH_CAPTURE", - "location": { - "column": "9", - "line": "202", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SCT_NUMBER_OF_MATCH_CAPTURE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@7449@macro@FSL_FEATURE_SCT_NUMBER_OF_OUTPUTS", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SCT_NUMBER_OF_OUTPUTS", - "location": { - "column": "9", - "line": "204", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SCT_NUMBER_OF_OUTPUTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@7579@macro@FSL_FEATURE_SYSCON_IAP_ENTRY_LOCATION", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SYSCON_IAP_ENTRY_LOCATION", - "location": { - "column": "9", - "line": "209", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SYSCON_IAP_ENTRY_LOCATION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@7678@macro@FSL_FEATURE_SYSCON_FLASH_PAGE_SIZE_BYTES", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SYSCON_FLASH_PAGE_SIZE_BYTES", - "location": { - "column": "9", - "line": "211", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SYSCON_FLASH_PAGE_SIZE_BYTES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@7775@macro@FSL_FEATURE_SYSCON_FLASH_SECTOR_SIZE_BYTES", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SYSCON_FLASH_SECTOR_SIZE_BYTES", - "location": { - "column": "9", - "line": "213", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SYSCON_FLASH_SECTOR_SIZE_BYTES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@7869@macro@FSL_FEATURE_SYSCON_FLASH_SIZE_BYTES", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SYSCON_FLASH_SIZE_BYTES", - "location": { - "column": "9", - "line": "215", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SYSCON_FLASH_SIZE_BYTES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@7973@macro@FSL_FEATURE_IAP_HAS_FLASH_FUNCTION", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_IAP_HAS_FLASH_FUNCTION", - "location": { - "column": "9", - "line": "217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_IAP_HAS_FLASH_FUNCTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@8074@macro@FSL_FEATURE_IAP_HAS_FLASH_SIGNATURE_READ", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_IAP_HAS_FLASH_SIGNATURE_READ", - "location": { - "column": "9", - "line": "219", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_IAP_HAS_FLASH_SIGNATURE_READ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@8189@macro@FSL_FEATURE_IAP_HAS_FLASH_EXTENDED_SIGNATURE_READ", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_IAP_HAS_FLASH_EXTENDED_SIGNATURE_READ", - "location": { - "column": "9", - "line": "221", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_IAP_HAS_FLASH_EXTENDED_SIGNATURE_READ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@8339@macro@FSL_FEATURE_SYSTICK_HAS_EXT_REF", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SYSTICK_HAS_EXT_REF", - "location": { - "column": "9", - "line": "226", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SYSTICK_HAS_EXT_REF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@8468@macro@FSL_FEATURE_SYSTICK_EXT_REF_CORE_DIV", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_SYSTICK_EXT_REF_CORE_DIV", - "location": { - "column": "9", - "line": "228", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_SYSTICK_EXT_REF_CORE_DIV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:LPC51U68_features.h@8596@macro@FSL_FEATURE_USB_EP_NUM", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FEATURE_USB_EP_NUM", - "location": { - "column": "9", - "line": "233", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\LPC51U68_features.h" - }, - "name": "FSL_FEATURE_USB_EP_NUM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@297@macro@__BUILTINS_INCLUDED", - "What": "MacroDef", - "defdec": "Def", - "display": "__BUILTINS_INCLUDED", - "location": { - "column": "9", - "line": "12", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__BUILTINS_INCLUDED", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@614@macro@__IEFF_HS", - "What": "MacroDef", - "defdec": "Def", - "display": "__IEFF_HS", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__IEFF_HS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@692@macro@__IEFF_NE", - "What": "MacroDef", - "defdec": "Def", - "display": "__IEFF_NE", - "location": { - "column": "9", - "line": "30", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__IEFF_NE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_no_operation", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_no_operation(void)", - "location": { - "column": "22", - "line": "39", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_no_operation", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_disable_interrupt", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_disable_interrupt(void)", - "location": { - "column": "22", - "line": "41", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_disable_interrupt", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_enable_interrupt", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_enable_interrupt(void)", - "location": { - "column": "22", - "line": "42", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_enable_interrupt", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@T@__istate_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "22", - "line": "44", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__istate_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_interrupt_state", - "What": "Function", - "defdec": "Dec", - "display": "__istate_t __iar_builtin_get_interrupt_state(void)", - "location": { - "column": "25", - "line": "46", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_interrupt_state", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_interrupt_state", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_interrupt_state(__istate_t)", - "location": { - "column": "19", - "line": "47", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_interrupt_state", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_PSR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_PSR(void)", - "location": { - "column": "27", - "line": "50", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_PSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_IPSR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_IPSR(void)", - "location": { - "column": "27", - "line": "51", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_IPSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_MSP", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_MSP(void)", - "location": { - "column": "37", - "line": "52", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_MSP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_MSP", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_MSP(unsigned int)", - "location": { - "column": "27", - "line": "53", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_MSP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_PSP", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_PSP(void)", - "location": { - "column": "37", - "line": "54", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_PSP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_PSP", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_PSP(unsigned int)", - "location": { - "column": "27", - "line": "55", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_PSP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_PRIMASK", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_PRIMASK(void)", - "location": { - "column": "37", - "line": "56", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_PRIMASK", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_PRIMASK", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_PRIMASK(unsigned int)", - "location": { - "column": "27", - "line": "57", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_PRIMASK", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_CONTROL", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_CONTROL(void)", - "location": { - "column": "37", - "line": "58", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_CONTROL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_CONTROL", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_CONTROL(unsigned int)", - "location": { - "column": "27", - "line": "59", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_CONTROL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_FAULTMASK", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_FAULTMASK(void)", - "location": { - "column": "37", - "line": "62", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_FAULTMASK", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_FAULTMASK", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_FAULTMASK(unsigned int)", - "location": { - "column": "27", - "line": "63", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_FAULTMASK", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_BASEPRI", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_BASEPRI(void)", - "location": { - "column": "37", - "line": "64", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_BASEPRI", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_BASEPRI", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_BASEPRI(unsigned int)", - "location": { - "column": "27", - "line": "65", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_BASEPRI", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_disable_irq", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_disable_irq(void)", - "location": { - "column": "19", - "line": "68", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_disable_irq", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_enable_irq", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_enable_irq(void)", - "location": { - "column": "19", - "line": "69", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_enable_irq", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_disable_fiq", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_disable_fiq(void)", - "location": { - "column": "19", - "line": "71", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_disable_fiq", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_enable_fiq", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_enable_fiq(void)", - "location": { - "column": "19", - "line": "72", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_enable_fiq", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SWP", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SWP(unsigned int, volatile unsigned int *)", - "location": { - "column": "37", - "line": "77", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SWP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SWPB", - "What": "Function", - "defdec": "Dec", - "display": "unsigned char __iar_builtin_SWPB(unsigned char, volatile unsigned char *)", - "location": { - "column": "38", - "line": "78", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SWPB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@T@__ul", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "22", - "line": "80", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__ul", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@T@__iar_builtin_uint", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "22", - "line": "81", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_uint", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@2822@macro@__cpid", - "What": "MacroDef", - "defdec": "Def", - "display": "__cpid", - "location": { - "column": "9", - "line": "83", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__cpid", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@2868@macro@__cpreg", - "What": "MacroDef", - "defdec": "Def", - "display": "__cpreg", - "location": { - "column": "9", - "line": "84", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__cpreg", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@2914@macro@__cpopcw", - "What": "MacroDef", - "defdec": "Def", - "display": "__cpopcw", - "location": { - "column": "9", - "line": "85", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__cpopcw", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@2960@macro@__cpopc", - "What": "MacroDef", - "defdec": "Def", - "display": "__cpopc", - "location": { - "column": "9", - "line": "86", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__cpopc", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CDP", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_CDP(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "29", - "line": "90", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CDP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CDP2", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_CDP2(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "29", - "line": "91", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CDP2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MCR", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_MCR(unsigned int, unsigned int, __iar_builtin_uint, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "94", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MCR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MRC", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_MRC(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "27", - "line": "96", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MRC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MCR2", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_MCR2(unsigned int, unsigned int, __iar_builtin_uint, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "98", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MCR2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MRC2", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_MRC2(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "27", - "line": "100", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MRC2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MCRR", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_MCRR(unsigned int, unsigned int, unsigned long long, unsigned int)", - "location": { - "column": "19", - "line": "103", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MCRR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MCRR2", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_MCRR2(unsigned int, unsigned int, unsigned long long, unsigned int)", - "location": { - "column": "19", - "line": "104", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MCRR2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MRRC", - "What": "Function", - "defdec": "Dec", - "display": "unsigned long long __iar_builtin_MRRC(unsigned int, unsigned int, unsigned int)", - "location": { - "column": "33", - "line": "106", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MRRC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_MRRC2", - "What": "Function", - "defdec": "Dec", - "display": "unsigned long long __iar_builtin_MRRC2(unsigned int, unsigned int, unsigned int)", - "location": { - "column": "33", - "line": "107", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_MRRC2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDC", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDC(unsigned int, unsigned int, const volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "110", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDCL", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDCL(unsigned int, unsigned int, const volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "111", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDCL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDC2", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDC2(unsigned int, unsigned int, const volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "112", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDC2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDC2L", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDC2L(unsigned int, unsigned int, const volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "113", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDC2L", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STC", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STC(unsigned int, unsigned int, volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "116", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STCL", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STCL(unsigned int, unsigned int, volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "117", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STCL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STC2", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STC2(unsigned int, unsigned int, volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "118", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STC2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STC2L", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STC2L(unsigned int, unsigned int, volatile __iar_builtin_uint *)", - "location": { - "column": "19", - "line": "119", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STC2L", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDC_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDC_noidx(unsigned int, unsigned int, const volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "122", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDC_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDCL_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDCL_noidx(unsigned int, unsigned int, const volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "125", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDCL_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDC2_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDC2_noidx(unsigned int, unsigned int, const volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "128", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDC2_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDC2L_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_LDC2L_noidx(unsigned int, unsigned int, const volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "131", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDC2L_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STC_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STC_noidx(unsigned int, unsigned int, volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "135", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STC_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STCL_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STCL_noidx(unsigned int, unsigned int, volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "138", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STCL_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STC2_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STC2_noidx(unsigned int, unsigned int, volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "141", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STC2_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STC2L_noidx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_STC2L_noidx(unsigned int, unsigned int, volatile __iar_builtin_uint *, unsigned int)", - "location": { - "column": "19", - "line": "144", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STC2L_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iccarm_builtin.h@6975@macro@__sys_reg", - "What": "MacroDef", - "defdec": "Def", - "display": "__sys_reg", - "location": { - "column": "9", - "line": "147", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__sys_reg", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_rsr", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_rsr(const char *)", - "location": { - "column": "33", - "line": "150", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_rsr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_rsr64", - "What": "Function", - "defdec": "Dec", - "display": "unsigned long long __iar_builtin_rsr64(const char *)", - "location": { - "column": "33", - "line": "151", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_rsr64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_rsrp", - "What": "Function", - "defdec": "Dec", - "display": "void * __iar_builtin_rsrp(const char *)", - "location": { - "column": "33", - "line": "152", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_rsrp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_wsr", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_wsr(const char *, unsigned int)", - "location": { - "column": "19", - "line": "155", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_wsr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_wsr64", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_wsr64(const char *, unsigned long long)", - "location": { - "column": "19", - "line": "156", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_wsr64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_wsrp", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_wsrp(const char *, const void *)", - "location": { - "column": "19", - "line": "157", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_wsrp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_APSR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_APSR(void)", - "location": { - "column": "27", - "line": "160", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_APSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_APSR", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_APSR(unsigned int)", - "location": { - "column": "27", - "line": "161", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_APSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_CPSR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_CPSR(void)", - "location": { - "column": "27", - "line": "164", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_CPSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_CPSR", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_CPSR(unsigned int)", - "location": { - "column": "27", - "line": "165", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_CPSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_get_FPSCR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_get_FPSCR(void)", - "location": { - "column": "27", - "line": "168", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_get_FPSCR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_FPSCR", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_FPSCR(unsigned int)", - "location": { - "column": "19", - "line": "169", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_FPSCR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CLZ", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CLZ(unsigned int)", - "location": { - "column": "37", - "line": "173", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CLZ", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_ROR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_ROR(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "174", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_ROR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_RRX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_RRX(unsigned int)", - "location": { - "column": "27", - "line": "175", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_RRX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QADD", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QADD(int, int)", - "location": { - "column": "35", - "line": "178", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QADD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QDADD", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QDADD(int, int)", - "location": { - "column": "35", - "line": "179", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QDADD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QSUB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QSUB(int, int)", - "location": { - "column": "35", - "line": "180", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QSUB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QDSUB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QDSUB(int, int)", - "location": { - "column": "35", - "line": "181", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QDSUB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QDOUBLE", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QDOUBLE(int)", - "location": { - "column": "35", - "line": "182", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QDOUBLE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QFlag", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QFlag(void)", - "location": { - "column": "35", - "line": "183", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QFlag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_acle_QFlag", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_acle_QFlag(void)", - "location": { - "column": "30", - "line": "184", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_acle_QFlag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_set_QFlag", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_set_QFlag(int)", - "location": { - "column": "30", - "line": "185", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_set_QFlag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_ignore_QFlag", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_ignore_QFlag(void)", - "location": { - "column": "30", - "line": "186", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_ignore_QFlag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QCFlag", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_QCFlag(void)", - "location": { - "column": "36", - "line": "188", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QCFlag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_reset_QC_flag", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_reset_QC_flag(void)", - "location": { - "column": "29", - "line": "189", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_reset_QC_flag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMUL", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMUL(short, short)", - "location": { - "column": "35", - "line": "191", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMUL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_REV", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_REV(unsigned int)", - "location": { - "column": "37", - "line": "194", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_REV", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_REVSH", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_REVSH(short)", - "location": { - "column": "35", - "line": "195", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_REVSH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_REV16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_REV16(unsigned int)", - "location": { - "column": "37", - "line": "197", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_REV16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_RBIT", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_RBIT(unsigned int)", - "location": { - "column": "37", - "line": "198", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_RBIT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDREXB", - "What": "Function", - "defdec": "Dec", - "display": "unsigned char __iar_builtin_LDREXB(const volatile unsigned char *)", - "location": { - "column": "29", - "line": "200", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDREXB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDREXH", - "What": "Function", - "defdec": "Dec", - "display": "unsigned short __iar_builtin_LDREXH(const volatile unsigned short *)", - "location": { - "column": "29", - "line": "201", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDREXH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDREX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_LDREX(const volatile unsigned int *)", - "location": { - "column": "28", - "line": "202", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDREX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_LDREXD", - "What": "Function", - "defdec": "Dec", - "display": "unsigned long long __iar_builtin_LDREXD(const volatile unsigned long long *)", - "location": { - "column": "33", - "line": "203", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_LDREXD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STREXB", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_STREXB(unsigned char, volatile unsigned char *)", - "location": { - "column": "28", - "line": "205", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STREXB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STREXH", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_STREXH(unsigned short, volatile unsigned short *)", - "location": { - "column": "28", - "line": "206", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STREXH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STREX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_STREX(unsigned int, volatile unsigned int *)", - "location": { - "column": "28", - "line": "207", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STREX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_STREXD", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_STREXD(unsigned long long, volatile unsigned long long *)", - "location": { - "column": "28", - "line": "208", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_STREXD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CLREX", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_CLREX(void)", - "location": { - "column": "19", - "line": "210", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CLREX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SEV", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_SEV(void)", - "location": { - "column": "19", - "line": "212", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SEV", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_WFE", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_WFE(void)", - "location": { - "column": "19", - "line": "213", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_WFE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_WFI", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_WFI(void)", - "location": { - "column": "19", - "line": "214", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_WFI", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_YIELD", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_YIELD(void)", - "location": { - "column": "19", - "line": "215", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_YIELD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PLI", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_PLI(const volatile void *)", - "location": { - "column": "19", - "line": "217", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PLI", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PLD", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_PLD(const volatile void *)", - "location": { - "column": "19", - "line": "218", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PLD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PLIx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_PLIx(const volatile void *, unsigned int, unsigned int)", - "location": { - "column": "19", - "line": "220", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PLIx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PLDx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_PLDx(const volatile void *, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "19", - "line": "221", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PLDx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PLDW", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_PLDW(const volatile void *)", - "location": { - "column": "19", - "line": "222", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PLDW", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SSAT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SSAT(int, unsigned int)", - "location": { - "column": "37", - "line": "224", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SSAT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USAT", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USAT(int, unsigned int)", - "location": { - "column": "37", - "line": "225", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USAT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SEL", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SEL(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "228", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SEL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SADD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SADD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "230", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SADD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SADD16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SADD16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "231", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SADD16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SSUB8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SSUB8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "232", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SSUB8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SSUB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SSUB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "233", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SSUB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SADDSUBX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SADDSUBX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "234", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SADDSUBX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SSUBADDX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SSUBADDX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "235", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SSUBADDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHADD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHADD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "237", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHADD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHADD16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHADD16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "238", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHADD16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHSUB8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHSUB8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "239", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHSUB8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHSUB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHSUB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "240", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHSUB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHADDSUBX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHADDSUBX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "241", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHADDSUBX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHSUBADDX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHSUBADDX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "242", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHSUBADDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QADD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QADD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "244", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QADD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QADD16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QADD16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "245", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QADD16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QSUB8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QSUB8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "246", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QSUB8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QSUB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QSUB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "247", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QSUB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QADDSUBX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QADDSUBX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "248", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QADDSUBX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QSUBADDX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QSUBADDX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "249", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QSUBADDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UADD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UADD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "251", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UADD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UADD16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UADD16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "252", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UADD16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USUB8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USUB8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "253", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USUB8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USUB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USUB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "254", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USUB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UADDSUBX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UADDSUBX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "255", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UADDSUBX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USUBADDX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USUBADDX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "256", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USUBADDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHADD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHADD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "258", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHADD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHADD16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHADD16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "259", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHADD16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHSUB8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHSUB8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "260", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHSUB8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHSUB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHSUB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "261", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHSUB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHADDSUBX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHADDSUBX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "262", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHADDSUBX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHSUBADDX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHSUBADDX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "263", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHSUBADDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQADD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQADD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "265", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQADD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQADD16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQADD16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "266", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQADD16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQSUB8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQSUB8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "267", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQSUB8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQSUB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQSUB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "268", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQSUB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQADDSUBX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQADDSUBX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "269", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQADDSUBX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQSUBADDX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQSUBADDX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "270", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQSUBADDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USAD8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USAD8(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "272", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USAD8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USADA8", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USADA8(unsigned int, unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "273", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USADA8", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SSAT16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SSAT16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "276", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SSAT16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USAT16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USAT16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "278", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USAT16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMUAD", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMUAD(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "281", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMUAD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMUSD", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMUSD(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "282", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMUSD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMUADX", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMUADX(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "283", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMUADX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMUSDX", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMUSDX(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "284", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMUSDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLAD", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLAD(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "286", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLAD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLSD", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLSD(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "287", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLSD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLADX", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLADX(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "288", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLADX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLSDX", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLSDX(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "289", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLSDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLALD", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLALD(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "291", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLALD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLALDX", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLALDX(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "295", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLALDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLSLD", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLSLD(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "299", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLSLD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLSLDX", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLSLDX(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "303", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLSLDX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PKHBT", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_PKHBT(unsigned int, unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "307", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PKHBT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_PKHTB", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_PKHTB(unsigned int, unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "310", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_PKHTB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLABB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLABB(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "314", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLABB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLABT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLABT(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "315", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLABT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLATB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLATB(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "316", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLATB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLATT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLATT(unsigned int, unsigned int, int)", - "location": { - "column": "28", - "line": "317", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLATT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLAWB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLAWB(int, unsigned int, int)", - "location": { - "column": "28", - "line": "319", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLAWB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLAWT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMLAWT(int, unsigned int, int)", - "location": { - "column": "28", - "line": "320", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLAWT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMMLA", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMMLA(int, int, int)", - "location": { - "column": "28", - "line": "322", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMMLA", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMMLAR", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMMLAR(int, int, int)", - "location": { - "column": "28", - "line": "323", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMMLAR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMMLS", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMMLS(int, int, int)", - "location": { - "column": "28", - "line": "324", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMMLS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMMLSR", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMMLSR(int, int, int)", - "location": { - "column": "28", - "line": "325", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMMLSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMMUL", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMMUL(int, int)", - "location": { - "column": "28", - "line": "327", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMMUL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMMULR", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMMULR(int, int)", - "location": { - "column": "28", - "line": "328", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMMULR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMULBB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMULBB(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "330", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMULBB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMULBT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMULBT(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "331", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMULBT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMULTB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMULTB(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "332", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMULTB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMULTT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMULTT(unsigned int, unsigned int)", - "location": { - "column": "28", - "line": "333", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMULTT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMULWB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMULWB(int, unsigned int)", - "location": { - "column": "28", - "line": "335", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMULWB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMULWT", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SMULWT(int, unsigned int)", - "location": { - "column": "28", - "line": "336", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMULWT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SXTAB", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SXTAB(int, unsigned int)", - "location": { - "column": "28", - "line": "338", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SXTAB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SXTAH", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_builtin_SXTAH(int, unsigned int)", - "location": { - "column": "28", - "line": "339", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SXTAH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UXTAB", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UXTAB(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "340", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UXTAB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UXTAH", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UXTAH(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "341", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UXTAH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UMAAL", - "What": "Function", - "defdec": "Dec", - "display": "unsigned long long __iar_builtin_UMAAL(unsigned int, unsigned int, unsigned int, unsigned int)", - "location": { - "column": "43", - "line": "343", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UMAAL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLALBB", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLALBB(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "348", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLALBB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLALBT", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLALBT(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "352", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLALBT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLALTB", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLALTB(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "356", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLALTB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SMLALTT", - "What": "Function", - "defdec": "Dec", - "display": "long long __iar_builtin_SMLALTT(unsigned int, unsigned int, long long)", - "location": { - "column": "34", - "line": "360", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SMLALTT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UXTB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UXTB16(unsigned int)", - "location": { - "column": "37", - "line": "364", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UXTB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UXTAB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UXTAB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "365", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UXTAB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SXTB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SXTB16(unsigned int)", - "location": { - "column": "37", - "line": "367", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SXTB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SXTAB16", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SXTAB16(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "368", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SXTAB16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SASX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SASX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "370", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SASX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SSAX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SSAX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "371", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SSAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHASX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHASX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "372", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHASX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_SHSAX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_SHSAX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "373", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_SHSAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QASX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QASX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "374", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QASX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_QSAX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_QSAX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "375", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_QSAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UASX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UASX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "377", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UASX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_USAX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_USAX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "378", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_USAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHASX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHASX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "379", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHASX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UHSAX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UHSAX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "380", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UHSAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQASX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQASX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "381", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQASX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_UQSAX", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_UQSAX(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "382", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_UQSAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_DMB", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_DMB(void)", - "location": { - "column": "19", - "line": "385", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_DMB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_DSB", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_DSB(void)", - "location": { - "column": "19", - "line": "386", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_DSB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_ISB", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_ISB(void)", - "location": { - "column": "19", - "line": "387", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_ISB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_DMBx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_DMBx(unsigned int)", - "location": { - "column": "19", - "line": "388", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_DMBx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_DSBx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_DSBx(unsigned int)", - "location": { - "column": "19", - "line": "389", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_DSBx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_ISBx", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_builtin_ISBx(unsigned int)", - "location": { - "column": "19", - "line": "390", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_ISBx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_TT", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_TT(unsigned int)", - "location": { - "column": "27", - "line": "393", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_TT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_TTT", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_TTT(unsigned int)", - "location": { - "column": "27", - "line": "394", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_TTT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_TTA", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_TTA(unsigned int)", - "location": { - "column": "27", - "line": "395", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_TTA", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_TTAT", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_TTAT(unsigned int)", - "location": { - "column": "27", - "line": "396", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_TTAT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__get_LR", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __get_LR(void)", - "location": { - "column": "27", - "line": "398", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__get_LR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__set_LR", - "What": "Function", - "defdec": "Dec", - "display": "void __set_LR(unsigned int)", - "location": { - "column": "19", - "line": "399", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__set_LR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__get_SP", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __get_SP(void)", - "location": { - "column": "27", - "line": "401", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__get_SP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__set_SP", - "What": "Function", - "defdec": "Dec", - "display": "void __set_SP(unsigned int)", - "location": { - "column": "19", - "line": "402", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__set_SP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VSQRT_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VSQRT_F32(float)", - "location": { - "column": "30", - "line": "405", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VSQRT_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VSQRT_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VSQRT_F64(double)", - "location": { - "column": "31", - "line": "406", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VSQRT_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFMA_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VFMA_F32(float, float, float)", - "location": { - "column": "30", - "line": "409", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFMA_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFMS_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VFMS_F32(float, float, float)", - "location": { - "column": "30", - "line": "410", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFMS_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFNMA_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VFNMA_F32(float, float, float)", - "location": { - "column": "30", - "line": "411", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFNMA_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFNMS_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VFNMS_F32(float, float, float)", - "location": { - "column": "30", - "line": "412", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFNMS_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFMA_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VFMA_F64(double, double, double)", - "location": { - "column": "31", - "line": "413", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFMA_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFMS_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VFMS_F64(double, double, double)", - "location": { - "column": "31", - "line": "414", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFMS_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFNMA_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VFNMA_F64(double, double, double)", - "location": { - "column": "31", - "line": "415", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFNMA_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VFNMS_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VFNMS_F64(double, double, double)", - "location": { - "column": "31", - "line": "416", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VFNMS_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CRC32B", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CRC32B(unsigned int, unsigned char)", - "location": { - "column": "37", - "line": "419", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CRC32B", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CRC32H", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CRC32H(unsigned int, unsigned short)", - "location": { - "column": "37", - "line": "420", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CRC32H", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CRC32W", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CRC32W(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "421", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CRC32W", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CRC32CB", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CRC32CB(unsigned int, unsigned char)", - "location": { - "column": "37", - "line": "422", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CRC32CB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CRC32CH", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CRC32CH(unsigned int, unsigned short)", - "location": { - "column": "37", - "line": "423", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CRC32CH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_CRC32CW", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int __iar_builtin_CRC32CW(unsigned int, unsigned int)", - "location": { - "column": "37", - "line": "424", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_CRC32CW", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VMAXNM_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VMAXNM_F32(float, float)", - "location": { - "column": "30", - "line": "427", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VMAXNM_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VMINNM_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VMINNM_F32(float, float)", - "location": { - "column": "30", - "line": "428", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VMINNM_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VMAXNM_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VMAXNM_F64(double, double)", - "location": { - "column": "31", - "line": "429", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VMAXNM_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VMINNM_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VMINNM_F64(double, double)", - "location": { - "column": "31", - "line": "430", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VMINNM_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTA_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTA_F32(float)", - "location": { - "column": "30", - "line": "433", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTA_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTM_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTM_F32(float)", - "location": { - "column": "30", - "line": "434", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTM_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTN_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTN_F32(float)", - "location": { - "column": "30", - "line": "435", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTN_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTP_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTP_F32(float)", - "location": { - "column": "30", - "line": "436", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTP_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTX_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTX_F32(float)", - "location": { - "column": "30", - "line": "437", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTX_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTR_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTR_F32(float)", - "location": { - "column": "30", - "line": "438", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTR_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTZ_F32", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_builtin_VRINTZ_F32(float)", - "location": { - "column": "30", - "line": "439", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTZ_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTA_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTA_F64(double)", - "location": { - "column": "31", - "line": "440", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTA_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTM_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTM_F64(double)", - "location": { - "column": "31", - "line": "441", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTM_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTN_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTN_F64(double)", - "location": { - "column": "31", - "line": "442", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTN_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTP_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTP_F64(double)", - "location": { - "column": "31", - "line": "443", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTP_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTX_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTX_F64(double)", - "location": { - "column": "31", - "line": "444", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTX_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTR_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTR_F64(double)", - "location": { - "column": "31", - "line": "445", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTR_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_builtin_VRINTZ_F64", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_builtin_VRINTZ_F64(double)", - "location": { - "column": "31", - "line": "446", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iccarm_builtin.h" - }, - "name": "__iar_builtin_VRINTZ_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@1134@macro@__CMSIS_ICCARM_H__", - "What": "MacroDef", - "defdec": "Def", - "display": "__CMSIS_ICCARM_H__", - "location": { - "column": "9", - "line": "27", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__CMSIS_ICCARM_H__", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@1274@macro@__IAR_FT", - "What": "MacroDef", - "defdec": "Def", - "display": "__IAR_FT", - "location": { - "column": "9", - "line": "35", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__IAR_FT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@1359@macro@__ICCARM_V8", - "What": "MacroDef", - "defdec": "Def", - "display": "__ICCARM_V8", - "location": { - "column": "11", - "line": "38", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__ICCARM_V8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@1466@macro@__ALIGNED", - "What": "MacroDef", - "defdec": "Def", - "display": "__ALIGNED", - "location": { - "column": "13", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__ALIGNED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@2267@macro@__ARM_ARCH_6M__", - "What": "MacroDef", - "defdec": "Def", - "display": "__ARM_ARCH_6M__", - "location": { - "column": "15", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__ARM_ARCH_6M__", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@3446@macro@__IAR_M0_FAMILY", - "What": "MacroDef", - "defdec": "Def", - "display": "__IAR_M0_FAMILY", - "location": { - "column": "11", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__IAR_M0_FAMILY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@3634@macro@__ASM", - "What": "MacroDef", - "defdec": "Def", - "display": "__ASM", - "location": { - "column": "11", - "line": "110", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__ASM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@3685@macro@__INLINE", - "What": "MacroDef", - "defdec": "Def", - "display": "__INLINE", - "location": { - "column": "11", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__INLINE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@3766@macro@__NO_RETURN", - "What": "MacroDef", - "defdec": "Def", - "display": "__NO_RETURN", - "location": { - "column": "13", - "line": "119", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__NO_RETURN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@3953@macro@__PACKED", - "What": "MacroDef", - "defdec": "Def", - "display": "__PACKED", - "location": { - "column": "13", - "line": "127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__PACKED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@4158@macro@__PACKED_STRUCT", - "What": "MacroDef", - "defdec": "Def", - "display": "__PACKED_STRUCT", - "location": { - "column": "13", - "line": "136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__PACKED_STRUCT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@4390@macro@__PACKED_UNION", - "What": "MacroDef", - "defdec": "Def", - "display": "__PACKED_UNION", - "location": { - "column": "13", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__PACKED_UNION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@4593@macro@__RESTRICT", - "What": "MacroDef", - "defdec": "Def", - "display": "__RESTRICT", - "location": { - "column": "11", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__RESTRICT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@4672@macro@__STATIC_INLINE", - "What": "MacroDef", - "defdec": "Def", - "display": "__STATIC_INLINE", - "location": { - "column": "11", - "line": "157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__STATIC_INLINE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@4754@macro@__FORCEINLINE", - "What": "MacroDef", - "defdec": "Def", - "display": "__FORCEINLINE", - "location": { - "column": "11", - "line": "161", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__FORCEINLINE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@4854@macro@__STATIC_FORCEINLINE", - "What": "MacroDef", - "defdec": "Def", - "display": "__STATIC_FORCEINLINE", - "location": { - "column": "11", - "line": "165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__STATIC_FORCEINLINE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__iar_uint16_read", - "What": "Function", - "defdec": "Def", - "display": "uint16_t __iar_uint16_read(const void *)", - "location": { - "column": "19", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__iar_uint16_read", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@5132@macro@__UNALIGNED_UINT16_READ", - "What": "MacroDef", - "defdec": "Def", - "display": "__UNALIGNED_UINT16_READ", - "location": { - "column": "9", - "line": "176", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__UNALIGNED_UINT16_READ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__iar_uint16_write", - "What": "Function", - "defdec": "Def", - "display": "void __iar_uint16_write(const void *, uint16_t)", - "location": { - "column": "15", - "line": "183", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__iar_uint16_write", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@5424@macro@__UNALIGNED_UINT16_WRITE", - "What": "MacroDef", - "defdec": "Def", - "display": "__UNALIGNED_UINT16_WRITE", - "location": { - "column": "9", - "line": "188", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__UNALIGNED_UINT16_WRITE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__iar_uint32_read", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __iar_uint32_read(const void *)", - "location": { - "column": "19", - "line": "194", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__iar_uint32_read", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@5712@macro@__UNALIGNED_UINT32_READ", - "What": "MacroDef", - "defdec": "Def", - "display": "__UNALIGNED_UINT32_READ", - "location": { - "column": "9", - "line": "199", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__UNALIGNED_UINT32_READ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__iar_uint32_write", - "What": "Function", - "defdec": "Def", - "display": "void __iar_uint32_write(const void *, uint32_t)", - "location": { - "column": "15", - "line": "205", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__iar_uint32_write", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@6002@macro@__UNALIGNED_UINT32_WRITE", - "What": "MacroDef", - "defdec": "Def", - "display": "__UNALIGNED_UINT32_WRITE", - "location": { - "column": "9", - "line": "210", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__UNALIGNED_UINT32_WRITE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@__iar_u32", - "What": "Struct", - "defdec": "Def", - "display": "__iar_u32", - "location": { - "column": "18", - "line": "216", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "members": [ - { - "ID": "c:@S@__iar_u32@FI@v", - "What": "FieldDecl", - "defdec": "Def", - "display": "v", - "location": { - "column": "39", - "line": "216", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "v", - "origin": "user_include", - "scope": "__iar_u32" - } - ], - "name": "__iar_u32", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@6251@macro@__UNALIGNED_UINT32", - "What": "MacroDef", - "defdec": "Def", - "display": "__UNALIGNED_UINT32", - "location": { - "column": "9", - "line": "218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__UNALIGNED_UINT32", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@6368@macro@__USED", - "What": "MacroDef", - "defdec": "Def", - "display": "__USED", - "location": { - "column": "13", - "line": "223", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__USED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7053@macro@__disable_fault_irq", - "What": "MacroDef", - "defdec": "Def", - "display": "__disable_fault_irq", - "location": { - "column": "11", - "line": "262", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__disable_fault_irq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7110@macro@__disable_irq", - "What": "MacroDef", - "defdec": "Def", - "display": "__disable_irq", - "location": { - "column": "11", - "line": "263", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__disable_irq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7173@macro@__enable_fault_irq", - "What": "MacroDef", - "defdec": "Def", - "display": "__enable_fault_irq", - "location": { - "column": "11", - "line": "264", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__enable_fault_irq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7229@macro@__enable_irq", - "What": "MacroDef", - "defdec": "Def", - "display": "__enable_irq", - "location": { - "column": "11", - "line": "265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__enable_irq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7291@macro@__arm_rsr", - "What": "MacroDef", - "defdec": "Def", - "display": "__arm_rsr", - "location": { - "column": "11", - "line": "266", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__arm_rsr", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7340@macro@__arm_wsr", - "What": "MacroDef", - "defdec": "Def", - "display": "__arm_wsr", - "location": { - "column": "11", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__arm_wsr", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7393@macro@__get_APSR", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_APSR", - "location": { - "column": "11", - "line": "270", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__get_APSR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7452@macro@__get_BASEPRI", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_BASEPRI", - "location": { - "column": "11", - "line": "271", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__get_BASEPRI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7514@macro@__get_CONTROL", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_CONTROL", - "location": { - "column": "11", - "line": "272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__get_CONTROL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7576@macro@__get_FAULTMASK", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_FAULTMASK", - "location": { - "column": "11", - "line": "273", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__get_FAULTMASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7911@macro@__get_FPSCR", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_FPSCR", - "location": { - "column": "13", - "line": "280", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__get_FPSCR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@7956@macro@__set_FPSCR", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_FPSCR", - "location": { - "column": "13", - "line": "281", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__set_FPSCR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8019@macro@__get_IPSR", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_IPSR", - "location": { - "column": "11", - "line": "284", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__get_IPSR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8078@macro@__get_MSP", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_MSP", - "location": { - "column": "11", - "line": "285", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__get_MSP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8351@macro@__get_MSPLIM", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_MSPLIM", - "location": { - "column": "13", - "line": "289", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__get_MSPLIM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8473@macro@__get_PRIMASK", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_PRIMASK", - "location": { - "column": "11", - "line": "293", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__get_PRIMASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8535@macro@__get_PSP", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_PSP", - "location": { - "column": "11", - "line": "294", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__get_PSP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8810@macro@__get_PSPLIM", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_PSPLIM", - "location": { - "column": "13", - "line": "299", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__get_PSPLIM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8934@macro@__get_xPSR", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_xPSR", - "location": { - "column": "11", - "line": "304", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__get_xPSR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@8995@macro@__set_BASEPRI", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_BASEPRI", - "location": { - "column": "11", - "line": "306", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__set_BASEPRI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9066@macro@__set_BASEPRI_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_BASEPRI_MAX", - "location": { - "column": "11", - "line": "307", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__set_BASEPRI_MAX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9141@macro@__set_CONTROL", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_CONTROL", - "location": { - "column": "11", - "line": "308", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__set_CONTROL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9212@macro@__set_FAULTMASK", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_FAULTMASK", - "location": { - "column": "11", - "line": "309", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__set_FAULTMASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9285@macro@__set_MSP", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_MSP", - "location": { - "column": "11", - "line": "310", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__set_MSP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9569@macro@__set_MSPLIM", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_MSPLIM", - "location": { - "column": "13", - "line": "315", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__set_MSPLIM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9711@macro@__set_PRIMASK", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_PRIMASK", - "location": { - "column": "11", - "line": "319", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__set_PRIMASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@9782@macro@__set_PSP", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_PSP", - "location": { - "column": "11", - "line": "320", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__set_PSP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10064@macro@__set_PSPLIM", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_PSPLIM", - "location": { - "column": "13", - "line": "324", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__set_PSPLIM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10208@macro@__TZ_get_CONTROL_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_CONTROL_NS", - "location": { - "column": "11", - "line": "329", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_get_CONTROL_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10273@macro@__TZ_set_CONTROL_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_CONTROL_NS", - "location": { - "column": "11", - "line": "330", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_set_CONTROL_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10347@macro@__TZ_get_PSP_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_PSP_NS", - "location": { - "column": "11", - "line": "331", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_get_PSP_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10408@macro@__TZ_set_PSP_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_PSP_NS", - "location": { - "column": "11", - "line": "332", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_set_PSP_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10478@macro@__TZ_get_MSP_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_MSP_NS", - "location": { - "column": "11", - "line": "333", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_get_MSP_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10539@macro@__TZ_set_MSP_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_MSP_NS", - "location": { - "column": "11", - "line": "334", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_set_MSP_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10609@macro@__TZ_get_SP_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_SP_NS", - "location": { - "column": "11", - "line": "335", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_get_SP_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10669@macro@__TZ_set_SP_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_SP_NS", - "location": { - "column": "11", - "line": "336", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_set_SP_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10738@macro@__TZ_get_PRIMASK_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_PRIMASK_NS", - "location": { - "column": "11", - "line": "337", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_get_PRIMASK_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10803@macro@__TZ_set_PRIMASK_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_PRIMASK_NS", - "location": { - "column": "11", - "line": "338", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_set_PRIMASK_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10877@macro@__TZ_get_BASEPRI_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_BASEPRI_NS", - "location": { - "column": "11", - "line": "339", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_get_BASEPRI_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@10942@macro@__TZ_set_BASEPRI_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_BASEPRI_NS", - "location": { - "column": "11", - "line": "340", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_set_BASEPRI_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11016@macro@__TZ_get_FAULTMASK_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_FAULTMASK_NS", - "location": { - "column": "11", - "line": "341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_get_FAULTMASK_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11083@macro@__TZ_set_FAULTMASK_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_FAULTMASK_NS", - "location": { - "column": "11", - "line": "342", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_set_FAULTMASK_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11159@macro@__TZ_get_PSPLIM_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_PSPLIM_NS", - "location": { - "column": "11", - "line": "343", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_get_PSPLIM_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11223@macro@__TZ_set_PSPLIM_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_PSPLIM_NS", - "location": { - "column": "11", - "line": "344", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_set_PSPLIM_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11296@macro@__TZ_get_MSPLIM_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_get_MSPLIM_NS", - "location": { - "column": "11", - "line": "345", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_get_MSPLIM_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11360@macro@__TZ_set_MSPLIM_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__TZ_set_MSPLIM_NS", - "location": { - "column": "11", - "line": "346", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__TZ_set_MSPLIM_NS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11435@macro@__NOP", - "What": "MacroDef", - "defdec": "Def", - "display": "__NOP", - "location": { - "column": "11", - "line": "348", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__NOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11485@macro@__CLZ", - "What": "MacroDef", - "defdec": "Def", - "display": "__CLZ", - "location": { - "column": "11", - "line": "350", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__CLZ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11524@macro@__CLREX", - "What": "MacroDef", - "defdec": "Def", - "display": "__CLREX", - "location": { - "column": "11", - "line": "351", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__CLREX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11567@macro@__DMB", - "What": "MacroDef", - "defdec": "Def", - "display": "__DMB", - "location": { - "column": "11", - "line": "353", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__DMB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11606@macro@__DSB", - "What": "MacroDef", - "defdec": "Def", - "display": "__DSB", - "location": { - "column": "11", - "line": "354", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__DSB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11645@macro@__ISB", - "What": "MacroDef", - "defdec": "Def", - "display": "__ISB", - "location": { - "column": "11", - "line": "355", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__ISB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11686@macro@__LDREXB", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDREXB", - "location": { - "column": "11", - "line": "357", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__LDREXB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11728@macro@__LDREXH", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDREXH", - "location": { - "column": "11", - "line": "358", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__LDREXH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11770@macro@__LDREXW", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDREXW", - "location": { - "column": "11", - "line": "359", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__LDREXW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11813@macro@__RBIT", - "What": "MacroDef", - "defdec": "Def", - "display": "__RBIT", - "location": { - "column": "11", - "line": "361", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__RBIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11853@macro@__REV", - "What": "MacroDef", - "defdec": "Def", - "display": "__REV", - "location": { - "column": "11", - "line": "362", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__REV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@11892@macro@__REV16", - "What": "MacroDef", - "defdec": "Def", - "display": "__REV16", - "location": { - "column": "11", - "line": "363", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__REV16", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@__REVSH", - "What": "Function", - "defdec": "Def", - "display": "int16_t __REVSH(int16_t)", - "location": { - "column": "20", - "line": "365", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__REVSH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12036@macro@__ROR", - "What": "MacroDef", - "defdec": "Def", - "display": "__ROR", - "location": { - "column": "11", - "line": "370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__ROR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12075@macro@__RRX", - "What": "MacroDef", - "defdec": "Def", - "display": "__RRX", - "location": { - "column": "11", - "line": "371", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__RRX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12116@macro@__SEV", - "What": "MacroDef", - "defdec": "Def", - "display": "__SEV", - "location": { - "column": "11", - "line": "373", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__SEV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12235@macro@__STREXB", - "What": "MacroDef", - "defdec": "Def", - "display": "__STREXB", - "location": { - "column": "11", - "line": "379", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__STREXB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12277@macro@__STREXH", - "What": "MacroDef", - "defdec": "Def", - "display": "__STREXH", - "location": { - "column": "11", - "line": "380", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__STREXH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12319@macro@__STREXW", - "What": "MacroDef", - "defdec": "Def", - "display": "__STREXW", - "location": { - "column": "11", - "line": "381", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__STREXW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12440@macro@__WFE", - "What": "MacroDef", - "defdec": "Def", - "display": "__WFE", - "location": { - "column": "11", - "line": "387", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__WFE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@12479@macro@__WFI", - "What": "MacroDef", - "defdec": "Def", - "display": "__WFI", - "location": { - "column": "11", - "line": "388", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__WFI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@23092@macro@__BKPT", - "What": "MacroDef", - "defdec": "Def", - "display": "__BKPT", - "location": { - "column": "9", - "line": "743", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__BKPT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@F@__SSAT", - "What": "Function", - "defdec": "Def", - "display": "int32_t __SSAT(int32_t, uint32_t)", - "location": { - "column": "27", - "line": "746", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__SSAT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@23296@F@__SSAT@max", - "What": "Variable", - "defdec": "Def", - "display": "max", - "location": { - "column": "21", - "line": "750", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "max", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@23359@F@__SSAT@min", - "What": "Variable", - "defdec": "Def", - "display": "min", - "location": { - "column": "21", - "line": "751", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "min", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@F@__USAT", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __USAT(int32_t, uint32_t)", - "location": { - "column": "28", - "line": "764", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "__USAT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_iccarm.h@23650@F@__USAT@max", - "What": "Variable", - "defdec": "Def", - "display": "max", - "location": { - "column": "22", - "line": "768", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_iccarm.h" - }, - "name": "max", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stdint.h@101@macro@_STDINT", - "What": "MacroDef", - "defdec": "Def", - "display": "_STDINT", - "location": { - "column": "9", - "line": "4", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "_STDINT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int8_t", - "What": "Typedef", - "defdec": "Def", - "display": "signed char", - "location": { - "column": "36", - "line": "19", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "int8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint8_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned char", - "location": { - "column": "35", - "line": "20", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uint8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int16_t", - "What": "Typedef", - "defdec": "Def", - "display": "short", - "location": { - "column": "36", - "line": "24", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "int16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint16_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned short", - "location": { - "column": "35", - "line": "25", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uint16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int32_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "36", - "line": "29", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "int32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint32_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "35", - "line": "30", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uint32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int64_t", - "What": "Typedef", - "defdec": "Def", - "display": "long long", - "location": { - "column": "36", - "line": "34", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "int64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint64_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long long", - "location": { - "column": "35", - "line": "35", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uint64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_least8_t", - "What": "Typedef", - "defdec": "Def", - "display": "signed char", - "location": { - "column": "36", - "line": "40", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "int_least8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_least8_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned char", - "location": { - "column": "35", - "line": "41", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_least8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_least16_t", - "What": "Typedef", - "defdec": "Def", - "display": "short", - "location": { - "column": "36", - "line": "43", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "int_least16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_least16_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned short", - "location": { - "column": "35", - "line": "44", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_least16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_least32_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "36", - "line": "46", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "int_least32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_least32_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "35", - "line": "47", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_least32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_least64_t", - "What": "Typedef", - "defdec": "Def", - "display": "long long", - "location": { - "column": "36", - "line": "51", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "int_least64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_least64_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long long", - "location": { - "column": "35", - "line": "54", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_least64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_fast8_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "36", - "line": "60", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "int_fast8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_fast8_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "35", - "line": "61", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_fast8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_fast16_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "36", - "line": "63", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "int_fast16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_fast16_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "35", - "line": "64", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_fast16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_fast32_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "36", - "line": "66", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "int_fast32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_fast32_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "35", - "line": "67", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_fast32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@int_fast64_t", - "What": "Typedef", - "defdec": "Def", - "display": "long long", - "location": { - "column": "36", - "line": "70", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "int_fast64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uint_fast64_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long long", - "location": { - "column": "35", - "line": "73", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uint_fast64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@intmax_t", - "What": "Typedef", - "defdec": "Def", - "display": "long long", - "location": { - "column": "36", - "line": "77", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "intmax_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uintmax_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long long", - "location": { - "column": "35", - "line": "78", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uintmax_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@intptr_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "36", - "line": "82", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "intptr_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@uintptr_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "35", - "line": "83", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "uintptr_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@2658@macro@__DATA_PTR_MEM_HELPER1__", - "What": "MacroDef", - "defdec": "Def", - "display": "__DATA_PTR_MEM_HELPER1__", - "location": { - "column": "9", - "line": "86", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "__DATA_PTR_MEM_HELPER1__", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@__data_intptr_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "1", - "line": "89", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "__data_intptr_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@T@__data_uintptr_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "1", - "line": "89", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "__data_uintptr_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@2962@macro@INT8_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT8_MAX", - "location": { - "column": "11", - "line": "94", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT8_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3006@macro@INT8_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT8_MIN", - "location": { - "column": "11", - "line": "95", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT8_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3050@macro@UINT8_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT8_MAX", - "location": { - "column": "11", - "line": "96", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT8_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3129@macro@INT16_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT16_MAX", - "location": { - "column": "11", - "line": "100", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT16_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3174@macro@INT16_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT16_MIN", - "location": { - "column": "11", - "line": "101", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT16_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3219@macro@UINT16_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT16_MAX", - "location": { - "column": "11", - "line": "102", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT16_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3299@macro@INT32_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT32_MAX", - "location": { - "column": "11", - "line": "106", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT32_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3344@macro@INT32_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT32_MIN", - "location": { - "column": "11", - "line": "107", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT32_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3389@macro@UINT32_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT32_MAX", - "location": { - "column": "11", - "line": "108", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT32_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3469@macro@INT64_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT64_MAX", - "location": { - "column": "11", - "line": "112", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT64_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3514@macro@INT64_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT64_MIN", - "location": { - "column": "11", - "line": "113", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT64_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3559@macro@UINT64_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT64_MAX", - "location": { - "column": "11", - "line": "114", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT64_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3612@macro@INT_LEAST8_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST8_MAX", - "location": { - "column": "9", - "line": "117", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST8_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3662@macro@INT_LEAST8_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST8_MIN", - "location": { - "column": "9", - "line": "118", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST8_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3712@macro@UINT_LEAST8_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_LEAST8_MAX", - "location": { - "column": "9", - "line": "119", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_LEAST8_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3764@macro@INT_LEAST16_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST16_MAX", - "location": { - "column": "9", - "line": "121", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST16_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3815@macro@INT_LEAST16_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST16_MIN", - "location": { - "column": "9", - "line": "122", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST16_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3866@macro@UINT_LEAST16_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_LEAST16_MAX", - "location": { - "column": "9", - "line": "123", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_LEAST16_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3919@macro@INT_LEAST32_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST32_MAX", - "location": { - "column": "9", - "line": "125", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST32_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@3970@macro@INT_LEAST32_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST32_MIN", - "location": { - "column": "9", - "line": "126", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST32_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4021@macro@UINT_LEAST32_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_LEAST32_MAX", - "location": { - "column": "9", - "line": "127", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_LEAST32_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4107@macro@INT_LEAST64_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST64_MAX", - "location": { - "column": "11", - "line": "130", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST64_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4158@macro@INT_LEAST64_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_LEAST64_MIN", - "location": { - "column": "11", - "line": "131", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_LEAST64_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4251@macro@UINT_LEAST64_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_LEAST64_MAX", - "location": { - "column": "11", - "line": "135", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_LEAST64_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4310@macro@INT_FAST8_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST8_MAX", - "location": { - "column": "9", - "line": "138", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST8_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4359@macro@INT_FAST8_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST8_MIN", - "location": { - "column": "9", - "line": "139", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST8_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4408@macro@UINT_FAST8_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_FAST8_MAX", - "location": { - "column": "9", - "line": "140", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_FAST8_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4459@macro@INT_FAST16_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST16_MAX", - "location": { - "column": "9", - "line": "142", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST16_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4509@macro@INT_FAST16_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST16_MIN", - "location": { - "column": "9", - "line": "143", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST16_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4559@macro@UINT_FAST16_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_FAST16_MAX", - "location": { - "column": "9", - "line": "144", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_FAST16_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4611@macro@INT_FAST32_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST32_MAX", - "location": { - "column": "9", - "line": "146", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST32_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4661@macro@INT_FAST32_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST32_MIN", - "location": { - "column": "9", - "line": "147", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST32_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4711@macro@UINT_FAST32_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_FAST32_MAX", - "location": { - "column": "9", - "line": "148", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_FAST32_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4795@macro@INT_FAST64_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST64_MAX", - "location": { - "column": "11", - "line": "151", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST64_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4845@macro@INT_FAST64_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_FAST64_MIN", - "location": { - "column": "11", - "line": "152", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT_FAST64_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4936@macro@UINT_FAST64_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT_FAST64_MAX", - "location": { - "column": "11", - "line": "156", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT_FAST64_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@4994@macro@INTMAX_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INTMAX_MAX", - "location": { - "column": "9", - "line": "159", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INTMAX_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5040@macro@INTMAX_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INTMAX_MIN", - "location": { - "column": "9", - "line": "160", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INTMAX_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5086@macro@UINTMAX_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINTMAX_MAX", - "location": { - "column": "9", - "line": "161", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINTMAX_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5134@macro@SIZE_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "SIZE_MAX", - "location": { - "column": "9", - "line": "163", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "SIZE_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5179@macro@PTRDIFF_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "PTRDIFF_MAX", - "location": { - "column": "9", - "line": "165", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "PTRDIFF_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5225@macro@PTRDIFF_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "PTRDIFF_MIN", - "location": { - "column": "9", - "line": "166", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "PTRDIFF_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5273@macro@INTPTR_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "INTPTR_MAX", - "location": { - "column": "9", - "line": "168", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INTPTR_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5319@macro@INTPTR_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "INTPTR_MIN", - "location": { - "column": "9", - "line": "169", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INTPTR_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5365@macro@UINTPTR_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "UINTPTR_MAX", - "location": { - "column": "9", - "line": "170", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINTPTR_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5413@macro@WCHAR_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "WCHAR_MIN", - "location": { - "column": "9", - "line": "172", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "WCHAR_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5448@macro@WCHAR_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "WCHAR_MAX", - "location": { - "column": "9", - "line": "173", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "WCHAR_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5485@macro@WINT_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "WINT_MIN", - "location": { - "column": "9", - "line": "175", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "WINT_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5520@macro@WINT_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "WINT_MAX", - "location": { - "column": "9", - "line": "176", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "WINT_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5557@macro@SIG_ATOMIC_MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "SIG_ATOMIC_MIN", - "location": { - "column": "9", - "line": "178", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "SIG_ATOMIC_MIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5605@macro@SIG_ATOMIC_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "SIG_ATOMIC_MAX", - "location": { - "column": "9", - "line": "179", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "SIG_ATOMIC_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5729@macro@INT8_C", - "What": "MacroDef", - "defdec": "Def", - "display": "INT8_C", - "location": { - "column": "11", - "line": "184", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT8_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5779@macro@UINT8_C", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT8_C", - "location": { - "column": "11", - "line": "185", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT8_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5865@macro@INT16_C", - "What": "MacroDef", - "defdec": "Def", - "display": "INT16_C", - "location": { - "column": "11", - "line": "189", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT16_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@5916@macro@UINT16_C", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT16_C", - "location": { - "column": "11", - "line": "190", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT16_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@6003@macro@INT32_C", - "What": "MacroDef", - "defdec": "Def", - "display": "INT32_C", - "location": { - "column": "11", - "line": "194", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT32_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@6054@macro@UINT32_C", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT32_C", - "location": { - "column": "11", - "line": "195", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT32_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@6147@macro@INT64_C", - "What": "MacroDef", - "defdec": "Def", - "display": "INT64_C", - "location": { - "column": "11", - "line": "199", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INT64_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@6240@macro@UINT64_C", - "What": "MacroDef", - "defdec": "Def", - "display": "UINT64_C", - "location": { - "column": "11", - "line": "203", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINT64_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@6300@macro@INTMAX_C", - "What": "MacroDef", - "defdec": "Def", - "display": "INTMAX_C", - "location": { - "column": "9", - "line": "206", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "INTMAX_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdint.h@6352@macro@UINTMAX_C", - "What": "MacroDef", - "defdec": "Def", - "display": "UINTMAX_C", - "location": { - "column": "9", - "line": "207", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdint.h" - }, - "name": "UINTMAX_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@1260@macro@__CORE_CM0PLUS_H_GENERIC", - "What": "MacroDef", - "defdec": "Def", - "display": "__CORE_CM0PLUS_H_GENERIC", - "location": { - "column": "9", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__CORE_CM0PLUS_H_GENERIC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@2245@macro@__CM0PLUS_CMSIS_VERSION_MAIN", - "What": "MacroDef", - "defdec": "Def", - "display": "__CM0PLUS_CMSIS_VERSION_MAIN", - "location": { - "column": "9", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__CM0PLUS_CMSIS_VERSION_MAIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@2377@macro@__CM0PLUS_CMSIS_VERSION_SUB", - "What": "MacroDef", - "defdec": "Def", - "display": "__CM0PLUS_CMSIS_VERSION_SUB", - "location": { - "column": "9", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__CM0PLUS_CMSIS_VERSION_SUB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@2508@macro@__CM0PLUS_CMSIS_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "__CM0PLUS_CMSIS_VERSION", - "location": { - "column": "9", - "line": "68", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__CM0PLUS_CMSIS_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@2717@macro@__CORTEX_M", - "What": "MacroDef", - "defdec": "Def", - "display": "__CORTEX_M", - "location": { - "column": "9", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__CORTEX_M", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@2929@macro@__FPU_USED", - "What": "MacroDef", - "defdec": "Def", - "display": "__FPU_USED", - "location": { - "column": "9", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__FPU_USED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@4442@macro@__CORE_CM0PLUS_H_DEPENDANT", - "What": "MacroDef", - "defdec": "Def", - "display": "__CORE_CM0PLUS_H_DEPENDANT", - "location": { - "column": "9", - "line": "127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__CORE_CM0PLUS_H_DEPENDANT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@5866@macro@__I", - "What": "MacroDef", - "defdec": "Def", - "display": "__I", - "location": { - "column": "13", - "line": "172", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__I", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@5956@macro@__O", - "What": "MacroDef", - "defdec": "Def", - "display": "__O", - "location": { - "column": "13", - "line": "174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__O", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@6039@macro@__IO", - "What": "MacroDef", - "defdec": "Def", - "display": "__IO", - "location": { - "column": "13", - "line": "175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__IO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@6188@macro@__IM", - "What": "MacroDef", - "defdec": "Def", - "display": "__IM", - "location": { - "column": "13", - "line": "178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__IM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@6286@macro@__OM", - "What": "MacroDef", - "defdec": "Def", - "display": "__OM", - "location": { - "column": "13", - "line": "179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__OM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@6385@macro@__IOM", - "What": "MacroDef", - "defdec": "Def", - "display": "__IOM", - "location": { - "column": "13", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__IOM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@UA@APSR_Type", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "210", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "members": [ - { - "ID": "c:@UA@APSR_Type@S@core_cm0plus.h@7278", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "212", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "members": [ - { - "ID": "c:@UA@APSR_Type@S@core_cm0plus.h@7278@FI@_reserved0", - "What": "FieldDecl", - "defdec": "Def", - "display": "_reserved0", - "location": { - "column": "14", - "line": "214", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "_reserved0", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_210_9::_anonymous_core_cm0plus_h_212_3" - }, - { - "ID": "c:@UA@APSR_Type@S@core_cm0plus.h@7278@FI@V", - "What": "FieldDecl", - "defdec": "Def", - "display": "V", - "location": { - "column": "14", - "line": "215", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "V", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_210_9::_anonymous_core_cm0plus_h_212_3" - }, - { - "ID": "c:@UA@APSR_Type@S@core_cm0plus.h@7278@FI@C", - "What": "FieldDecl", - "defdec": "Def", - "display": "C", - "location": { - "column": "14", - "line": "216", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "C", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_210_9::_anonymous_core_cm0plus_h_212_3" - }, - { - "ID": "c:@UA@APSR_Type@S@core_cm0plus.h@7278@FI@Z", - "What": "FieldDecl", - "defdec": "Def", - "display": "Z", - "location": { - "column": "14", - "line": "217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "Z", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_210_9::_anonymous_core_cm0plus_h_212_3" - }, - { - "ID": "c:@UA@APSR_Type@S@core_cm0plus.h@7278@FI@N", - "What": "FieldDecl", - "defdec": "Def", - "display": "N", - "location": { - "column": "14", - "line": "218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "N", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_210_9::_anonymous_core_cm0plus_h_212_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_210_9" - }, - { - "ID": "c:@UA@APSR_Type@FI@b", - "What": "FieldDecl", - "defdec": "Def", - "display": "b", - "location": { - "column": "5", - "line": "219", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "b", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_210_9" - }, - { - "ID": "c:@UA@APSR_Type@FI@w", - "What": "FieldDecl", - "defdec": "Def", - "display": "w", - "location": { - "column": "12", - "line": "220", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "w", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_210_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@APSR_Type", - "What": "Typedef", - "defdec": "Def", - "display": "union APSR_Type", - "location": { - "column": "3", - "line": "221", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "APSR_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@7943@macro@APSR_N_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_N_Pos", - "location": { - "column": "9", - "line": "224", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "APSR_N_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@8059@macro@APSR_N_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_N_Msk", - "location": { - "column": "9", - "line": "225", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "APSR_N_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@8173@macro@APSR_Z_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_Z_Pos", - "location": { - "column": "9", - "line": "227", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "APSR_Z_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@8289@macro@APSR_Z_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_Z_Msk", - "location": { - "column": "9", - "line": "228", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "APSR_Z_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@8403@macro@APSR_C_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_C_Pos", - "location": { - "column": "9", - "line": "230", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "APSR_C_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@8519@macro@APSR_C_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_C_Msk", - "location": { - "column": "9", - "line": "231", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "APSR_C_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@8633@macro@APSR_V_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_V_Pos", - "location": { - "column": "9", - "line": "233", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "APSR_V_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@8749@macro@APSR_V_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "APSR_V_Msk", - "location": { - "column": "9", - "line": "234", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "APSR_V_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@UA@IPSR_Type", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "240", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "members": [ - { - "ID": "c:@UA@IPSR_Type@S@core_cm0plus.h@8965", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "242", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "members": [ - { - "ID": "c:@UA@IPSR_Type@S@core_cm0plus.h@8965@FI@ISR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ISR", - "location": { - "column": "14", - "line": "244", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "ISR", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_240_9::_anonymous_core_cm0plus_h_242_3" - }, - { - "ID": "c:@UA@IPSR_Type@S@core_cm0plus.h@8965@FI@_reserved0", - "What": "FieldDecl", - "defdec": "Def", - "display": "_reserved0", - "location": { - "column": "14", - "line": "245", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "_reserved0", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_240_9::_anonymous_core_cm0plus_h_242_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_240_9" - }, - { - "ID": "c:@UA@IPSR_Type@FI@b", - "What": "FieldDecl", - "defdec": "Def", - "display": "b", - "location": { - "column": "5", - "line": "246", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "b", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_240_9" - }, - { - "ID": "c:@UA@IPSR_Type@FI@w", - "What": "FieldDecl", - "defdec": "Def", - "display": "w", - "location": { - "column": "12", - "line": "247", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "w", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_240_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@IPSR_Type", - "What": "Typedef", - "defdec": "Def", - "display": "union IPSR_Type", - "location": { - "column": "3", - "line": "248", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "IPSR_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@9349@macro@IPSR_ISR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "IPSR_ISR_Pos", - "location": { - "column": "9", - "line": "251", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "IPSR_ISR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@9467@macro@IPSR_ISR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "IPSR_ISR_Msk", - "location": { - "column": "9", - "line": "252", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "IPSR_ISR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@UA@xPSR_Type", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "258", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "members": [ - { - "ID": "c:@UA@xPSR_Type@S@core_cm0plus.h@9692", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "260", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "members": [ - { - "ID": "c:@UA@xPSR_Type@S@core_cm0plus.h@9692@FI@ISR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ISR", - "location": { - "column": "14", - "line": "262", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "ISR", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_258_9::_anonymous_core_cm0plus_h_260_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm0plus.h@9692@FI@_reserved0", - "What": "FieldDecl", - "defdec": "Def", - "display": "_reserved0", - "location": { - "column": "14", - "line": "263", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "_reserved0", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_258_9::_anonymous_core_cm0plus_h_260_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm0plus.h@9692@FI@T", - "What": "FieldDecl", - "defdec": "Def", - "display": "T", - "location": { - "column": "14", - "line": "264", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "T", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_258_9::_anonymous_core_cm0plus_h_260_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm0plus.h@9692@FI@_reserved1", - "What": "FieldDecl", - "defdec": "Def", - "display": "_reserved1", - "location": { - "column": "14", - "line": "265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "_reserved1", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_258_9::_anonymous_core_cm0plus_h_260_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm0plus.h@9692@FI@V", - "What": "FieldDecl", - "defdec": "Def", - "display": "V", - "location": { - "column": "14", - "line": "266", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "V", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_258_9::_anonymous_core_cm0plus_h_260_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm0plus.h@9692@FI@C", - "What": "FieldDecl", - "defdec": "Def", - "display": "C", - "location": { - "column": "14", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "C", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_258_9::_anonymous_core_cm0plus_h_260_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm0plus.h@9692@FI@Z", - "What": "FieldDecl", - "defdec": "Def", - "display": "Z", - "location": { - "column": "14", - "line": "268", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "Z", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_258_9::_anonymous_core_cm0plus_h_260_3" - }, - { - "ID": "c:@UA@xPSR_Type@S@core_cm0plus.h@9692@FI@N", - "What": "FieldDecl", - "defdec": "Def", - "display": "N", - "location": { - "column": "14", - "line": "269", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "N", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_258_9::_anonymous_core_cm0plus_h_260_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_258_9" - }, - { - "ID": "c:@UA@xPSR_Type@FI@b", - "What": "FieldDecl", - "defdec": "Def", - "display": "b", - "location": { - "column": "5", - "line": "270", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "b", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_258_9" - }, - { - "ID": "c:@UA@xPSR_Type@FI@w", - "What": "FieldDecl", - "defdec": "Def", - "display": "w", - "location": { - "column": "12", - "line": "271", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "w", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_258_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@xPSR_Type", - "What": "Typedef", - "defdec": "Def", - "display": "union xPSR_Type", - "location": { - "column": "3", - "line": "272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "xPSR_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@10598@macro@xPSR_N_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_N_Pos", - "location": { - "column": "9", - "line": "275", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "xPSR_N_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@10714@macro@xPSR_N_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_N_Msk", - "location": { - "column": "9", - "line": "276", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "xPSR_N_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@10828@macro@xPSR_Z_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_Z_Pos", - "location": { - "column": "9", - "line": "278", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "xPSR_Z_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@10944@macro@xPSR_Z_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_Z_Msk", - "location": { - "column": "9", - "line": "279", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "xPSR_Z_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@11058@macro@xPSR_C_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_C_Pos", - "location": { - "column": "9", - "line": "281", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "xPSR_C_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@11174@macro@xPSR_C_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_C_Msk", - "location": { - "column": "9", - "line": "282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "xPSR_C_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@11288@macro@xPSR_V_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_V_Pos", - "location": { - "column": "9", - "line": "284", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "xPSR_V_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@11404@macro@xPSR_V_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_V_Msk", - "location": { - "column": "9", - "line": "285", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "xPSR_V_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@11518@macro@xPSR_T_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_T_Pos", - "location": { - "column": "9", - "line": "287", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "xPSR_T_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@11634@macro@xPSR_T_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_T_Msk", - "location": { - "column": "9", - "line": "288", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "xPSR_T_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@11748@macro@xPSR_ISR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_ISR_Pos", - "location": { - "column": "9", - "line": "290", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "xPSR_ISR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@11866@macro@xPSR_ISR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "xPSR_ISR_Msk", - "location": { - "column": "9", - "line": "291", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "xPSR_ISR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@UA@CONTROL_Type", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "297", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "members": [ - { - "ID": "c:@UA@CONTROL_Type@S@core_cm0plus.h@12071", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "3", - "line": "299", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "members": [ - { - "ID": "c:@UA@CONTROL_Type@S@core_cm0plus.h@12071@FI@nPRIV", - "What": "FieldDecl", - "defdec": "Def", - "display": "nPRIV", - "location": { - "column": "14", - "line": "301", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "nPRIV", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_297_9::_anonymous_core_cm0plus_h_299_3" - }, - { - "ID": "c:@UA@CONTROL_Type@S@core_cm0plus.h@12071@FI@SPSEL", - "What": "FieldDecl", - "defdec": "Def", - "display": "SPSEL", - "location": { - "column": "14", - "line": "302", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SPSEL", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_297_9::_anonymous_core_cm0plus_h_299_3" - }, - { - "ID": "c:@UA@CONTROL_Type@S@core_cm0plus.h@12071@FI@_reserved1", - "What": "FieldDecl", - "defdec": "Def", - "display": "_reserved1", - "location": { - "column": "14", - "line": "303", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "_reserved1", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_297_9::_anonymous_core_cm0plus_h_299_3" - } - ], - "name": "", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_297_9" - }, - { - "ID": "c:@UA@CONTROL_Type@FI@b", - "What": "FieldDecl", - "defdec": "Def", - "display": "b", - "location": { - "column": "5", - "line": "304", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "b", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_297_9" - }, - { - "ID": "c:@UA@CONTROL_Type@FI@w", - "What": "FieldDecl", - "defdec": "Def", - "display": "w", - "location": { - "column": "12", - "line": "305", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "w", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_297_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@CONTROL_Type", - "What": "Typedef", - "defdec": "Def", - "display": "union CONTROL_Type", - "location": { - "column": "3", - "line": "306", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "CONTROL_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@12559@macro@CONTROL_SPSEL_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CONTROL_SPSEL_Pos", - "location": { - "column": "9", - "line": "309", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "CONTROL_SPSEL_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@12682@macro@CONTROL_SPSEL_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CONTROL_SPSEL_Msk", - "location": { - "column": "9", - "line": "310", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "CONTROL_SPSEL_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@12803@macro@CONTROL_nPRIV_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "CONTROL_nPRIV_Pos", - "location": { - "column": "9", - "line": "312", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "CONTROL_nPRIV_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@12926@macro@CONTROL_nPRIV_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "CONTROL_nPRIV_Msk", - "location": { - "column": "9", - "line": "313", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "CONTROL_nPRIV_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@NVIC_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "328", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "members": [ - { - "ID": "c:@SA@NVIC_Type@FI@ISER", - "What": "FieldDecl", - "defdec": "Def", - "display": "ISER", - "location": { - "column": "18", - "line": "330", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "ISER", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_328_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@RESERVED0", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED0", - "location": { - "column": "18", - "line": "331", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "RESERVED0", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_328_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@ICER", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICER", - "location": { - "column": "18", - "line": "332", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "ICER", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_328_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@RSERVED1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RSERVED1", - "location": { - "column": "18", - "line": "333", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "RSERVED1", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_328_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@ISPR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ISPR", - "location": { - "column": "18", - "line": "334", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "ISPR", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_328_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@RESERVED2", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED2", - "location": { - "column": "18", - "line": "335", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "RESERVED2", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_328_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@ICPR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICPR", - "location": { - "column": "18", - "line": "336", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "ICPR", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_328_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@RESERVED3", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED3", - "location": { - "column": "18", - "line": "337", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "RESERVED3", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_328_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@RESERVED4", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED4", - "location": { - "column": "18", - "line": "338", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "RESERVED4", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_328_9" - }, - { - "ID": "c:@SA@NVIC_Type@FI@IP", - "What": "FieldDecl", - "defdec": "Def", - "display": "IP", - "location": { - "column": "18", - "line": "339", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "IP", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_328_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@NVIC_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct NVIC_Type", - "location": { - "column": "4", - "line": "340", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@SCB_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "355", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "members": [ - { - "ID": "c:@SA@SCB_Type@FI@CPUID", - "What": "FieldDecl", - "defdec": "Def", - "display": "CPUID", - "location": { - "column": "18", - "line": "357", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "CPUID", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_355_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@ICSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "ICSR", - "location": { - "column": "18", - "line": "358", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "ICSR", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_355_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@VTOR", - "What": "FieldDecl", - "defdec": "Def", - "display": "VTOR", - "location": { - "column": "18", - "line": "360", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "VTOR", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_355_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@AIRCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "AIRCR", - "location": { - "column": "18", - "line": "364", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "AIRCR", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_355_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@SCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "SCR", - "location": { - "column": "18", - "line": "365", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCR", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_355_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@CCR", - "What": "FieldDecl", - "defdec": "Def", - "display": "CCR", - "location": { - "column": "18", - "line": "366", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "CCR", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_355_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@RESERVED1", - "What": "FieldDecl", - "defdec": "Def", - "display": "RESERVED1", - "location": { - "column": "18", - "line": "367", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "RESERVED1", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_355_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@SHP", - "What": "FieldDecl", - "defdec": "Def", - "display": "SHP", - "location": { - "column": "18", - "line": "368", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SHP", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_355_9" - }, - { - "ID": "c:@SA@SCB_Type@FI@SHCSR", - "What": "FieldDecl", - "defdec": "Def", - "display": "SHCSR", - "location": { - "column": "18", - "line": "369", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SHCSR", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_355_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@SCB_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct SCB_Type", - "location": { - "column": "3", - "line": "370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@15414@macro@SCB_CPUID_IMPLEMENTER_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_IMPLEMENTER_Pos", - "location": { - "column": "9", - "line": "373", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CPUID_IMPLEMENTER_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@15545@macro@SCB_CPUID_IMPLEMENTER_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_IMPLEMENTER_Msk", - "location": { - "column": "9", - "line": "374", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CPUID_IMPLEMENTER_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@15674@macro@SCB_CPUID_VARIANT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_VARIANT_Pos", - "location": { - "column": "9", - "line": "376", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CPUID_VARIANT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@15801@macro@SCB_CPUID_VARIANT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_VARIANT_Msk", - "location": { - "column": "9", - "line": "377", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CPUID_VARIANT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@15926@macro@SCB_CPUID_ARCHITECTURE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_ARCHITECTURE_Pos", - "location": { - "column": "9", - "line": "379", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CPUID_ARCHITECTURE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@16058@macro@SCB_CPUID_ARCHITECTURE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_ARCHITECTURE_Msk", - "location": { - "column": "9", - "line": "380", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CPUID_ARCHITECTURE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@16188@macro@SCB_CPUID_PARTNO_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_PARTNO_Pos", - "location": { - "column": "9", - "line": "382", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CPUID_PARTNO_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@16314@macro@SCB_CPUID_PARTNO_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_PARTNO_Msk", - "location": { - "column": "9", - "line": "383", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CPUID_PARTNO_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@16438@macro@SCB_CPUID_REVISION_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_REVISION_Pos", - "location": { - "column": "9", - "line": "385", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CPUID_REVISION_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@16566@macro@SCB_CPUID_REVISION_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CPUID_REVISION_Msk", - "location": { - "column": "9", - "line": "386", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CPUID_REVISION_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@16748@macro@SCB_ICSR_NMIPENDSET_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_NMIPENDSET_Pos", - "location": { - "column": "9", - "line": "389", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_NMIPENDSET_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@16877@macro@SCB_ICSR_NMIPENDSET_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_NMIPENDSET_Msk", - "location": { - "column": "9", - "line": "390", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_NMIPENDSET_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@17004@macro@SCB_ICSR_PENDSVSET_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSVSET_Pos", - "location": { - "column": "9", - "line": "392", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_PENDSVSET_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@17132@macro@SCB_ICSR_PENDSVSET_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSVSET_Msk", - "location": { - "column": "9", - "line": "393", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_PENDSVSET_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@17258@macro@SCB_ICSR_PENDSVCLR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSVCLR_Pos", - "location": { - "column": "9", - "line": "395", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_PENDSVCLR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@17386@macro@SCB_ICSR_PENDSVCLR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSVCLR_Msk", - "location": { - "column": "9", - "line": "396", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_PENDSVCLR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@17512@macro@SCB_ICSR_PENDSTSET_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSTSET_Pos", - "location": { - "column": "9", - "line": "398", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_PENDSTSET_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@17640@macro@SCB_ICSR_PENDSTSET_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSTSET_Msk", - "location": { - "column": "9", - "line": "399", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_PENDSTSET_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@17766@macro@SCB_ICSR_PENDSTCLR_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSTCLR_Pos", - "location": { - "column": "9", - "line": "401", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_PENDSTCLR_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@17894@macro@SCB_ICSR_PENDSTCLR_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_PENDSTCLR_Msk", - "location": { - "column": "9", - "line": "402", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_PENDSTCLR_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@18020@macro@SCB_ICSR_ISRPREEMPT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_ISRPREEMPT_Pos", - "location": { - "column": "9", - "line": "404", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_ISRPREEMPT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@18149@macro@SCB_ICSR_ISRPREEMPT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_ISRPREEMPT_Msk", - "location": { - "column": "9", - "line": "405", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_ISRPREEMPT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@18276@macro@SCB_ICSR_ISRPENDING_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_ISRPENDING_Pos", - "location": { - "column": "9", - "line": "407", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_ISRPENDING_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@18405@macro@SCB_ICSR_ISRPENDING_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_ISRPENDING_Msk", - "location": { - "column": "9", - "line": "408", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_ISRPENDING_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@18532@macro@SCB_ICSR_VECTPENDING_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_VECTPENDING_Pos", - "location": { - "column": "9", - "line": "410", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_VECTPENDING_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@18662@macro@SCB_ICSR_VECTPENDING_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_VECTPENDING_Msk", - "location": { - "column": "9", - "line": "411", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_VECTPENDING_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@18790@macro@SCB_ICSR_VECTACTIVE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_VECTACTIVE_Pos", - "location": { - "column": "9", - "line": "413", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_VECTACTIVE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@18919@macro@SCB_ICSR_VECTACTIVE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_ICSR_VECTACTIVE_Msk", - "location": { - "column": "9", - "line": "414", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_ICSR_VECTACTIVE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@19158@macro@SCB_VTOR_TBLOFF_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_VTOR_TBLOFF_Pos", - "location": { - "column": "9", - "line": "418", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_VTOR_TBLOFF_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@19283@macro@SCB_VTOR_TBLOFF_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_VTOR_TBLOFF_Msk", - "location": { - "column": "9", - "line": "419", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_VTOR_TBLOFF_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@19486@macro@SCB_AIRCR_VECTKEY_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTKEY_Pos", - "location": { - "column": "9", - "line": "423", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_AIRCR_VECTKEY_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@19613@macro@SCB_AIRCR_VECTKEY_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTKEY_Msk", - "location": { - "column": "9", - "line": "424", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_AIRCR_VECTKEY_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@19738@macro@SCB_AIRCR_VECTKEYSTAT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTKEYSTAT_Pos", - "location": { - "column": "9", - "line": "426", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_AIRCR_VECTKEYSTAT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@19869@macro@SCB_AIRCR_VECTKEYSTAT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTKEYSTAT_Msk", - "location": { - "column": "9", - "line": "427", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_AIRCR_VECTKEYSTAT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@19998@macro@SCB_AIRCR_ENDIANESS_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_ENDIANESS_Pos", - "location": { - "column": "9", - "line": "429", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_AIRCR_ENDIANESS_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@20127@macro@SCB_AIRCR_ENDIANESS_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_ENDIANESS_Msk", - "location": { - "column": "9", - "line": "430", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_AIRCR_ENDIANESS_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@20254@macro@SCB_AIRCR_SYSRESETREQ_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_SYSRESETREQ_Pos", - "location": { - "column": "9", - "line": "432", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_AIRCR_SYSRESETREQ_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@20385@macro@SCB_AIRCR_SYSRESETREQ_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_SYSRESETREQ_Msk", - "location": { - "column": "9", - "line": "433", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_AIRCR_SYSRESETREQ_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@20514@macro@SCB_AIRCR_VECTCLRACTIVE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTCLRACTIVE_Pos", - "location": { - "column": "9", - "line": "435", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_AIRCR_VECTCLRACTIVE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@20647@macro@SCB_AIRCR_VECTCLRACTIVE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_AIRCR_VECTCLRACTIVE_Msk", - "location": { - "column": "9", - "line": "436", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_AIRCR_VECTCLRACTIVE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@20825@macro@SCB_SCR_SEVONPEND_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SCR_SEVONPEND_Pos", - "location": { - "column": "9", - "line": "439", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_SCR_SEVONPEND_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@20952@macro@SCB_SCR_SEVONPEND_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SCR_SEVONPEND_Msk", - "location": { - "column": "9", - "line": "440", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_SCR_SEVONPEND_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@21077@macro@SCB_SCR_SLEEPDEEP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SCR_SLEEPDEEP_Pos", - "location": { - "column": "9", - "line": "442", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_SCR_SLEEPDEEP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@21204@macro@SCB_SCR_SLEEPDEEP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SCR_SLEEPDEEP_Msk", - "location": { - "column": "9", - "line": "443", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_SCR_SLEEPDEEP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@21329@macro@SCB_SCR_SLEEPONEXIT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SCR_SLEEPONEXIT_Pos", - "location": { - "column": "9", - "line": "445", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_SCR_SLEEPONEXIT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@21458@macro@SCB_SCR_SLEEPONEXIT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SCR_SLEEPONEXIT_Msk", - "location": { - "column": "9", - "line": "446", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_SCR_SLEEPONEXIT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@21639@macro@SCB_CCR_STKALIGN_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_STKALIGN_Pos", - "location": { - "column": "9", - "line": "449", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CCR_STKALIGN_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@21765@macro@SCB_CCR_STKALIGN_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_STKALIGN_Msk", - "location": { - "column": "9", - "line": "450", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CCR_STKALIGN_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@21889@macro@SCB_CCR_UNALIGN_TRP_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_UNALIGN_TRP_Pos", - "location": { - "column": "9", - "line": "452", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CCR_UNALIGN_TRP_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@22018@macro@SCB_CCR_UNALIGN_TRP_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_CCR_UNALIGN_TRP_Msk", - "location": { - "column": "9", - "line": "453", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_CCR_UNALIGN_TRP_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@22210@macro@SCB_SHCSR_SVCALLPENDED_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_SVCALLPENDED_Pos", - "location": { - "column": "9", - "line": "456", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_SHCSR_SVCALLPENDED_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@22342@macro@SCB_SHCSR_SVCALLPENDED_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_SHCSR_SVCALLPENDED_Msk", - "location": { - "column": "9", - "line": "457", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_SHCSR_SVCALLPENDED_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SA@SysTick_Type", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "472", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "members": [ - { - "ID": "c:@SA@SysTick_Type@FI@CTRL", - "What": "FieldDecl", - "defdec": "Def", - "display": "CTRL", - "location": { - "column": "18", - "line": "474", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "CTRL", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_472_9" - }, - { - "ID": "c:@SA@SysTick_Type@FI@LOAD", - "What": "FieldDecl", - "defdec": "Def", - "display": "LOAD", - "location": { - "column": "18", - "line": "475", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "LOAD", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_472_9" - }, - { - "ID": "c:@SA@SysTick_Type@FI@VAL", - "What": "FieldDecl", - "defdec": "Def", - "display": "VAL", - "location": { - "column": "18", - "line": "476", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "VAL", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_472_9" - }, - { - "ID": "c:@SA@SysTick_Type@FI@CALIB", - "What": "FieldDecl", - "defdec": "Def", - "display": "CALIB", - "location": { - "column": "18", - "line": "477", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "CALIB", - "origin": "user_include", - "scope": "_anonymous_core_cm0plus_h_472_9" - } - ], - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@SysTick_Type", - "What": "Typedef", - "defdec": "Def", - "display": "struct SysTick_Type", - "location": { - "column": "3", - "line": "478", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_Type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@23255@macro@SysTick_CTRL_COUNTFLAG_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_COUNTFLAG_Pos", - "location": { - "column": "9", - "line": "481", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CTRL_COUNTFLAG_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@23387@macro@SysTick_CTRL_COUNTFLAG_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_COUNTFLAG_Msk", - "location": { - "column": "9", - "line": "482", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CTRL_COUNTFLAG_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@23517@macro@SysTick_CTRL_CLKSOURCE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_CLKSOURCE_Pos", - "location": { - "column": "9", - "line": "484", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CTRL_CLKSOURCE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@23649@macro@SysTick_CTRL_CLKSOURCE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_CLKSOURCE_Msk", - "location": { - "column": "9", - "line": "485", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CTRL_CLKSOURCE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@23779@macro@SysTick_CTRL_TICKINT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_TICKINT_Pos", - "location": { - "column": "9", - "line": "487", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CTRL_TICKINT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@23909@macro@SysTick_CTRL_TICKINT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_TICKINT_Msk", - "location": { - "column": "9", - "line": "488", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CTRL_TICKINT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@24037@macro@SysTick_CTRL_ENABLE_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_ENABLE_Pos", - "location": { - "column": "9", - "line": "490", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CTRL_ENABLE_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@24166@macro@SysTick_CTRL_ENABLE_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CTRL_ENABLE_Msk", - "location": { - "column": "9", - "line": "491", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CTRL_ENABLE_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@24336@macro@SysTick_LOAD_RELOAD_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_LOAD_RELOAD_Pos", - "location": { - "column": "9", - "line": "494", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_LOAD_RELOAD_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@24465@macro@SysTick_LOAD_RELOAD_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_LOAD_RELOAD_Msk", - "location": { - "column": "9", - "line": "495", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_LOAD_RELOAD_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@24636@macro@SysTick_VAL_CURRENT_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_VAL_CURRENT_Pos", - "location": { - "column": "9", - "line": "498", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_VAL_CURRENT_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@24765@macro@SysTick_VAL_CURRENT_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_VAL_CURRENT_Msk", - "location": { - "column": "9", - "line": "499", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_VAL_CURRENT_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@24940@macro@SysTick_CALIB_NOREF_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CALIB_NOREF_Pos", - "location": { - "column": "9", - "line": "502", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CALIB_NOREF_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@25069@macro@SysTick_CALIB_NOREF_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CALIB_NOREF_Msk", - "location": { - "column": "9", - "line": "503", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CALIB_NOREF_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@25196@macro@SysTick_CALIB_SKEW_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CALIB_SKEW_Pos", - "location": { - "column": "9", - "line": "505", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CALIB_SKEW_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@25324@macro@SysTick_CALIB_SKEW_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CALIB_SKEW_Msk", - "location": { - "column": "9", - "line": "506", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CALIB_SKEW_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@25450@macro@SysTick_CALIB_TENMS_Pos", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CALIB_TENMS_Pos", - "location": { - "column": "9", - "line": "508", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CALIB_TENMS_Pos", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@25579@macro@SysTick_CALIB_TENMS_Msk", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_CALIB_TENMS_Msk", - "location": { - "column": "9", - "line": "509", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_CALIB_TENMS_Msk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@32860@macro@_VAL2FLD", - "What": "MacroDef", - "defdec": "Def", - "display": "_VAL2FLD", - "location": { - "column": "9", - "line": "627", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "_VAL2FLD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@33238@macro@_FLD2VAL", - "What": "MacroDef", - "defdec": "Def", - "display": "_FLD2VAL", - "location": { - "column": "9", - "line": "635", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "_FLD2VAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@33591@macro@SCS_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SCS_BASE", - "location": { - "column": "9", - "line": "648", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCS_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@33704@macro@SysTick_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick_BASE", - "location": { - "column": "9", - "line": "649", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@33804@macro@NVIC_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_BASE", - "location": { - "column": "9", - "line": "650", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@33901@macro@SCB_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB_BASE", - "location": { - "column": "9", - "line": "651", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@34016@macro@SCB", - "What": "MacroDef", - "defdec": "Def", - "display": "SCB", - "location": { - "column": "9", - "line": "653", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@34120@macro@SysTick", - "What": "MacroDef", - "defdec": "Def", - "display": "SysTick", - "location": { - "column": "9", - "line": "654", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@34228@macro@NVIC", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC", - "location": { - "column": "9", - "line": "655", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@35723@macro@NVIC_EnableIRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_EnableIRQ", - "location": { - "column": "11", - "line": "695", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_EnableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@35779@macro@NVIC_GetEnableIRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_GetEnableIRQ", - "location": { - "column": "11", - "line": "696", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_GetEnableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@35838@macro@NVIC_DisableIRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_DisableIRQ", - "location": { - "column": "11", - "line": "697", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_DisableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@35895@macro@NVIC_GetPendingIRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_GetPendingIRQ", - "location": { - "column": "11", - "line": "698", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_GetPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@35955@macro@NVIC_SetPendingIRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_SetPendingIRQ", - "location": { - "column": "11", - "line": "699", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_SetPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@36015@macro@NVIC_ClearPendingIRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_ClearPendingIRQ", - "location": { - "column": "11", - "line": "700", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_ClearPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@36177@macro@NVIC_SetPriority", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_SetPriority", - "location": { - "column": "11", - "line": "702", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_SetPriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@36235@macro@NVIC_GetPriority", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_GetPriority", - "location": { - "column": "11", - "line": "703", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_GetPriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@36293@macro@NVIC_SystemReset", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_SystemReset", - "location": { - "column": "11", - "line": "704", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_SystemReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@36592@macro@NVIC_SetVector", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_SetVector", - "location": { - "column": "11", - "line": "713", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_SetVector", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@36648@macro@NVIC_GetVector", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_GetVector", - "location": { - "column": "11", - "line": "714", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_GetVector", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@36742@macro@NVIC_USER_IRQ_OFFSET", - "What": "MacroDef", - "defdec": "Def", - "display": "NVIC_USER_IRQ_OFFSET", - "location": { - "column": "9", - "line": "717", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "NVIC_USER_IRQ_OFFSET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@36956@macro@_BIT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "_BIT_SHIFT", - "location": { - "column": "9", - "line": "722", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "_BIT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@37056@macro@_SHP_IDX", - "What": "MacroDef", - "defdec": "Def", - "display": "_SHP_IDX", - "location": { - "column": "9", - "line": "723", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "_SHP_IDX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@37156@macro@_IP_IDX", - "What": "MacroDef", - "defdec": "Def", - "display": "_IP_IDX", - "location": { - "column": "9", - "line": "724", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "_IP_IDX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@F@__NVIC_EnableIRQ", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_EnableIRQ(IRQn_Type)", - "location": { - "column": "22", - "line": "733", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__NVIC_EnableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@F@__NVIC_GetEnableIRQ", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __NVIC_GetEnableIRQ(IRQn_Type)", - "location": { - "column": "26", - "line": "750", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__NVIC_GetEnableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@F@__NVIC_DisableIRQ", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_DisableIRQ(IRQn_Type)", - "location": { - "column": "22", - "line": "769", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__NVIC_DisableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@F@__NVIC_GetPendingIRQ", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __NVIC_GetPendingIRQ(IRQn_Type)", - "location": { - "column": "26", - "line": "788", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__NVIC_GetPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@F@__NVIC_SetPendingIRQ", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_SetPendingIRQ(IRQn_Type)", - "location": { - "column": "22", - "line": "807", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__NVIC_SetPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@F@__NVIC_ClearPendingIRQ", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_ClearPendingIRQ(IRQn_Type)", - "location": { - "column": "22", - "line": "822", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__NVIC_ClearPendingIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@F@__NVIC_SetPriority", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_SetPriority(IRQn_Type, uint32_t)", - "location": { - "column": "22", - "line": "840", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__NVIC_SetPriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@F@__NVIC_GetPriority", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __NVIC_GetPriority(IRQn_Type)", - "location": { - "column": "26", - "line": "864", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__NVIC_GetPriority", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@F@__NVIC_SetVector", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_SetVector(IRQn_Type, uint32_t)", - "location": { - "column": "22", - "line": "888", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__NVIC_SetVector", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@42574@F@__NVIC_SetVector@vectors", - "What": "Variable", - "defdec": "Def", - "display": "vectors", - "location": { - "column": "13", - "line": "891", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "vectors", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@F@__NVIC_GetVector", - "What": "Function", - "defdec": "Def", - "display": "uint32_t __NVIC_GetVector(IRQn_Type)", - "location": { - "column": "26", - "line": "907", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__NVIC_GetVector", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@43229@F@__NVIC_GetVector@vectors", - "What": "Variable", - "defdec": "Def", - "display": "vectors", - "location": { - "column": "13", - "line": "910", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "vectors", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@F@__NVIC_SystemReset", - "What": "Function", - "defdec": "Def", - "display": "void __NVIC_SystemReset(void)", - "location": { - "column": "22", - "line": "923", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "__NVIC_SystemReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@F@SCB_GetFPUType", - "What": "Function", - "defdec": "Def", - "display": "uint32_t SCB_GetFPUType(void)", - "location": { - "column": "26", - "line": "963", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SCB_GetFPUType", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:core_cm0plus.h@F@SysTick_Config", - "What": "Function", - "defdec": "Def", - "display": "uint32_t SysTick_Config(uint32_t)", - "location": { - "column": "26", - "line": "994", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\core_cm0plus.h" - }, - "name": "SysTick_Config", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@1335@macro@INC_FREERTOS_H", - "What": "MacroDef", - "defdec": "Def", - "display": "INC_FREERTOS_H", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "INC_FREERTOS_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@2609@macro@configUSE_NEWLIB_REENTRANT", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_NEWLIB_REENTRANT", - "location": { - "column": "10", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configUSE_NEWLIB_REENTRANT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@4510@macro@configUSE_CO_ROUTINES", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_CO_ROUTINES", - "location": { - "column": "10", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configUSE_CO_ROUTINES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@5050@macro@INCLUDE_xTaskGetIdleTaskHandle", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_xTaskGetIdleTaskHandle", - "location": { - "column": "10", - "line": "136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "INCLUDE_xTaskGetIdleTaskHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@5136@macro@INCLUDE_xTaskAbortDelay", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_xTaskAbortDelay", - "location": { - "column": "10", - "line": "140", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "INCLUDE_xTaskAbortDelay", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@5220@macro@INCLUDE_xQueueGetMutexHolder", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_xQueueGetMutexHolder", - "location": { - "column": "10", - "line": "144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "INCLUDE_xQueueGetMutexHolder", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@5313@macro@INCLUDE_xSemaphoreGetMutexHolder", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_xSemaphoreGetMutexHolder", - "location": { - "column": "10", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "INCLUDE_xSemaphoreGetMutexHolder", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@5427@macro@INCLUDE_xTaskGetHandle", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_xTaskGetHandle", - "location": { - "column": "10", - "line": "152", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "INCLUDE_xTaskGetHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@5517@macro@INCLUDE_uxTaskGetStackHighWaterMark", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_uxTaskGetStackHighWaterMark", - "location": { - "column": "10", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "INCLUDE_uxTaskGetStackHighWaterMark", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@5621@macro@INCLUDE_uxTaskGetStackHighWaterMark2", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_uxTaskGetStackHighWaterMark2", - "location": { - "column": "10", - "line": "160", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "INCLUDE_uxTaskGetStackHighWaterMark2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@5791@macro@INCLUDE_xTaskResumeFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_xTaskResumeFromISR", - "location": { - "column": "10", - "line": "168", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "INCLUDE_xTaskResumeFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@5880@macro@INCLUDE_xTimerPendFunctionCall", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_xTimerPendFunctionCall", - "location": { - "column": "10", - "line": "172", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "INCLUDE_xTimerPendFunctionCall", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@5973@macro@INCLUDE_xTaskGetSchedulerState", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_xTaskGetSchedulerState", - "location": { - "column": "10", - "line": "176", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "INCLUDE_xTaskGetSchedulerState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@6069@macro@INCLUDE_xTaskGetCurrentTaskHandle", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_xTaskGetCurrentTaskHandle", - "location": { - "column": "10", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "INCLUDE_xTaskGetCurrentTaskHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@6340@macro@configUSE_DAEMON_TASK_STARTUP_HOOK", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_DAEMON_TASK_STARTUP_HOOK", - "location": { - "column": "10", - "line": "190", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configUSE_DAEMON_TASK_STARTUP_HOOK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@6539@macro@configNUM_THREAD_LOCAL_STORAGE_POINTERS", - "What": "MacroDef", - "defdec": "Def", - "display": "configNUM_THREAD_LOCAL_STORAGE_POINTERS", - "location": { - "column": "10", - "line": "198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configNUM_THREAD_LOCAL_STORAGE_POINTERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@6946@macro@configUSE_ALTERNATIVE_API", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_ALTERNATIVE_API", - "location": { - "column": "10", - "line": "218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configUSE_ALTERNATIVE_API", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@7031@macro@portCRITICAL_NESTING_IN_TCB", - "What": "MacroDef", - "defdec": "Def", - "display": "portCRITICAL_NESTING_IN_TCB", - "location": { - "column": "10", - "line": "222", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portCRITICAL_NESTING_IN_TCB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@7457@macro@configASSERT_DEFINED", - "What": "MacroDef", - "defdec": "Def", - "display": "configASSERT_DEFINED", - "location": { - "column": "10", - "line": "241", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configASSERT_DEFINED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@7848@macro@configPRECONDITION", - "What": "MacroDef", - "defdec": "Def", - "display": "configPRECONDITION", - "location": { - "column": "10", - "line": "250", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configPRECONDITION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@7898@macro@configPRECONDITION_DEFINED", - "What": "MacroDef", - "defdec": "Def", - "display": "configPRECONDITION_DEFINED", - "location": { - "column": "10", - "line": "251", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configPRECONDITION_DEFINED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@8021@macro@portMEMORY_BARRIER", - "What": "MacroDef", - "defdec": "Def", - "display": "portMEMORY_BARRIER", - "location": { - "column": "10", - "line": "257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portMEMORY_BARRIER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@8983@macro@portCLEAN_UP_TCB", - "What": "MacroDef", - "defdec": "Def", - "display": "portCLEAN_UP_TCB", - "location": { - "column": "10", - "line": "286", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portCLEAN_UP_TCB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@9078@macro@portPRE_TASK_DELETE_HOOK", - "What": "MacroDef", - "defdec": "Def", - "display": "portPRE_TASK_DELETE_HOOK", - "location": { - "column": "10", - "line": "290", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portPRE_TASK_DELETE_HOOK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@9180@macro@portSETUP_TCB", - "What": "MacroDef", - "defdec": "Def", - "display": "portSETUP_TCB", - "location": { - "column": "10", - "line": "294", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portSETUP_TCB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@9527@macro@portPOINTER_SIZE_TYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "portPOINTER_SIZE_TYPE", - "location": { - "column": "10", - "line": "308", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portPOINTER_SIZE_TYPE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@9754@macro@traceSTART", - "What": "MacroDef", - "defdec": "Def", - "display": "traceSTART", - "location": { - "column": "10", - "line": "315", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceSTART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@9897@macro@traceEND", - "What": "MacroDef", - "defdec": "Def", - "display": "traceEND", - "location": { - "column": "10", - "line": "321", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceEND", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@10093@macro@traceTASK_SWITCHED_IN", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_SWITCHED_IN", - "location": { - "column": "10", - "line": "327", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_SWITCHED_IN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@10258@macro@traceINCREASE_TICK_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "traceINCREASE_TICK_COUNT", - "location": { - "column": "10", - "line": "333", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceINCREASE_TICK_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@10401@macro@traceLOW_POWER_IDLE_BEGIN", - "What": "MacroDef", - "defdec": "Def", - "display": "traceLOW_POWER_IDLE_BEGIN", - "location": { - "column": "10", - "line": "338", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceLOW_POWER_IDLE_BEGIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@10552@macro@traceLOW_POWER_IDLE_END", - "What": "MacroDef", - "defdec": "Def", - "display": "traceLOW_POWER_IDLE_END", - "location": { - "column": "10", - "line": "343", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceLOW_POWER_IDLE_END", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@10775@macro@traceTASK_SWITCHED_OUT", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_SWITCHED_OUT", - "location": { - "column": "10", - "line": "349", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_SWITCHED_OUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@11174@macro@traceTASK_PRIORITY_INHERIT", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_PRIORITY_INHERIT", - "location": { - "column": "10", - "line": "358", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_PRIORITY_INHERIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@11597@macro@traceTASK_PRIORITY_DISINHERIT", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_PRIORITY_DISINHERIT", - "location": { - "column": "10", - "line": "366", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_PRIORITY_DISINHERIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@11974@macro@traceBLOCKING_ON_QUEUE_RECEIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceBLOCKING_ON_QUEUE_RECEIVE", - "location": { - "column": "10", - "line": "374", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceBLOCKING_ON_QUEUE_RECEIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@12318@macro@traceBLOCKING_ON_QUEUE_PEEK", - "What": "MacroDef", - "defdec": "Def", - "display": "traceBLOCKING_ON_QUEUE_PEEK", - "location": { - "column": "10", - "line": "382", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceBLOCKING_ON_QUEUE_PEEK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@12660@macro@traceBLOCKING_ON_QUEUE_SEND", - "What": "MacroDef", - "defdec": "Def", - "display": "traceBLOCKING_ON_QUEUE_SEND", - "location": { - "column": "10", - "line": "390", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceBLOCKING_ON_QUEUE_SEND", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@12853@macro@configRECORD_STACK_HIGH_ADDRESS", - "What": "MacroDef", - "defdec": "Def", - "display": "configRECORD_STACK_HIGH_ADDRESS", - "location": { - "column": "10", - "line": "398", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configRECORD_STACK_HIGH_ADDRESS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@12958@macro@configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H", - "What": "MacroDef", - "defdec": "Def", - "display": "configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H", - "location": { - "column": "10", - "line": "402", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@13136@macro@traceMOVED_TASK_TO_READY_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceMOVED_TASK_TO_READY_STATE", - "location": { - "column": "10", - "line": "408", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceMOVED_TASK_TO_READY_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@13241@macro@tracePOST_MOVED_TASK_TO_READY_STATE", - "What": "MacroDef", - "defdec": "Def", - "display": "tracePOST_MOVED_TASK_TO_READY_STATE", - "location": { - "column": "10", - "line": "412", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "tracePOST_MOVED_TASK_TO_READY_STATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@13333@macro@traceQUEUE_CREATE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_CREATE", - "location": { - "column": "10", - "line": "416", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_CREATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@13419@macro@traceQUEUE_CREATE_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_CREATE_FAILED", - "location": { - "column": "10", - "line": "420", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_CREATE_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@13506@macro@traceCREATE_MUTEX", - "What": "MacroDef", - "defdec": "Def", - "display": "traceCREATE_MUTEX", - "location": { - "column": "10", - "line": "424", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceCREATE_MUTEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@13592@macro@traceCREATE_MUTEX_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceCREATE_MUTEX_FAILED", - "location": { - "column": "10", - "line": "428", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceCREATE_MUTEX_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@13674@macro@traceGIVE_MUTEX_RECURSIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceGIVE_MUTEX_RECURSIVE", - "location": { - "column": "10", - "line": "432", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceGIVE_MUTEX_RECURSIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@13773@macro@traceGIVE_MUTEX_RECURSIVE_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceGIVE_MUTEX_RECURSIVE_FAILED", - "location": { - "column": "10", - "line": "436", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceGIVE_MUTEX_RECURSIVE_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@13872@macro@traceTAKE_MUTEX_RECURSIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTAKE_MUTEX_RECURSIVE", - "location": { - "column": "10", - "line": "440", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTAKE_MUTEX_RECURSIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@13971@macro@traceTAKE_MUTEX_RECURSIVE_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTAKE_MUTEX_RECURSIVE_FAILED", - "location": { - "column": "10", - "line": "444", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTAKE_MUTEX_RECURSIVE_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@14075@macro@traceCREATE_COUNTING_SEMAPHORE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceCREATE_COUNTING_SEMAPHORE", - "location": { - "column": "10", - "line": "448", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceCREATE_COUNTING_SEMAPHORE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@14175@macro@traceCREATE_COUNTING_SEMAPHORE_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceCREATE_COUNTING_SEMAPHORE_FAILED", - "location": { - "column": "10", - "line": "452", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceCREATE_COUNTING_SEMAPHORE_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@14260@macro@traceQUEUE_SEND", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_SEND", - "location": { - "column": "10", - "line": "456", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_SEND", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@14339@macro@traceQUEUE_SEND_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_SEND_FAILED", - "location": { - "column": "10", - "line": "460", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_SEND_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@14421@macro@traceQUEUE_RECEIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_RECEIVE", - "location": { - "column": "10", - "line": "464", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_RECEIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@14496@macro@traceQUEUE_PEEK", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_PEEK", - "location": { - "column": "10", - "line": "468", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_PEEK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@14575@macro@traceQUEUE_PEEK_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_PEEK_FAILED", - "location": { - "column": "10", - "line": "472", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_PEEK_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@14663@macro@traceQUEUE_PEEK_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_PEEK_FROM_ISR", - "location": { - "column": "10", - "line": "476", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_PEEK_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@14754@macro@traceQUEUE_RECEIVE_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_RECEIVE_FAILED", - "location": { - "column": "10", - "line": "480", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_RECEIVE_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@14845@macro@traceQUEUE_SEND_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_SEND_FROM_ISR", - "location": { - "column": "10", - "line": "484", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_SEND_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@14942@macro@traceQUEUE_SEND_FROM_ISR_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_SEND_FROM_ISR_FAILED", - "location": { - "column": "10", - "line": "488", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_SEND_FROM_ISR_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@15042@macro@traceQUEUE_RECEIVE_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_RECEIVE_FROM_ISR", - "location": { - "column": "10", - "line": "492", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_RECEIVE_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@15145@macro@traceQUEUE_RECEIVE_FROM_ISR_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_RECEIVE_FROM_ISR_FAILED", - "location": { - "column": "10", - "line": "496", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_RECEIVE_FROM_ISR_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@15252@macro@traceQUEUE_PEEK_FROM_ISR_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_PEEK_FROM_ISR_FAILED", - "location": { - "column": "10", - "line": "500", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_PEEK_FROM_ISR_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@15342@macro@traceQUEUE_DELETE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_DELETE", - "location": { - "column": "10", - "line": "504", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_DELETE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@15417@macro@traceTASK_CREATE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_CREATE", - "location": { - "column": "10", - "line": "508", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_CREATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@15499@macro@traceTASK_CREATE_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_CREATE_FAILED", - "location": { - "column": "10", - "line": "512", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_CREATE_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@15571@macro@traceTASK_DELETE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_DELETE", - "location": { - "column": "10", - "line": "516", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_DELETE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@15657@macro@traceTASK_DELAY_UNTIL", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_DELAY_UNTIL", - "location": { - "column": "10", - "line": "520", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_DELAY_UNTIL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@15729@macro@traceTASK_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_DELAY", - "location": { - "column": "10", - "line": "524", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_DELAY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@15799@macro@traceTASK_PRIORITY_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_PRIORITY_SET", - "location": { - "column": "10", - "line": "528", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_PRIORITY_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@15894@macro@traceTASK_SUSPEND", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_SUSPEND", - "location": { - "column": "10", - "line": "532", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_SUSPEND", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@15977@macro@traceTASK_RESUME", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_RESUME", - "location": { - "column": "10", - "line": "536", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_RESUME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@16067@macro@traceTASK_RESUME_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_RESUME_FROM_ISR", - "location": { - "column": "10", - "line": "540", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_RESUME_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@16165@macro@traceTASK_INCREMENT_TICK", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_INCREMENT_TICK", - "location": { - "column": "10", - "line": "544", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_INCREMENT_TICK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@16251@macro@traceTIMER_CREATE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTIMER_CREATE", - "location": { - "column": "10", - "line": "548", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTIMER_CREATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@16337@macro@traceTIMER_CREATE_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTIMER_CREATE_FAILED", - "location": { - "column": "10", - "line": "552", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTIMER_CREATE_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@16417@macro@traceTIMER_COMMAND_SEND", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTIMER_COMMAND_SEND", - "location": { - "column": "10", - "line": "556", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTIMER_COMMAND_SEND", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@16540@macro@traceTIMER_EXPIRED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTIMER_EXPIRED", - "location": { - "column": "10", - "line": "560", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTIMER_EXPIRED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@16627@macro@traceTIMER_COMMAND_RECEIVED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTIMER_COMMAND_RECEIVED", - "location": { - "column": "10", - "line": "564", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTIMER_COMMAND_RECEIVED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@16737@macro@traceMALLOC", - "What": "MacroDef", - "defdec": "Def", - "display": "traceMALLOC", - "location": { - "column": "13", - "line": "568", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceMALLOC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@16812@macro@traceFREE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceFREE", - "location": { - "column": "13", - "line": "572", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceFREE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@16896@macro@traceEVENT_GROUP_CREATE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceEVENT_GROUP_CREATE", - "location": { - "column": "10", - "line": "576", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceEVENT_GROUP_CREATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@16995@macro@traceEVENT_GROUP_CREATE_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceEVENT_GROUP_CREATE_FAILED", - "location": { - "column": "10", - "line": "580", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceEVENT_GROUP_CREATE_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@17085@macro@traceEVENT_GROUP_SYNC_BLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "traceEVENT_GROUP_SYNC_BLOCK", - "location": { - "column": "10", - "line": "584", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceEVENT_GROUP_SYNC_BLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@17213@macro@traceEVENT_GROUP_SYNC_END", - "What": "MacroDef", - "defdec": "Def", - "display": "traceEVENT_GROUP_SYNC_END", - "location": { - "column": "10", - "line": "588", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceEVENT_GROUP_SYNC_END", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@17390@macro@traceEVENT_GROUP_WAIT_BITS_BLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "traceEVENT_GROUP_WAIT_BITS_BLOCK", - "location": { - "column": "10", - "line": "592", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceEVENT_GROUP_WAIT_BITS_BLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@17515@macro@traceEVENT_GROUP_WAIT_BITS_END", - "What": "MacroDef", - "defdec": "Def", - "display": "traceEVENT_GROUP_WAIT_BITS_END", - "location": { - "column": "10", - "line": "596", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceEVENT_GROUP_WAIT_BITS_END", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@17679@macro@traceEVENT_GROUP_CLEAR_BITS", - "What": "MacroDef", - "defdec": "Def", - "display": "traceEVENT_GROUP_CLEAR_BITS", - "location": { - "column": "10", - "line": "600", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceEVENT_GROUP_CLEAR_BITS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@17803@macro@traceEVENT_GROUP_CLEAR_BITS_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "traceEVENT_GROUP_CLEAR_BITS_FROM_ISR", - "location": { - "column": "10", - "line": "604", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceEVENT_GROUP_CLEAR_BITS_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@17925@macro@traceEVENT_GROUP_SET_BITS", - "What": "MacroDef", - "defdec": "Def", - "display": "traceEVENT_GROUP_SET_BITS", - "location": { - "column": "10", - "line": "608", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceEVENT_GROUP_SET_BITS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@18043@macro@traceEVENT_GROUP_SET_BITS_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "traceEVENT_GROUP_SET_BITS_FROM_ISR", - "location": { - "column": "10", - "line": "612", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceEVENT_GROUP_SET_BITS_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@18159@macro@traceEVENT_GROUP_DELETE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceEVENT_GROUP_DELETE", - "location": { - "column": "10", - "line": "616", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceEVENT_GROUP_DELETE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@18247@macro@tracePEND_FUNC_CALL", - "What": "MacroDef", - "defdec": "Def", - "display": "tracePEND_FUNC_CALL", - "location": { - "column": "10", - "line": "620", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "tracePEND_FUNC_CALL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@18375@macro@tracePEND_FUNC_CALL_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "tracePEND_FUNC_CALL_FROM_ISR", - "location": { - "column": "10", - "line": "624", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "tracePEND_FUNC_CALL_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@18507@macro@traceQUEUE_REGISTRY_ADD", - "What": "MacroDef", - "defdec": "Def", - "display": "traceQUEUE_REGISTRY_ADD", - "location": { - "column": "10", - "line": "628", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceQUEUE_REGISTRY_ADD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@18609@macro@traceTASK_NOTIFY_TAKE_BLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_NOTIFY_TAKE_BLOCK", - "location": { - "column": "10", - "line": "632", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_NOTIFY_TAKE_BLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@18690@macro@traceTASK_NOTIFY_TAKE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_NOTIFY_TAKE", - "location": { - "column": "10", - "line": "636", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_NOTIFY_TAKE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@18771@macro@traceTASK_NOTIFY_WAIT_BLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_NOTIFY_WAIT_BLOCK", - "location": { - "column": "10", - "line": "640", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_NOTIFY_WAIT_BLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@18852@macro@traceTASK_NOTIFY_WAIT", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_NOTIFY_WAIT", - "location": { - "column": "10", - "line": "644", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_NOTIFY_WAIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@18922@macro@traceTASK_NOTIFY", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_NOTIFY", - "location": { - "column": "10", - "line": "648", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_NOTIFY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@18996@macro@traceTASK_NOTIFY_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_NOTIFY_FROM_ISR", - "location": { - "column": "10", - "line": "652", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_NOTIFY_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@19084@macro@traceTASK_NOTIFY_GIVE_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "traceTASK_NOTIFY_GIVE_FROM_ISR", - "location": { - "column": "10", - "line": "656", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceTASK_NOTIFY_GIVE_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@19179@macro@traceSTREAM_BUFFER_CREATE_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceSTREAM_BUFFER_CREATE_FAILED", - "location": { - "column": "10", - "line": "660", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceSTREAM_BUFFER_CREATE_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@19301@macro@traceSTREAM_BUFFER_CREATE_STATIC_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceSTREAM_BUFFER_CREATE_STATIC_FAILED", - "location": { - "column": "10", - "line": "664", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceSTREAM_BUFFER_CREATE_STATIC_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@19425@macro@traceSTREAM_BUFFER_CREATE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceSTREAM_BUFFER_CREATE", - "location": { - "column": "10", - "line": "668", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceSTREAM_BUFFER_CREATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@19542@macro@traceSTREAM_BUFFER_DELETE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceSTREAM_BUFFER_DELETE", - "location": { - "column": "10", - "line": "672", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceSTREAM_BUFFER_DELETE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@19639@macro@traceSTREAM_BUFFER_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "traceSTREAM_BUFFER_RESET", - "location": { - "column": "10", - "line": "676", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceSTREAM_BUFFER_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@19746@macro@traceBLOCKING_ON_STREAM_BUFFER_SEND", - "What": "MacroDef", - "defdec": "Def", - "display": "traceBLOCKING_ON_STREAM_BUFFER_SEND", - "location": { - "column": "10", - "line": "680", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceBLOCKING_ON_STREAM_BUFFER_SEND", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@19852@macro@traceSTREAM_BUFFER_SEND", - "What": "MacroDef", - "defdec": "Def", - "display": "traceSTREAM_BUFFER_SEND", - "location": { - "column": "10", - "line": "684", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceSTREAM_BUFFER_SEND", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@19965@macro@traceSTREAM_BUFFER_SEND_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceSTREAM_BUFFER_SEND_FAILED", - "location": { - "column": "10", - "line": "688", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceSTREAM_BUFFER_SEND_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@20075@macro@traceSTREAM_BUFFER_SEND_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "traceSTREAM_BUFFER_SEND_FROM_ISR", - "location": { - "column": "10", - "line": "692", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceSTREAM_BUFFER_SEND_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@20205@macro@traceBLOCKING_ON_STREAM_BUFFER_RECEIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceBLOCKING_ON_STREAM_BUFFER_RECEIVE", - "location": { - "column": "10", - "line": "696", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceBLOCKING_ON_STREAM_BUFFER_RECEIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@20317@macro@traceSTREAM_BUFFER_RECEIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "traceSTREAM_BUFFER_RECEIVE", - "location": { - "column": "10", - "line": "700", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceSTREAM_BUFFER_RECEIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@20441@macro@traceSTREAM_BUFFER_RECEIVE_FAILED", - "What": "MacroDef", - "defdec": "Def", - "display": "traceSTREAM_BUFFER_RECEIVE_FAILED", - "location": { - "column": "10", - "line": "704", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceSTREAM_BUFFER_RECEIVE_FAILED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@20557@macro@traceSTREAM_BUFFER_RECEIVE_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "traceSTREAM_BUFFER_RECEIVE_FROM_ISR", - "location": { - "column": "10", - "line": "708", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "traceSTREAM_BUFFER_RECEIVE_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@21689@macro@portCONFIGURE_TIMER_FOR_RUN_TIME_STATS", - "What": "MacroDef", - "defdec": "Def", - "display": "portCONFIGURE_TIMER_FOR_RUN_TIME_STATS", - "location": { - "column": "10", - "line": "730", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portCONFIGURE_TIMER_FOR_RUN_TIME_STATS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@21866@macro@portPRIVILEGE_BIT", - "What": "MacroDef", - "defdec": "Def", - "display": "portPRIVILEGE_BIT", - "location": { - "column": "10", - "line": "738", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portPRIVILEGE_BIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@21959@macro@portYIELD_WITHIN_API", - "What": "MacroDef", - "defdec": "Def", - "display": "portYIELD_WITHIN_API", - "location": { - "column": "10", - "line": "742", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portYIELD_WITHIN_API", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@22165@macro@configEXPECTED_IDLE_TIME_BEFORE_SLEEP", - "What": "MacroDef", - "defdec": "Def", - "display": "configEXPECTED_IDLE_TIME_BEFORE_SLEEP", - "location": { - "column": "10", - "line": "750", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configEXPECTED_IDLE_TIME_BEFORE_SLEEP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@22487@macro@configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING", - "What": "MacroDef", - "defdec": "Def", - "display": "configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING", - "location": { - "column": "10", - "line": "762", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@22594@macro@configPRE_SLEEP_PROCESSING", - "What": "MacroDef", - "defdec": "Def", - "display": "configPRE_SLEEP_PROCESSING", - "location": { - "column": "10", - "line": "766", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configPRE_SLEEP_PROCESSING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@22683@macro@configPOST_SLEEP_PROCESSING", - "What": "MacroDef", - "defdec": "Def", - "display": "configPOST_SLEEP_PROCESSING", - "location": { - "column": "10", - "line": "770", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configPOST_SLEEP_PROCESSING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@22766@macro@configUSE_QUEUE_SETS", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_QUEUE_SETS", - "location": { - "column": "10", - "line": "774", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configUSE_QUEUE_SETS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@22847@macro@portTASK_USES_FLOATING_POINT", - "What": "MacroDef", - "defdec": "Def", - "display": "portTASK_USES_FLOATING_POINT", - "location": { - "column": "10", - "line": "778", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portTASK_USES_FLOATING_POINT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@22935@macro@portALLOCATE_SECURE_CONTEXT", - "What": "MacroDef", - "defdec": "Def", - "display": "portALLOCATE_SECURE_CONTEXT", - "location": { - "column": "10", - "line": "782", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portALLOCATE_SECURE_CONTEXT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@23030@macro@portDONT_DISCARD", - "What": "MacroDef", - "defdec": "Def", - "display": "portDONT_DISCARD", - "location": { - "column": "10", - "line": "786", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portDONT_DISCARD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@23099@macro@configUSE_TIME_SLICING", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_TIME_SLICING", - "location": { - "column": "10", - "line": "790", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configUSE_TIME_SLICING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@23208@macro@configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS", - "What": "MacroDef", - "defdec": "Def", - "display": "configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS", - "location": { - "column": "10", - "line": "794", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@23331@macro@configUSE_STATS_FORMATTING_FUNCTIONS", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_STATS_FORMATTING_FUNCTIONS", - "location": { - "column": "10", - "line": "798", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configUSE_STATS_FORMATTING_FUNCTIONS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@23440@macro@portASSERT_IF_INTERRUPT_PRIORITY_INVALID", - "What": "MacroDef", - "defdec": "Def", - "display": "portASSERT_IF_INTERRUPT_PRIORITY_INVALID", - "location": { - "column": "10", - "line": "802", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portASSERT_IF_INTERRUPT_PRIORITY_INVALID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@23616@macro@mtCOVERAGE_TEST_MARKER", - "What": "MacroDef", - "defdec": "Def", - "display": "mtCOVERAGE_TEST_MARKER", - "location": { - "column": "10", - "line": "810", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "mtCOVERAGE_TEST_MARKER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@23692@macro@mtCOVERAGE_TEST_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "mtCOVERAGE_TEST_DELAY", - "location": { - "column": "10", - "line": "814", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "mtCOVERAGE_TEST_DELAY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@23766@macro@portASSERT_IF_IN_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "portASSERT_IF_IN_ISR", - "location": { - "column": "10", - "line": "818", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portASSERT_IF_IN_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@23858@macro@configUSE_PORT_OPTIMISED_TASK_SELECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_PORT_OPTIMISED_TASK_SELECTION", - "location": { - "column": "10", - "line": "822", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configUSE_PORT_OPTIMISED_TASK_SELECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@23962@macro@configAPPLICATION_ALLOCATED_HEAP", - "What": "MacroDef", - "defdec": "Def", - "display": "configAPPLICATION_ALLOCATED_HEAP", - "location": { - "column": "10", - "line": "826", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configAPPLICATION_ALLOCATED_HEAP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@24055@macro@configUSE_TASK_NOTIFICATIONS", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_TASK_NOTIFICATIONS", - "location": { - "column": "10", - "line": "830", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configUSE_TASK_NOTIFICATIONS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@24137@macro@configUSE_POSIX_ERRNO", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_POSIX_ERRNO", - "location": { - "column": "10", - "line": "834", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configUSE_POSIX_ERRNO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@24717@macro@configSTACK_DEPTH_TYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "configSTACK_DEPTH_TYPE", - "location": { - "column": "10", - "line": "854", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configSTACK_DEPTH_TYPE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@24981@macro@configMESSAGE_BUFFER_LENGTH_TYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "configMESSAGE_BUFFER_LENGTH_TYPE", - "location": { - "column": "10", - "line": "861", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configMESSAGE_BUFFER_LENGTH_TYPE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@25726@macro@configINITIAL_TICK_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "configINITIAL_TICK_COUNT", - "location": { - "column": "10", - "line": "880", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configINITIAL_TICK_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@26470@macro@portTICK_TYPE_ENTER_CRITICAL", - "What": "MacroDef", - "defdec": "Def", - "display": "portTICK_TYPE_ENTER_CRITICAL", - "location": { - "column": "10", - "line": "894", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portTICK_TYPE_ENTER_CRITICAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@26511@macro@portTICK_TYPE_EXIT_CRITICAL", - "What": "MacroDef", - "defdec": "Def", - "display": "portTICK_TYPE_EXIT_CRITICAL", - "location": { - "column": "10", - "line": "895", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portTICK_TYPE_EXIT_CRITICAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@26551@macro@portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR", - "location": { - "column": "10", - "line": "896", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@26607@macro@portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR", - "location": { - "column": "10", - "line": "897", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@26831@macro@configENABLE_BACKWARD_COMPATIBILITY", - "What": "MacroDef", - "defdec": "Def", - "display": "configENABLE_BACKWARD_COMPATIBILITY", - "location": { - "column": "10", - "line": "903", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configENABLE_BACKWARD_COMPATIBILITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@27397@macro@configPRINTF", - "What": "MacroDef", - "defdec": "Def", - "display": "configPRINTF", - "location": { - "column": "10", - "line": "917", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configPRINTF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@27573@macro@configMAX", - "What": "MacroDef", - "defdec": "Def", - "display": "configMAX", - "location": { - "column": "10", - "line": "923", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configMAX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@27787@macro@configMIN", - "What": "MacroDef", - "defdec": "Def", - "display": "configMIN", - "location": { - "column": "10", - "line": "929", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configMIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@27909@macro@eTaskStateGet", - "What": "MacroDef", - "defdec": "Def", - "display": "eTaskStateGet", - "location": { - "column": "10", - "line": "933", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "eTaskStateGet", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@27947@macro@portTickType", - "What": "MacroDef", - "defdec": "Def", - "display": "portTickType", - "location": { - "column": "10", - "line": "934", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portTickType", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@27981@macro@xTaskHandle", - "What": "MacroDef", - "defdec": "Def", - "display": "xTaskHandle", - "location": { - "column": "10", - "line": "935", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xTaskHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28016@macro@xQueueHandle", - "What": "MacroDef", - "defdec": "Def", - "display": "xQueueHandle", - "location": { - "column": "10", - "line": "936", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xQueueHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28053@macro@xSemaphoreHandle", - "What": "MacroDef", - "defdec": "Def", - "display": "xSemaphoreHandle", - "location": { - "column": "10", - "line": "937", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xSemaphoreHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28098@macro@xQueueSetHandle", - "What": "MacroDef", - "defdec": "Def", - "display": "xQueueSetHandle", - "location": { - "column": "10", - "line": "938", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xQueueSetHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28141@macro@xQueueSetMemberHandle", - "What": "MacroDef", - "defdec": "Def", - "display": "xQueueSetMemberHandle", - "location": { - "column": "10", - "line": "939", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xQueueSetMemberHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28196@macro@xTimeOutType", - "What": "MacroDef", - "defdec": "Def", - "display": "xTimeOutType", - "location": { - "column": "10", - "line": "940", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xTimeOutType", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28229@macro@xMemoryRegion", - "What": "MacroDef", - "defdec": "Def", - "display": "xMemoryRegion", - "location": { - "column": "10", - "line": "941", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xMemoryRegion", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28268@macro@xTaskParameters", - "What": "MacroDef", - "defdec": "Def", - "display": "xTaskParameters", - "location": { - "column": "10", - "line": "942", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xTaskParameters", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28311@macro@xTaskStatusType", - "What": "MacroDef", - "defdec": "Def", - "display": "xTaskStatusType", - "location": { - "column": "10", - "line": "943", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xTaskStatusType", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28350@macro@xTimerHandle", - "What": "MacroDef", - "defdec": "Def", - "display": "xTimerHandle", - "location": { - "column": "10", - "line": "944", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xTimerHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28387@macro@xCoRoutineHandle", - "What": "MacroDef", - "defdec": "Def", - "display": "xCoRoutineHandle", - "location": { - "column": "10", - "line": "945", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xCoRoutineHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28432@macro@pdTASK_HOOK_CODE", - "What": "MacroDef", - "defdec": "Def", - "display": "pdTASK_HOOK_CODE", - "location": { - "column": "10", - "line": "946", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pdTASK_HOOK_CODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28478@macro@portTICK_RATE_MS", - "What": "MacroDef", - "defdec": "Def", - "display": "portTICK_RATE_MS", - "location": { - "column": "10", - "line": "947", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "portTICK_RATE_MS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28524@macro@pcTaskGetTaskName", - "What": "MacroDef", - "defdec": "Def", - "display": "pcTaskGetTaskName", - "location": { - "column": "10", - "line": "948", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pcTaskGetTaskName", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28566@macro@pcTimerGetTimerName", - "What": "MacroDef", - "defdec": "Def", - "display": "pcTimerGetTimerName", - "location": { - "column": "10", - "line": "949", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pcTimerGetTimerName", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28611@macro@pcQueueGetQueueName", - "What": "MacroDef", - "defdec": "Def", - "display": "pcQueueGetQueueName", - "location": { - "column": "10", - "line": "950", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pcQueueGetQueueName", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28656@macro@vTaskGetTaskInfo", - "What": "MacroDef", - "defdec": "Def", - "display": "vTaskGetTaskInfo", - "location": { - "column": "10", - "line": "951", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "vTaskGetTaskInfo", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28841@macro@tmrTIMER_CALLBACK", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrTIMER_CALLBACK", - "location": { - "column": "10", - "line": "955", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "tmrTIMER_CALLBACK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28893@macro@pdTASK_CODE", - "What": "MacroDef", - "defdec": "Def", - "display": "pdTASK_CODE", - "location": { - "column": "10", - "line": "956", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pdTASK_CODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28930@macro@xListItem", - "What": "MacroDef", - "defdec": "Def", - "display": "xListItem", - "location": { - "column": "10", - "line": "957", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xListItem", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@28961@macro@xList", - "What": "MacroDef", - "defdec": "Def", - "display": "xList", - "location": { - "column": "10", - "line": "958", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xList", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@29122@macro@pxContainer", - "What": "MacroDef", - "defdec": "Def", - "display": "pxContainer", - "location": { - "column": "10", - "line": "962", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pxContainer", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@29638@macro@configUSE_TASK_FPU_SUPPORT", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_TASK_FPU_SUPPORT", - "location": { - "column": "10", - "line": "974", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configUSE_TASK_FPU_SUPPORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@29830@macro@configENABLE_MPU", - "What": "MacroDef", - "defdec": "Def", - "display": "configENABLE_MPU", - "location": { - "column": "10", - "line": "980", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configENABLE_MPU", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@30012@macro@configENABLE_FPU", - "What": "MacroDef", - "defdec": "Def", - "display": "configENABLE_FPU", - "location": { - "column": "10", - "line": "986", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configENABLE_FPU", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@30209@macro@configENABLE_TRUSTZONE", - "What": "MacroDef", - "defdec": "Def", - "display": "configENABLE_TRUSTZONE", - "location": { - "column": "10", - "line": "992", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configENABLE_TRUSTZONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@30399@macro@configRUN_FREERTOS_SECURE_ONLY", - "What": "MacroDef", - "defdec": "Def", - "display": "configRUN_FREERTOS_SECURE_ONLY", - "location": { - "column": "10", - "line": "998", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "configRUN_FREERTOS_SECURE_ONLY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@34672@macro@tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE", - "What": "MacroDef", - "defdec": "Def", - "display": "tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE", - "location": { - "column": "9", - "line": "1043", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xSTATIC_LIST_ITEM", - "What": "Struct", - "defdec": "Def", - "display": "xSTATIC_LIST_ITEM", - "location": { - "column": "8", - "line": "1056", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "members": [ - { - "ID": "c:@S@xSTATIC_LIST_ITEM@FI@xDummy2", - "What": "FieldDecl", - "defdec": "Def", - "display": "xDummy2", - "location": { - "column": "13", - "line": "1061", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xDummy2", - "origin": "user_include", - "scope": "xSTATIC_LIST_ITEM" - }, - { - "ID": "c:@S@xSTATIC_LIST_ITEM@FI@pvDummy3", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvDummy3", - "location": { - "column": "8", - "line": "1062", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pvDummy3", - "origin": "user_include", - "scope": "xSTATIC_LIST_ITEM" - } - ], - "name": "xSTATIC_LIST_ITEM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@T@StaticListItem_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xSTATIC_LIST_ITEM", - "location": { - "column": "34", - "line": "1067", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "StaticListItem_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xSTATIC_MINI_LIST_ITEM", - "What": "Struct", - "defdec": "Def", - "display": "xSTATIC_MINI_LIST_ITEM", - "location": { - "column": "8", - "line": "1070", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "members": [ - { - "ID": "c:@S@xSTATIC_MINI_LIST_ITEM@FI@xDummy2", - "What": "FieldDecl", - "defdec": "Def", - "display": "xDummy2", - "location": { - "column": "13", - "line": "1075", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xDummy2", - "origin": "user_include", - "scope": "xSTATIC_MINI_LIST_ITEM" - }, - { - "ID": "c:@S@xSTATIC_MINI_LIST_ITEM@FI@pvDummy3", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvDummy3", - "location": { - "column": "8", - "line": "1076", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pvDummy3", - "origin": "user_include", - "scope": "xSTATIC_MINI_LIST_ITEM" - } - ], - "name": "xSTATIC_MINI_LIST_ITEM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@T@StaticMiniListItem_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xSTATIC_MINI_LIST_ITEM", - "location": { - "column": "39", - "line": "1078", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "StaticMiniListItem_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xSTATIC_LIST", - "What": "Struct", - "defdec": "Def", - "display": "xSTATIC_LIST", - "location": { - "column": "16", - "line": "1081", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "members": [ - { - "ID": "c:@S@xSTATIC_LIST@FI@uxDummy2", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxDummy2", - "location": { - "column": "14", - "line": "1086", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "uxDummy2", - "origin": "user_include", - "scope": "xSTATIC_LIST" - }, - { - "ID": "c:@S@xSTATIC_LIST@FI@pvDummy3", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvDummy3", - "location": { - "column": "8", - "line": "1087", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pvDummy3", - "origin": "user_include", - "scope": "xSTATIC_LIST" - }, - { - "ID": "c:@S@xSTATIC_LIST@FI@xDummy4", - "What": "FieldDecl", - "defdec": "Def", - "display": "xDummy4", - "location": { - "column": "23", - "line": "1088", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xDummy4", - "origin": "user_include", - "scope": "xSTATIC_LIST" - } - ], - "name": "xSTATIC_LIST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@T@StaticList_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xSTATIC_LIST", - "location": { - "column": "3", - "line": "1092", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "StaticList_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xSTATIC_TCB", - "What": "Struct", - "defdec": "Def", - "display": "xSTATIC_TCB", - "location": { - "column": "16", - "line": "1107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "members": [ - { - "ID": "c:@S@xSTATIC_TCB@FI@pxDummy1", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxDummy1", - "location": { - "column": "11", - "line": "1109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pxDummy1", - "origin": "user_include", - "scope": "xSTATIC_TCB" - }, - { - "ID": "c:@S@xSTATIC_TCB@FI@xDummy3", - "What": "FieldDecl", - "defdec": "Def", - "display": "xDummy3", - "location": { - "column": "19", - "line": "1113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xDummy3", - "origin": "user_include", - "scope": "xSTATIC_TCB" - }, - { - "ID": "c:@S@xSTATIC_TCB@FI@uxDummy5", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxDummy5", - "location": { - "column": "16", - "line": "1114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "uxDummy5", - "origin": "user_include", - "scope": "xSTATIC_TCB" - }, - { - "ID": "c:@S@xSTATIC_TCB@FI@pxDummy6", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxDummy6", - "location": { - "column": "11", - "line": "1115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pxDummy6", - "origin": "user_include", - "scope": "xSTATIC_TCB" - }, - { - "ID": "c:@S@xSTATIC_TCB@FI@ucDummy7", - "What": "FieldDecl", - "defdec": "Def", - "display": "ucDummy7", - "location": { - "column": "13", - "line": "1116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "ucDummy7", - "origin": "user_include", - "scope": "xSTATIC_TCB" - }, - { - "ID": "c:@S@xSTATIC_TCB@FI@uxDummy10", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxDummy10", - "location": { - "column": "16", - "line": "1124", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "uxDummy10", - "origin": "user_include", - "scope": "xSTATIC_TCB" - }, - { - "ID": "c:@S@xSTATIC_TCB@FI@uxDummy12", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxDummy12", - "location": { - "column": "16", - "line": "1127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "uxDummy12", - "origin": "user_include", - "scope": "xSTATIC_TCB" - }, - { - "ID": "c:@S@xSTATIC_TCB@FI@ulDummy18", - "What": "FieldDecl", - "defdec": "Def", - "display": "ulDummy18", - "location": { - "column": "14", - "line": "1142", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "ulDummy18", - "origin": "user_include", - "scope": "xSTATIC_TCB" - }, - { - "ID": "c:@S@xSTATIC_TCB@FI@ucDummy19", - "What": "FieldDecl", - "defdec": "Def", - "display": "ucDummy19", - "location": { - "column": "13", - "line": "1143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "ucDummy19", - "origin": "user_include", - "scope": "xSTATIC_TCB" - } - ], - "name": "xSTATIC_TCB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@T@StaticTask_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xSTATIC_TCB", - "location": { - "column": "3", - "line": "1155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "StaticTask_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xSTATIC_QUEUE", - "What": "Struct", - "defdec": "Def", - "display": "xSTATIC_QUEUE", - "location": { - "column": "16", - "line": "1171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "members": [ - { - "ID": "c:@S@xSTATIC_QUEUE@FI@pvDummy1", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvDummy1", - "location": { - "column": "8", - "line": "1173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pvDummy1", - "origin": "user_include", - "scope": "xSTATIC_QUEUE" - }, - { - "ID": "c:@S@xSTATIC_QUEUE@U@FreeRTOS.h@39708", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "2", - "line": "1175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "members": [ - { - "ID": "c:@S@xSTATIC_QUEUE@U@FreeRTOS.h@39708@FI@pvDummy2", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvDummy2", - "location": { - "column": "9", - "line": "1177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pvDummy2", - "origin": "user_include", - "scope": "xSTATIC_QUEUE::_anonymous_FreeRTOS_h_1175_2" - }, - { - "ID": "c:@S@xSTATIC_QUEUE@U@FreeRTOS.h@39708@FI@uxDummy2", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxDummy2", - "location": { - "column": "15", - "line": "1178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "uxDummy2", - "origin": "user_include", - "scope": "xSTATIC_QUEUE::_anonymous_FreeRTOS_h_1175_2" - } - ], - "name": "", - "origin": "user_include", - "scope": "xSTATIC_QUEUE" - }, - { - "ID": "c:@S@xSTATIC_QUEUE@FI@u", - "What": "FieldDecl", - "defdec": "Def", - "display": "u", - "location": { - "column": "4", - "line": "1179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "u", - "origin": "user_include", - "scope": "xSTATIC_QUEUE" - }, - { - "ID": "c:@S@xSTATIC_QUEUE@FI@xDummy3", - "What": "FieldDecl", - "defdec": "Def", - "display": "xDummy3", - "location": { - "column": "15", - "line": "1181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xDummy3", - "origin": "user_include", - "scope": "xSTATIC_QUEUE" - }, - { - "ID": "c:@S@xSTATIC_QUEUE@FI@uxDummy4", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxDummy4", - "location": { - "column": "14", - "line": "1182", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "uxDummy4", - "origin": "user_include", - "scope": "xSTATIC_QUEUE" - }, - { - "ID": "c:@S@xSTATIC_QUEUE@FI@ucDummy5", - "What": "FieldDecl", - "defdec": "Def", - "display": "ucDummy5", - "location": { - "column": "10", - "line": "1183", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "ucDummy5", - "origin": "user_include", - "scope": "xSTATIC_QUEUE" - }, - { - "ID": "c:@S@xSTATIC_QUEUE@FI@uxDummy8", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxDummy8", - "location": { - "column": "15", - "line": "1194", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "uxDummy8", - "origin": "user_include", - "scope": "xSTATIC_QUEUE" - }, - { - "ID": "c:@S@xSTATIC_QUEUE@FI@ucDummy9", - "What": "FieldDecl", - "defdec": "Def", - "display": "ucDummy9", - "location": { - "column": "11", - "line": "1195", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "ucDummy9", - "origin": "user_include", - "scope": "xSTATIC_QUEUE" - } - ], - "name": "xSTATIC_QUEUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@T@StaticQueue_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xSTATIC_QUEUE", - "location": { - "column": "3", - "line": "1198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "StaticQueue_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@T@StaticSemaphore_t", - "What": "Typedef", - "defdec": "Def", - "display": "StaticQueue_t", - "location": { - "column": "23", - "line": "1199", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "StaticSemaphore_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xSTATIC_EVENT_GROUP", - "What": "Struct", - "defdec": "Def", - "display": "xSTATIC_EVENT_GROUP", - "location": { - "column": "16", - "line": "1215", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "members": [ - { - "ID": "c:@S@xSTATIC_EVENT_GROUP@FI@xDummy1", - "What": "FieldDecl", - "defdec": "Def", - "display": "xDummy1", - "location": { - "column": "13", - "line": "1217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xDummy1", - "origin": "user_include", - "scope": "xSTATIC_EVENT_GROUP" - }, - { - "ID": "c:@S@xSTATIC_EVENT_GROUP@FI@xDummy2", - "What": "FieldDecl", - "defdec": "Def", - "display": "xDummy2", - "location": { - "column": "15", - "line": "1218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xDummy2", - "origin": "user_include", - "scope": "xSTATIC_EVENT_GROUP" - }, - { - "ID": "c:@S@xSTATIC_EVENT_GROUP@FI@uxDummy3", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxDummy3", - "location": { - "column": "15", - "line": "1221", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "uxDummy3", - "origin": "user_include", - "scope": "xSTATIC_EVENT_GROUP" - } - ], - "name": "xSTATIC_EVENT_GROUP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@T@StaticEventGroup_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xSTATIC_EVENT_GROUP", - "location": { - "column": "3", - "line": "1228", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "StaticEventGroup_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xSTATIC_TIMER", - "What": "Struct", - "defdec": "Def", - "display": "xSTATIC_TIMER", - "location": { - "column": "16", - "line": "1244", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "members": [ - { - "ID": "c:@S@xSTATIC_TIMER@FI@pvDummy1", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvDummy1", - "location": { - "column": "11", - "line": "1246", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pvDummy1", - "origin": "user_include", - "scope": "xSTATIC_TIMER" - }, - { - "ID": "c:@S@xSTATIC_TIMER@FI@xDummy2", - "What": "FieldDecl", - "defdec": "Def", - "display": "xDummy2", - "location": { - "column": "19", - "line": "1247", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xDummy2", - "origin": "user_include", - "scope": "xSTATIC_TIMER" - }, - { - "ID": "c:@S@xSTATIC_TIMER@FI@xDummy3", - "What": "FieldDecl", - "defdec": "Def", - "display": "xDummy3", - "location": { - "column": "15", - "line": "1248", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "xDummy3", - "origin": "user_include", - "scope": "xSTATIC_TIMER" - }, - { - "ID": "c:@S@xSTATIC_TIMER@FI@pvDummy5", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvDummy5", - "location": { - "column": "12", - "line": "1249", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pvDummy5", - "origin": "user_include", - "scope": "xSTATIC_TIMER" - }, - { - "ID": "c:@S@xSTATIC_TIMER@FI@pvDummy6", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvDummy6", - "location": { - "column": "18", - "line": "1250", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pvDummy6", - "origin": "user_include", - "scope": "xSTATIC_TIMER" - }, - { - "ID": "c:@S@xSTATIC_TIMER@FI@uxDummy7", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxDummy7", - "location": { - "column": "16", - "line": "1252", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "uxDummy7", - "origin": "user_include", - "scope": "xSTATIC_TIMER" - }, - { - "ID": "c:@S@xSTATIC_TIMER@FI@ucDummy8", - "What": "FieldDecl", - "defdec": "Def", - "display": "ucDummy8", - "location": { - "column": "13", - "line": "1254", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "ucDummy8", - "origin": "user_include", - "scope": "xSTATIC_TIMER" - } - ], - "name": "xSTATIC_TIMER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@T@StaticTimer_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xSTATIC_TIMER", - "location": { - "column": "3", - "line": "1256", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "StaticTimer_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xSTATIC_STREAM_BUFFER", - "What": "Struct", - "defdec": "Def", - "display": "xSTATIC_STREAM_BUFFER", - "location": { - "column": "16", - "line": "1272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "members": [ - { - "ID": "c:@S@xSTATIC_STREAM_BUFFER@FI@uxDummy1", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxDummy1", - "location": { - "column": "9", - "line": "1274", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "uxDummy1", - "origin": "user_include", - "scope": "xSTATIC_STREAM_BUFFER" - }, - { - "ID": "c:@S@xSTATIC_STREAM_BUFFER@FI@pvDummy2", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvDummy2", - "location": { - "column": "9", - "line": "1275", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "pvDummy2", - "origin": "user_include", - "scope": "xSTATIC_STREAM_BUFFER" - }, - { - "ID": "c:@S@xSTATIC_STREAM_BUFFER@FI@ucDummy3", - "What": "FieldDecl", - "defdec": "Def", - "display": "ucDummy3", - "location": { - "column": "10", - "line": "1276", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "ucDummy3", - "origin": "user_include", - "scope": "xSTATIC_STREAM_BUFFER" - }, - { - "ID": "c:@S@xSTATIC_STREAM_BUFFER@FI@uxDummy4", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxDummy4", - "location": { - "column": "15", - "line": "1278", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "uxDummy4", - "origin": "user_include", - "scope": "xSTATIC_STREAM_BUFFER" - } - ], - "name": "xSTATIC_STREAM_BUFFER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@T@StaticStreamBuffer_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xSTATIC_STREAM_BUFFER", - "location": { - "column": "3", - "line": "1280", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "StaticStreamBuffer_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOS.h@T@StaticMessageBuffer_t", - "What": "Typedef", - "defdec": "Def", - "display": "StaticStreamBuffer_t", - "location": { - "column": "30", - "line": "1283", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\FreeRTOS.h" - }, - "name": "StaticMessageBuffer_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@203@macro@_FSL_CLOCK_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_FSL_CLOCK_H_", - "location": { - "column": "9", - "line": "11", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "_FSL_CLOCK_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@571@macro@FSL_CLOCK_DRIVER_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_CLOCK_DRIVER_VERSION", - "location": { - "column": "9", - "line": "27", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "FSL_CLOCK_DRIVER_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@783@macro@SDK_DEVICE_MAXIMUM_CPU_CLOCK_FREQUENCY", - "What": "MacroDef", - "defdec": "Def", - "display": "SDK_DEVICE_MAXIMUM_CPU_CLOCK_FREQUENCY", - "location": { - "column": "9", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "SDK_DEVICE_MAXIMUM_CPU_CLOCK_FREQUENCY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@1168@macro@CLOCK_USR_CFG_PLL_CONFIG_CACHE_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "CLOCK_USR_CFG_PLL_CONFIG_CACHE_COUNT", - "location": { - "column": "9", - "line": "43", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_USR_CFG_PLL_CONFIG_CACHE_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@1276@macro@FLEXCOMM_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_CLOCKS", - "location": { - "column": "9", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "FLEXCOMM_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@1806@macro@LPUART_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "LPUART_CLOCKS", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "LPUART_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@2312@macro@BI2C_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "BI2C_CLOCKS", - "location": { - "column": "9", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "BI2C_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@2730@macro@LPSI_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "LPSI_CLOCKS", - "location": { - "column": "9", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "LPSI_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@3151@macro@FLEXI2S_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXI2S_CLOCKS", - "location": { - "column": "9", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "FLEXI2S_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@3656@macro@UTICK_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_CLOCKS", - "location": { - "column": "9", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "UTICK_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@3779@macro@DMA_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_CLOCKS", - "location": { - "column": "9", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "DMA_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@3898@macro@CTIMER_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_CLOCKS", - "location": { - "column": "9", - "line": "86", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CTIMER_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@4126@macro@GPIO_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_CLOCKS", - "location": { - "column": "9", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "GPIO_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@4291@macro@ADC_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_CLOCKS", - "location": { - "column": "9", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "ADC_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@4411@macro@MRT_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_CLOCKS", - "location": { - "column": "9", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "MRT_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@4528@macro@SCT_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_CLOCKS", - "location": { - "column": "9", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "SCT_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@4648@macro@RTC_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "RTC_CLOCKS", - "location": { - "column": "9", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "RTC_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@4766@macro@WWDT_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_CLOCKS", - "location": { - "column": "9", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "WWDT_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@4886@macro@CRC_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_CLOCKS", - "location": { - "column": "9", - "line": "122", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CRC_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@5004@macro@USBD_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "USBD_CLOCKS", - "location": { - "column": "9", - "line": "127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "USBD_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@5160@macro@GINT_CLOCKS", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_CLOCKS", - "location": { - "column": "9", - "line": "133", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "GINT_CLOCKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@5551@macro@CLK_GATE_REG_OFFSET_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CLK_GATE_REG_OFFSET_SHIFT", - "location": { - "column": "9", - "line": "143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLK_GATE_REG_OFFSET_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@5589@macro@CLK_GATE_REG_OFFSET_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CLK_GATE_REG_OFFSET_MASK", - "location": { - "column": "9", - "line": "144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLK_GATE_REG_OFFSET_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@5635@macro@CLK_GATE_BIT_SHIFT_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CLK_GATE_BIT_SHIFT_SHIFT", - "location": { - "column": "9", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLK_GATE_BIT_SHIFT_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@5672@macro@CLK_GATE_BIT_SHIFT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "CLK_GATE_BIT_SHIFT_MASK", - "location": { - "column": "9", - "line": "146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLK_GATE_BIT_SHIFT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@5719@macro@CLK_GATE_DEFINE", - "What": "MacroDef", - "defdec": "Def", - "display": "CLK_GATE_DEFINE", - "location": { - "column": "9", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLK_GATE_DEFINE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@5964@macro@CLK_GATE_ABSTRACT_REG_OFFSET", - "What": "MacroDef", - "defdec": "Def", - "display": "CLK_GATE_ABSTRACT_REG_OFFSET", - "location": { - "column": "9", - "line": "152", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLK_GATE_ABSTRACT_REG_OFFSET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@6077@macro@CLK_GATE_ABSTRACT_BITS_SHIFT", - "What": "MacroDef", - "defdec": "Def", - "display": "CLK_GATE_ABSTRACT_BITS_SHIFT", - "location": { - "column": "9", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLK_GATE_ABSTRACT_BITS_SHIFT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@6190@macro@AHB_CLK_CTRL0", - "What": "MacroDef", - "defdec": "Def", - "display": "AHB_CLK_CTRL0", - "location": { - "column": "9", - "line": "155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "AHB_CLK_CTRL0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@6215@macro@AHB_CLK_CTRL1", - "What": "MacroDef", - "defdec": "Def", - "display": "AHB_CLK_CTRL1", - "location": { - "column": "9", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "AHB_CLK_CTRL1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@6240@macro@ASYNC_CLK_CTRL0", - "What": "MacroDef", - "defdec": "Def", - "display": "ASYNC_CLK_CTRL0", - "location": { - "column": "9", - "line": "157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "ASYNC_CLK_CTRL0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name", - "What": "Enum", - "defdec": "Def", - "display": "_clock_ip_name", - "fields": [ - { - "ID": "c:@E@_clock_ip_name@kCLOCK_IpInvalid", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_IpInvalid", - "location": { - "column": "5", - "line": "162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_IpInvalid", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Rom", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Rom", - "location": { - "column": "5", - "line": "163", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Rom", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Flash", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flash", - "location": { - "column": "5", - "line": "164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flash", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Fmc", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Fmc", - "location": { - "column": "5", - "line": "165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Fmc", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_InputMux", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_InputMux", - "location": { - "column": "5", - "line": "166", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_InputMux", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Iocon", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Iocon", - "location": { - "column": "5", - "line": "167", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Iocon", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Gpio0", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Gpio0", - "location": { - "column": "5", - "line": "168", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Gpio0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Gpio1", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Gpio1", - "location": { - "column": "5", - "line": "169", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Gpio1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Pint", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Pint", - "location": { - "column": "5", - "line": "170", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Pint", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Gint", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Gint", - "location": { - "column": "5", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Gint", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Dma", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Dma", - "location": { - "column": "5", - "line": "172", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Dma", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Crc", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Crc", - "location": { - "column": "5", - "line": "173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Crc", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Wwdt", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Wwdt", - "location": { - "column": "5", - "line": "174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Wwdt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Rtc", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Rtc", - "location": { - "column": "5", - "line": "175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Rtc", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Adc0", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Adc0", - "location": { - "column": "5", - "line": "176", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Adc0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Mrt", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Mrt", - "location": { - "column": "5", - "line": "177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Mrt", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Sct0", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Sct0", - "location": { - "column": "5", - "line": "178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Sct0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Utick", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Utick", - "location": { - "column": "5", - "line": "179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Utick", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexComm0", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexComm0", - "location": { - "column": "5", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexComm0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexComm1", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexComm1", - "location": { - "column": "5", - "line": "181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexComm1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexComm2", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexComm2", - "location": { - "column": "5", - "line": "182", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexComm2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexComm3", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexComm3", - "location": { - "column": "5", - "line": "183", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexComm3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexComm4", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexComm4", - "location": { - "column": "5", - "line": "184", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexComm4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexComm5", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexComm5", - "location": { - "column": "5", - "line": "185", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexComm5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexComm6", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexComm6", - "location": { - "column": "5", - "line": "186", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexComm6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexComm7", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexComm7", - "location": { - "column": "5", - "line": "187", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexComm7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_MinUart0", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_MinUart0", - "location": { - "column": "5", - "line": "188", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_MinUart0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_MinUart1", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_MinUart1", - "location": { - "column": "5", - "line": "189", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_MinUart1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_MinUart2", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_MinUart2", - "location": { - "column": "5", - "line": "190", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_MinUart2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_MinUart3", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_MinUart3", - "location": { - "column": "5", - "line": "191", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_MinUart3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_MinUart4", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_MinUart4", - "location": { - "column": "5", - "line": "192", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_MinUart4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_MinUart5", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_MinUart5", - "location": { - "column": "5", - "line": "193", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_MinUart5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_MinUart6", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_MinUart6", - "location": { - "column": "5", - "line": "194", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_MinUart6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_MinUart7", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_MinUart7", - "location": { - "column": "5", - "line": "195", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_MinUart7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_LSpi0", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_LSpi0", - "location": { - "column": "5", - "line": "196", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_LSpi0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_LSpi1", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_LSpi1", - "location": { - "column": "5", - "line": "197", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_LSpi1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_LSpi2", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_LSpi2", - "location": { - "column": "5", - "line": "198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_LSpi2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_LSpi3", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_LSpi3", - "location": { - "column": "5", - "line": "199", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_LSpi3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_LSpi4", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_LSpi4", - "location": { - "column": "5", - "line": "200", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_LSpi4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_LSpi5", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_LSpi5", - "location": { - "column": "5", - "line": "201", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_LSpi5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_LSpi6", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_LSpi6", - "location": { - "column": "5", - "line": "202", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_LSpi6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_LSpi7", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_LSpi7", - "location": { - "column": "5", - "line": "203", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_LSpi7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_BI2c0", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_BI2c0", - "location": { - "column": "5", - "line": "204", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_BI2c0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_BI2c1", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_BI2c1", - "location": { - "column": "5", - "line": "205", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_BI2c1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_BI2c2", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_BI2c2", - "location": { - "column": "5", - "line": "206", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_BI2c2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_BI2c3", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_BI2c3", - "location": { - "column": "5", - "line": "207", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_BI2c3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_BI2c4", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_BI2c4", - "location": { - "column": "5", - "line": "208", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_BI2c4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_BI2c5", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_BI2c5", - "location": { - "column": "5", - "line": "209", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_BI2c5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_BI2c6", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_BI2c6", - "location": { - "column": "5", - "line": "210", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_BI2c6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_BI2c7", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_BI2c7", - "location": { - "column": "5", - "line": "211", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_BI2c7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexI2s0", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexI2s0", - "location": { - "column": "5", - "line": "212", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexI2s0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexI2s1", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexI2s1", - "location": { - "column": "5", - "line": "213", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexI2s1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexI2s2", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexI2s2", - "location": { - "column": "5", - "line": "214", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexI2s2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexI2s3", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexI2s3", - "location": { - "column": "5", - "line": "215", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexI2s3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexI2s4", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexI2s4", - "location": { - "column": "5", - "line": "216", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexI2s4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexI2s5", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexI2s5", - "location": { - "column": "5", - "line": "217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexI2s5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexI2s6", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexI2s6", - "location": { - "column": "5", - "line": "218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexI2s6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_FlexI2s7", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexI2s7", - "location": { - "column": "5", - "line": "219", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexI2s7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Ct32b2", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Ct32b2", - "location": { - "column": "5", - "line": "220", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Ct32b2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Usbd0", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Usbd0", - "location": { - "column": "5", - "line": "221", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Usbd0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Ctimer0", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Ctimer0", - "location": { - "column": "5", - "line": "222", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Ctimer0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Ctimer1", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Ctimer1", - "location": { - "column": "5", - "line": "223", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Ctimer1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_ip_name@kCLOCK_Ctimer3", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Ctimer3", - "location": { - "column": "5", - "line": "225", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Ctimer3", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "160", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "_clock_ip_name", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@T@clock_ip_name_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _clock_ip_name", - "location": { - "column": "3", - "line": "226", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "clock_ip_name_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name", - "What": "Enum", - "defdec": "Def", - "display": "_clock_name", - "fields": [ - { - "ID": "c:@E@_clock_name@kCLOCK_CoreSysClk", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_CoreSysClk", - "location": { - "column": "5", - "line": "231", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_CoreSysClk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_BusClk", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_BusClk", - "location": { - "column": "5", - "line": "232", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_BusClk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_FroHf", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FroHf", - "location": { - "column": "5", - "line": "233", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FroHf", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_Fro12M", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Fro12M", - "location": { - "column": "5", - "line": "234", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Fro12M", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_ExtClk", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_ExtClk", - "location": { - "column": "5", - "line": "235", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_ExtClk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_PllOut", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_PllOut", - "location": { - "column": "5", - "line": "236", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_PllOut", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_UsbClk", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_UsbClk", - "location": { - "column": "5", - "line": "237", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_UsbClk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_WdtOsc", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_WdtOsc", - "location": { - "column": "5", - "line": "238", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_WdtOsc", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_Frg", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Frg", - "location": { - "column": "5", - "line": "239", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Frg", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_AsyncApbClk", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_AsyncApbClk", - "location": { - "column": "5", - "line": "240", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_AsyncApbClk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_FlexI2S", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_FlexI2S", - "location": { - "column": "5", - "line": "241", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_FlexI2S", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_Flexcomm0", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flexcomm0", - "location": { - "column": "5", - "line": "242", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flexcomm0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_Flexcomm1", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flexcomm1", - "location": { - "column": "5", - "line": "243", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flexcomm1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_Flexcomm2", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flexcomm2", - "location": { - "column": "5", - "line": "244", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flexcomm2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_Flexcomm3", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flexcomm3", - "location": { - "column": "5", - "line": "245", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flexcomm3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_Flexcomm4", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flexcomm4", - "location": { - "column": "5", - "line": "246", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flexcomm4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_Flexcomm5", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flexcomm5", - "location": { - "column": "5", - "line": "247", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flexcomm5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_Flexcomm6", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flexcomm6", - "location": { - "column": "5", - "line": "248", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flexcomm6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_name@kCLOCK_Flexcomm7", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flexcomm7", - "location": { - "column": "5", - "line": "249", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flexcomm7", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "229", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "_clock_name", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@T@clock_name_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _clock_name", - "location": { - "column": "3", - "line": "250", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "clock_name_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_async_clock_src", - "What": "Enum", - "defdec": "Def", - "display": "_async_clock_src", - "fields": [ - { - "ID": "c:@E@_async_clock_src@kCLOCK_AsyncMainClk", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_AsyncMainClk", - "location": { - "column": "5", - "line": "257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_AsyncMainClk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_async_clock_src@kCLOCK_AsyncFro12Mhz", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_AsyncFro12Mhz", - "location": { - "column": "5", - "line": "258", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_AsyncFro12Mhz", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "255", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "_async_clock_src", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@T@async_clock_src_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _async_clock_src", - "location": { - "column": "3", - "line": "259", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "async_clock_src_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@12423@macro@CLK_ATTACH_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "CLK_ATTACH_ID", - "location": { - "column": "9", - "line": "269", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLK_ATTACH_ID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@12519@macro@MUX_A", - "What": "MacroDef", - "defdec": "Def", - "display": "MUX_A", - "location": { - "column": "9", - "line": "270", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "MUX_A", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@12572@macro@MUX_B", - "What": "MacroDef", - "defdec": "Def", - "display": "MUX_B", - "location": { - "column": "9", - "line": "271", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "MUX_B", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@12659@macro@GET_ID_ITEM", - "What": "MacroDef", - "defdec": "Def", - "display": "GET_ID_ITEM", - "location": { - "column": "9", - "line": "273", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "GET_ID_ITEM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@12714@macro@GET_ID_NEXT_ITEM", - "What": "MacroDef", - "defdec": "Def", - "display": "GET_ID_NEXT_ITEM", - "location": { - "column": "9", - "line": "274", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "GET_ID_NEXT_ITEM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@12774@macro@GET_ID_ITEM_MUX", - "What": "MacroDef", - "defdec": "Def", - "display": "GET_ID_ITEM_MUX", - "location": { - "column": "9", - "line": "275", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "GET_ID_ITEM_MUX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@12832@macro@GET_ID_ITEM_SEL", - "What": "MacroDef", - "defdec": "Def", - "display": "GET_ID_ITEM_SEL", - "location": { - "column": "9", - "line": "276", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "GET_ID_ITEM_SEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@12906@macro@GET_ID_SELECTOR", - "What": "MacroDef", - "defdec": "Def", - "display": "GET_ID_SELECTOR", - "location": { - "column": "9", - "line": "277", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "GET_ID_SELECTOR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@12971@macro@CM_MAINCLKSELA", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_MAINCLKSELA", - "location": { - "column": "9", - "line": "279", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_MAINCLKSELA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@12997@macro@CM_MAINCLKSELB", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_MAINCLKSELB", - "location": { - "column": "9", - "line": "280", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_MAINCLKSELB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13023@macro@CM_CLKOUTCLKSELA", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_CLKOUTCLKSELA", - "location": { - "column": "9", - "line": "281", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_CLKOUTCLKSELA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13051@macro@CM_CLKOUTCLKSELB", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_CLKOUTCLKSELB", - "location": { - "column": "9", - "line": "282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_CLKOUTCLKSELB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13079@macro@CM_SYSPLLCLKSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_SYSPLLCLKSEL", - "location": { - "column": "9", - "line": "283", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_SYSPLLCLKSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13106@macro@CM_USBPLLCLKSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_USBPLLCLKSEL", - "location": { - "column": "9", - "line": "284", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_USBPLLCLKSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13133@macro@CM_AUDPLLCLKSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_AUDPLLCLKSEL", - "location": { - "column": "9", - "line": "285", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_AUDPLLCLKSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13160@macro@CM_SCTPLLCLKSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_SCTPLLCLKSEL", - "location": { - "column": "9", - "line": "286", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_SCTPLLCLKSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13187@macro@CM_ADCASYNCCLKSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_ADCASYNCCLKSEL", - "location": { - "column": "9", - "line": "287", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_ADCASYNCCLKSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13216@macro@CM_USBCLKSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_USBCLKSEL", - "location": { - "column": "9", - "line": "288", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_USBCLKSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13241@macro@CM_USB1CLKSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_USB1CLKSEL", - "location": { - "column": "9", - "line": "289", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_USB1CLKSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13267@macro@CM_FXCOMCLKSEL0", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXCOMCLKSEL0", - "location": { - "column": "9", - "line": "290", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXCOMCLKSEL0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13295@macro@CM_FXCOMCLKSEL1", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXCOMCLKSEL1", - "location": { - "column": "9", - "line": "291", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXCOMCLKSEL1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13323@macro@CM_FXCOMCLKSEL2", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXCOMCLKSEL2", - "location": { - "column": "9", - "line": "292", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXCOMCLKSEL2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13351@macro@CM_FXCOMCLKSEL3", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXCOMCLKSEL3", - "location": { - "column": "9", - "line": "293", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXCOMCLKSEL3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13379@macro@CM_FXCOMCLKSEL4", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXCOMCLKSEL4", - "location": { - "column": "9", - "line": "294", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXCOMCLKSEL4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13407@macro@CM_FXCOMCLKSEL5", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXCOMCLKSEL5", - "location": { - "column": "9", - "line": "295", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXCOMCLKSEL5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13435@macro@CM_FXCOMCLKSEL6", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXCOMCLKSEL6", - "location": { - "column": "9", - "line": "296", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXCOMCLKSEL6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13463@macro@CM_FXCOMCLKSEL7", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXCOMCLKSEL7", - "location": { - "column": "9", - "line": "297", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXCOMCLKSEL7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13491@macro@CM_FXCOMCLKSEL8", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXCOMCLKSEL8", - "location": { - "column": "9", - "line": "298", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXCOMCLKSEL8", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13519@macro@CM_FXCOMCLKSEL9", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXCOMCLKSEL9", - "location": { - "column": "9", - "line": "299", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXCOMCLKSEL9", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13547@macro@CM_FXCOMCLKSEL10", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXCOMCLKSEL10", - "location": { - "column": "9", - "line": "300", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXCOMCLKSEL10", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13576@macro@CM_FXCOMCLKSEL11", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXCOMCLKSEL11", - "location": { - "column": "9", - "line": "301", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXCOMCLKSEL11", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13605@macro@CM_FXI2S0MCLKCLKSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXI2S0MCLKCLKSEL", - "location": { - "column": "9", - "line": "302", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXI2S0MCLKCLKSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13637@macro@CM_FXI2S1MCLKCLKSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FXI2S1MCLKCLKSEL", - "location": { - "column": "9", - "line": "303", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FXI2S1MCLKCLKSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13669@macro@CM_FRGCLKSEL", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_FRGCLKSEL", - "location": { - "column": "9", - "line": "304", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_FRGCLKSEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@13696@macro@CM_ASYNCAPB", - "What": "MacroDef", - "defdec": "Def", - "display": "CM_ASYNCAPB", - "location": { - "column": "9", - "line": "306", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CM_ASYNCAPB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id", - "What": "Enum", - "defdec": "Def", - "display": "_clock_attach_id", - "fields": [ - { - "ID": "c:@E@_clock_attach_id@kFRO12M_to_MAIN_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO12M_to_MAIN_CLK", - "location": { - "column": "5", - "line": "311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO12M_to_MAIN_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kEXT_CLK_to_MAIN_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kEXT_CLK_to_MAIN_CLK", - "location": { - "column": "5", - "line": "312", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kEXT_CLK_to_MAIN_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kWDT_OSC_to_MAIN_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kWDT_OSC_to_MAIN_CLK", - "location": { - "column": "5", - "line": "313", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kWDT_OSC_to_MAIN_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_MAIN_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_MAIN_CLK", - "location": { - "column": "5", - "line": "314", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_MAIN_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_MAIN_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_MAIN_CLK", - "location": { - "column": "5", - "line": "315", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_MAIN_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kOSC32K_to_MAIN_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kOSC32K_to_MAIN_CLK", - "location": { - "column": "5", - "line": "316", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kOSC32K_to_MAIN_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO12M_to_SYS_PLL", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO12M_to_SYS_PLL", - "location": { - "column": "5", - "line": "318", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO12M_to_SYS_PLL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kEXT_CLK_to_SYS_PLL", - "What": "Enumerator", - "defdec": "Def", - "display": "kEXT_CLK_to_SYS_PLL", - "location": { - "column": "5", - "line": "319", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kEXT_CLK_to_SYS_PLL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kWDT_OSC_to_SYS_PLL", - "What": "Enumerator", - "defdec": "Def", - "display": "kWDT_OSC_to_SYS_PLL", - "location": { - "column": "5", - "line": "320", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kWDT_OSC_to_SYS_PLL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kOSC32K_to_SYS_PLL", - "What": "Enumerator", - "defdec": "Def", - "display": "kOSC32K_to_SYS_PLL", - "location": { - "column": "5", - "line": "321", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kOSC32K_to_SYS_PLL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_SYS_PLL", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_SYS_PLL", - "location": { - "column": "5", - "line": "322", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_SYS_PLL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMAIN_CLK_to_ASYNC_APB", - "What": "Enumerator", - "defdec": "Def", - "display": "kMAIN_CLK_to_ASYNC_APB", - "location": { - "column": "5", - "line": "324", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMAIN_CLK_to_ASYNC_APB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO12M_to_ASYNC_APB", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO12M_to_ASYNC_APB", - "location": { - "column": "5", - "line": "325", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO12M_to_ASYNC_APB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMAIN_CLK_to_ADC_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kMAIN_CLK_to_ADC_CLK", - "location": { - "column": "5", - "line": "327", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMAIN_CLK_to_ADC_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_ADC_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_ADC_CLK", - "location": { - "column": "5", - "line": "328", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_ADC_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_ADC_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_ADC_CLK", - "location": { - "column": "5", - "line": "329", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_ADC_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_ADC_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_ADC_CLK", - "location": { - "column": "5", - "line": "330", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_ADC_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO12M_to_FLEXCOMM0", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO12M_to_FLEXCOMM0", - "location": { - "column": "5", - "line": "332", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO12M_to_FLEXCOMM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_FLEXCOMM0", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_FLEXCOMM0", - "location": { - "column": "5", - "line": "333", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_FLEXCOMM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_FLEXCOMM0", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_FLEXCOMM0", - "location": { - "column": "5", - "line": "334", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_FLEXCOMM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMCLK_to_FLEXCOMM0", - "What": "Enumerator", - "defdec": "Def", - "display": "kMCLK_to_FLEXCOMM0", - "location": { - "column": "5", - "line": "335", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMCLK_to_FLEXCOMM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRG_to_FLEXCOMM0", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRG_to_FLEXCOMM0", - "location": { - "column": "5", - "line": "336", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRG_to_FLEXCOMM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_FLEXCOMM0", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_FLEXCOMM0", - "location": { - "column": "5", - "line": "337", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_FLEXCOMM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO12M_to_FLEXCOMM1", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO12M_to_FLEXCOMM1", - "location": { - "column": "5", - "line": "339", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO12M_to_FLEXCOMM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_FLEXCOMM1", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_FLEXCOMM1", - "location": { - "column": "5", - "line": "340", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_FLEXCOMM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_FLEXCOMM1", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_FLEXCOMM1", - "location": { - "column": "5", - "line": "341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_FLEXCOMM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMCLK_to_FLEXCOMM1", - "What": "Enumerator", - "defdec": "Def", - "display": "kMCLK_to_FLEXCOMM1", - "location": { - "column": "5", - "line": "342", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMCLK_to_FLEXCOMM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRG_to_FLEXCOMM1", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRG_to_FLEXCOMM1", - "location": { - "column": "5", - "line": "343", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRG_to_FLEXCOMM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_FLEXCOMM1", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_FLEXCOMM1", - "location": { - "column": "5", - "line": "344", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_FLEXCOMM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO12M_to_FLEXCOMM2", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO12M_to_FLEXCOMM2", - "location": { - "column": "5", - "line": "346", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO12M_to_FLEXCOMM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_FLEXCOMM2", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_FLEXCOMM2", - "location": { - "column": "5", - "line": "347", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_FLEXCOMM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_FLEXCOMM2", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_FLEXCOMM2", - "location": { - "column": "5", - "line": "348", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_FLEXCOMM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMCLK_to_FLEXCOMM2", - "What": "Enumerator", - "defdec": "Def", - "display": "kMCLK_to_FLEXCOMM2", - "location": { - "column": "5", - "line": "349", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMCLK_to_FLEXCOMM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRG_to_FLEXCOMM2", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRG_to_FLEXCOMM2", - "location": { - "column": "5", - "line": "350", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRG_to_FLEXCOMM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_FLEXCOMM2", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_FLEXCOMM2", - "location": { - "column": "5", - "line": "351", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_FLEXCOMM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO12M_to_FLEXCOMM3", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO12M_to_FLEXCOMM3", - "location": { - "column": "5", - "line": "353", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO12M_to_FLEXCOMM3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_FLEXCOMM3", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_FLEXCOMM3", - "location": { - "column": "5", - "line": "354", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_FLEXCOMM3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_FLEXCOMM3", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_FLEXCOMM3", - "location": { - "column": "5", - "line": "355", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_FLEXCOMM3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMCLK_to_FLEXCOMM3", - "What": "Enumerator", - "defdec": "Def", - "display": "kMCLK_to_FLEXCOMM3", - "location": { - "column": "5", - "line": "356", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMCLK_to_FLEXCOMM3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRG_to_FLEXCOMM3", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRG_to_FLEXCOMM3", - "location": { - "column": "5", - "line": "357", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRG_to_FLEXCOMM3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_FLEXCOMM3", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_FLEXCOMM3", - "location": { - "column": "5", - "line": "358", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_FLEXCOMM3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO12M_to_FLEXCOMM4", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO12M_to_FLEXCOMM4", - "location": { - "column": "5", - "line": "360", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO12M_to_FLEXCOMM4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_FLEXCOMM4", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_FLEXCOMM4", - "location": { - "column": "5", - "line": "361", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_FLEXCOMM4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_FLEXCOMM4", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_FLEXCOMM4", - "location": { - "column": "5", - "line": "362", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_FLEXCOMM4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMCLK_to_FLEXCOMM4", - "What": "Enumerator", - "defdec": "Def", - "display": "kMCLK_to_FLEXCOMM4", - "location": { - "column": "5", - "line": "363", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMCLK_to_FLEXCOMM4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRG_to_FLEXCOMM4", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRG_to_FLEXCOMM4", - "location": { - "column": "5", - "line": "364", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRG_to_FLEXCOMM4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_FLEXCOMM4", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_FLEXCOMM4", - "location": { - "column": "5", - "line": "365", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_FLEXCOMM4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO12M_to_FLEXCOMM5", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO12M_to_FLEXCOMM5", - "location": { - "column": "5", - "line": "367", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO12M_to_FLEXCOMM5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_FLEXCOMM5", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_FLEXCOMM5", - "location": { - "column": "5", - "line": "368", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_FLEXCOMM5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_FLEXCOMM5", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_FLEXCOMM5", - "location": { - "column": "5", - "line": "369", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_FLEXCOMM5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMCLK_to_FLEXCOMM5", - "What": "Enumerator", - "defdec": "Def", - "display": "kMCLK_to_FLEXCOMM5", - "location": { - "column": "5", - "line": "370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMCLK_to_FLEXCOMM5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRG_to_FLEXCOMM5", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRG_to_FLEXCOMM5", - "location": { - "column": "5", - "line": "371", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRG_to_FLEXCOMM5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_FLEXCOMM5", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_FLEXCOMM5", - "location": { - "column": "5", - "line": "372", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_FLEXCOMM5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO12M_to_FLEXCOMM6", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO12M_to_FLEXCOMM6", - "location": { - "column": "5", - "line": "374", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO12M_to_FLEXCOMM6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_FLEXCOMM6", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_FLEXCOMM6", - "location": { - "column": "5", - "line": "375", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_FLEXCOMM6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_FLEXCOMM6", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_FLEXCOMM6", - "location": { - "column": "5", - "line": "376", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_FLEXCOMM6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMCLK_to_FLEXCOMM6", - "What": "Enumerator", - "defdec": "Def", - "display": "kMCLK_to_FLEXCOMM6", - "location": { - "column": "5", - "line": "377", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMCLK_to_FLEXCOMM6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRG_to_FLEXCOMM6", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRG_to_FLEXCOMM6", - "location": { - "column": "5", - "line": "378", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRG_to_FLEXCOMM6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_FLEXCOMM6", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_FLEXCOMM6", - "location": { - "column": "5", - "line": "379", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_FLEXCOMM6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO12M_to_FLEXCOMM7", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO12M_to_FLEXCOMM7", - "location": { - "column": "5", - "line": "381", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO12M_to_FLEXCOMM7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_FLEXCOMM7", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_FLEXCOMM7", - "location": { - "column": "5", - "line": "382", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_FLEXCOMM7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_FLEXCOMM7", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_FLEXCOMM7", - "location": { - "column": "5", - "line": "383", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_FLEXCOMM7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMCLK_to_FLEXCOMM7", - "What": "Enumerator", - "defdec": "Def", - "display": "kMCLK_to_FLEXCOMM7", - "location": { - "column": "5", - "line": "384", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMCLK_to_FLEXCOMM7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRG_to_FLEXCOMM7", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRG_to_FLEXCOMM7", - "location": { - "column": "5", - "line": "385", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRG_to_FLEXCOMM7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_FLEXCOMM7", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_FLEXCOMM7", - "location": { - "column": "5", - "line": "386", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_FLEXCOMM7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMAIN_CLK_to_FRG", - "What": "Enumerator", - "defdec": "Def", - "display": "kMAIN_CLK_to_FRG", - "location": { - "column": "5", - "line": "388", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMAIN_CLK_to_FRG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_FRG", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_FRG", - "location": { - "column": "5", - "line": "389", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_FRG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO12M_to_FRG", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO12M_to_FRG", - "location": { - "column": "5", - "line": "390", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO12M_to_FRG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_FRG", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_FRG", - "location": { - "column": "5", - "line": "391", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_FRG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_FRG", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_FRG", - "location": { - "column": "5", - "line": "392", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_FRG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_MCLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_MCLK", - "location": { - "column": "5", - "line": "394", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_MCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_MCLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_MCLK", - "location": { - "column": "5", - "line": "395", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_MCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMAIN_CLK_to_MCLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kMAIN_CLK_to_MCLK", - "location": { - "column": "5", - "line": "396", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMAIN_CLK_to_MCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_MCLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_MCLK", - "location": { - "column": "5", - "line": "397", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_MCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_USB_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_USB_CLK", - "location": { - "column": "5", - "line": "399", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_USB_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_USB_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_USB_CLK", - "location": { - "column": "5", - "line": "400", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_USB_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMAIN_CLK_to_USB_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kMAIN_CLK_to_USB_CLK", - "location": { - "column": "5", - "line": "401", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMAIN_CLK_to_USB_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_USB_CLK", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_USB_CLK", - "location": { - "column": "5", - "line": "402", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_USB_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kMAIN_CLK_to_CLKOUT", - "What": "Enumerator", - "defdec": "Def", - "display": "kMAIN_CLK_to_CLKOUT", - "location": { - "column": "5", - "line": "404", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kMAIN_CLK_to_CLKOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kEXT_CLK_to_CLKOUT", - "What": "Enumerator", - "defdec": "Def", - "display": "kEXT_CLK_to_CLKOUT", - "location": { - "column": "5", - "line": "405", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kEXT_CLK_to_CLKOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kWDT_OSC_to_CLKOUT", - "What": "Enumerator", - "defdec": "Def", - "display": "kWDT_OSC_to_CLKOUT", - "location": { - "column": "5", - "line": "406", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kWDT_OSC_to_CLKOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO_HF_to_CLKOUT", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO_HF_to_CLKOUT", - "location": { - "column": "5", - "line": "407", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO_HF_to_CLKOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kSYS_PLL_to_CLKOUT", - "What": "Enumerator", - "defdec": "Def", - "display": "kSYS_PLL_to_CLKOUT", - "location": { - "column": "5", - "line": "408", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSYS_PLL_to_CLKOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kFRO12M_to_CLKOUT", - "What": "Enumerator", - "defdec": "Def", - "display": "kFRO12M_to_CLKOUT", - "location": { - "column": "5", - "line": "409", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kFRO12M_to_CLKOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kOSC32K_to_CLKOUT", - "What": "Enumerator", - "defdec": "Def", - "display": "kOSC32K_to_CLKOUT", - "location": { - "column": "5", - "line": "410", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kOSC32K_to_CLKOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_CLKOUT", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_CLKOUT", - "location": { - "column": "5", - "line": "411", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_CLKOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_attach_id@kNONE_to_NONE", - "What": "Enumerator", - "defdec": "Def", - "display": "kNONE_to_NONE", - "location": { - "column": "5", - "line": "412", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kNONE_to_NONE", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "308", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "_clock_attach_id", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@T@clock_attach_id_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _clock_attach_id", - "location": { - "column": "3", - "line": "413", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "clock_attach_id_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_div_name", - "What": "Enum", - "defdec": "Def", - "display": "_clock_div_name", - "fields": [ - { - "ID": "c:@E@_clock_div_name@kCLOCK_DivSystickClk", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_DivSystickClk", - "location": { - "column": "5", - "line": "418", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_DivSystickClk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_div_name@kCLOCK_DivTraceClk", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_DivTraceClk", - "location": { - "column": "5", - "line": "419", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_DivTraceClk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_div_name@kCLOCK_DivAhbClk", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_DivAhbClk", - "location": { - "column": "5", - "line": "420", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_DivAhbClk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_div_name@kCLOCK_DivClkOut", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_DivClkOut", - "location": { - "column": "5", - "line": "421", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_DivClkOut", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_div_name@kCLOCK_DivAdcAsyncClk", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_DivAdcAsyncClk", - "location": { - "column": "5", - "line": "422", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_DivAdcAsyncClk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_div_name@kCLOCK_DivUsbClk", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_DivUsbClk", - "location": { - "column": "5", - "line": "423", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_DivUsbClk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_div_name@kCLOCK_DivFrg", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_DivFrg", - "location": { - "column": "5", - "line": "424", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_DivFrg", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_div_name@kCLOCK_DivFxI2s0MClk", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_DivFxI2s0MClk", - "location": { - "column": "5", - "line": "425", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_DivFxI2s0MClk", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "416", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "_clock_div_name", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@T@clock_div_name_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _clock_div_name", - "location": { - "column": "3", - "line": "426", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "clock_div_name_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@F@CLOCK_EnableClock", - "What": "Function", - "defdec": "Def", - "display": "void CLOCK_EnableClock(clock_ip_name_t)", - "location": { - "column": "20", - "line": "436", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_EnableClock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@19405@F@CLOCK_EnableClock@index", - "What": "Variable", - "defdec": "Def", - "display": "index", - "location": { - "column": "14", - "line": "438", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "index", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@F@CLOCK_DisableClock", - "What": "Function", - "defdec": "Def", - "display": "void CLOCK_DisableClock(clock_ip_name_t)", - "location": { - "column": "20", - "line": "449", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_DisableClock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@19758@F@CLOCK_DisableClock@index", - "What": "Variable", - "defdec": "Def", - "display": "index", - "location": { - "column": "14", - "line": "451", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "index", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_flashtim", - "What": "Enum", - "defdec": "Def", - "display": "_clock_flashtim", - "fields": [ - { - "ID": "c:@E@_clock_flashtim@kCLOCK_Flash1Cycle", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flash1Cycle", - "location": { - "column": "5", - "line": "466", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flash1Cycle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_flashtim@kCLOCK_Flash2Cycle", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flash2Cycle", - "location": { - "column": "5", - "line": "467", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flash2Cycle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_flashtim@kCLOCK_Flash3Cycle", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flash3Cycle", - "location": { - "column": "5", - "line": "468", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flash3Cycle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_flashtim@kCLOCK_Flash4Cycle", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flash4Cycle", - "location": { - "column": "5", - "line": "469", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flash4Cycle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_flashtim@kCLOCK_Flash5Cycle", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flash5Cycle", - "location": { - "column": "5", - "line": "470", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flash5Cycle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_flashtim@kCLOCK_Flash6Cycle", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_Flash6Cycle", - "location": { - "column": "5", - "line": "471", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_Flash6Cycle", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "464", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "_clock_flashtim", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@T@clock_flashtim_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _clock_flashtim", - "location": { - "column": "3", - "line": "472", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "clock_flashtim_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@F@CLOCK_SetFLASHAccessCycles", - "What": "Function", - "defdec": "Def", - "display": "void CLOCK_SetFLASHAccessCycles(clock_flashtim_t)", - "location": { - "column": "20", - "line": "479", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetFLASHAccessCycles", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@20767@F@CLOCK_SetFLASHAccessCycles@tmp", - "What": "Variable", - "defdec": "Def", - "display": "tmp", - "location": { - "column": "14", - "line": "481", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "tmp", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetupFROClocking", - "What": "Function", - "defdec": "Dec", - "display": "status_t CLOCK_SetupFROClocking(uint32_t)", - "location": { - "column": "10", - "line": "496", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetupFROClocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetupFROClocking", - "What": "Function", - "defdec": "Dec", - "display": "status_t CLOCK_SetupFROClocking(uint32_t)", - "location": { - "column": "10", - "line": "496", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetupFROClocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_AttachClk", - "What": "Function", - "defdec": "Dec", - "display": "void CLOCK_AttachClk(clock_attach_id_t)", - "location": { - "column": "6", - "line": "502", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_AttachClk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_AttachClk", - "What": "Function", - "defdec": "Dec", - "display": "void CLOCK_AttachClk(clock_attach_id_t)", - "location": { - "column": "6", - "line": "502", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_AttachClk", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetClockAttachId", - "What": "Function", - "defdec": "Dec", - "display": "clock_attach_id_t CLOCK_GetClockAttachId(clock_attach_id_t)", - "location": { - "column": "19", - "line": "510", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetClockAttachId", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetClockAttachId", - "What": "Function", - "defdec": "Dec", - "display": "clock_attach_id_t CLOCK_GetClockAttachId(clock_attach_id_t)", - "location": { - "column": "19", - "line": "510", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetClockAttachId", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetClkDiv", - "What": "Function", - "defdec": "Dec", - "display": "void CLOCK_SetClkDiv(clock_div_name_t, uint32_t, bool)", - "location": { - "column": "6", - "line": "518", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetClkDiv", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetClkDiv", - "What": "Function", - "defdec": "Dec", - "display": "void CLOCK_SetClkDiv(clock_div_name_t, uint32_t, bool)", - "location": { - "column": "6", - "line": "518", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetClkDiv", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetFLASHAccessCyclesForFreq", - "What": "Function", - "defdec": "Dec", - "display": "void CLOCK_SetFLASHAccessCyclesForFreq(uint32_t)", - "location": { - "column": "6", - "line": "524", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetFLASHAccessCyclesForFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetFLASHAccessCyclesForFreq", - "What": "Function", - "defdec": "Dec", - "display": "void CLOCK_SetFLASHAccessCyclesForFreq(uint32_t)", - "location": { - "column": "6", - "line": "524", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetFLASHAccessCyclesForFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetFreq(clock_name_t)", - "location": { - "column": "10", - "line": "528", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetFreq(clock_name_t)", - "location": { - "column": "10", - "line": "528", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFRGInputClock", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetFRGInputClock(void)", - "location": { - "column": "10", - "line": "533", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetFRGInputClock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFRGInputClock", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetFRGInputClock(void)", - "location": { - "column": "10", - "line": "533", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetFRGInputClock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetFRGClock", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_SetFRGClock(uint32_t)", - "location": { - "column": "10", - "line": "539", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetFRGClock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetFRGClock", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_SetFRGClock(uint32_t)", - "location": { - "column": "10", - "line": "539", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetFRGClock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFro12MFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetFro12MFreq(void)", - "location": { - "column": "10", - "line": "544", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetFro12MFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFro12MFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetFro12MFreq(void)", - "location": { - "column": "10", - "line": "544", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetFro12MFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetExtClkFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetExtClkFreq(void)", - "location": { - "column": "10", - "line": "548", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetExtClkFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetExtClkFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetExtClkFreq(void)", - "location": { - "column": "10", - "line": "548", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetExtClkFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetWdtOscFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetWdtOscFreq(void)", - "location": { - "column": "10", - "line": "552", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetWdtOscFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetWdtOscFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetWdtOscFreq(void)", - "location": { - "column": "10", - "line": "552", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetWdtOscFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFroHfFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetFroHfFreq(void)", - "location": { - "column": "10", - "line": "556", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetFroHfFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFroHfFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetFroHfFreq(void)", - "location": { - "column": "10", - "line": "556", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetFroHfFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetPllOutFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetPllOutFreq(void)", - "location": { - "column": "10", - "line": "560", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetPllOutFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetPllOutFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetPllOutFreq(void)", - "location": { - "column": "10", - "line": "560", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetPllOutFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetOsc32KFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetOsc32KFreq(void)", - "location": { - "column": "10", - "line": "564", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetOsc32KFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetOsc32KFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetOsc32KFreq(void)", - "location": { - "column": "10", - "line": "564", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetOsc32KFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetCoreSysClkFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetCoreSysClkFreq(void)", - "location": { - "column": "10", - "line": "568", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetCoreSysClkFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetCoreSysClkFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetCoreSysClkFreq(void)", - "location": { - "column": "10", - "line": "568", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetCoreSysClkFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetI2SMClkFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetI2SMClkFreq(void)", - "location": { - "column": "10", - "line": "572", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetI2SMClkFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetI2SMClkFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetI2SMClkFreq(void)", - "location": { - "column": "10", - "line": "572", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetI2SMClkFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFlexCommClkFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetFlexCommClkFreq(uint32_t)", - "location": { - "column": "10", - "line": "576", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetFlexCommClkFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFlexCommClkFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetFlexCommClkFreq(uint32_t)", - "location": { - "column": "10", - "line": "576", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetFlexCommClkFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetAdcClkFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetAdcClkFreq(void)", - "location": { - "column": "10", - "line": "580", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetAdcClkFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetAdcClkFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetAdcClkFreq(void)", - "location": { - "column": "10", - "line": "580", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetAdcClkFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@F@CLOCK_GetAsyncApbClkSrc", - "What": "Function", - "defdec": "Def", - "display": "async_clock_src_t CLOCK_GetAsyncApbClkSrc(void)", - "location": { - "column": "35", - "line": "584", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetAsyncApbClkSrc", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetAsyncApbClkFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetAsyncApbClkFreq(void)", - "location": { - "column": "10", - "line": "591", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetAsyncApbClkFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetAsyncApbClkFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetAsyncApbClkFreq(void)", - "location": { - "column": "10", - "line": "591", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetAsyncApbClkFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetSystemPLLInClockRate", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetSystemPLLInClockRate(void)", - "location": { - "column": "10", - "line": "595", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetSystemPLLInClockRate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetSystemPLLInClockRate", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetSystemPLLInClockRate(void)", - "location": { - "column": "10", - "line": "595", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetSystemPLLInClockRate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetSystemPLLOutClockRate", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetSystemPLLOutClockRate(bool)", - "location": { - "column": "10", - "line": "604", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetSystemPLLOutClockRate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetSystemPLLOutClockRate", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetSystemPLLOutClockRate(bool)", - "location": { - "column": "10", - "line": "604", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetSystemPLLOutClockRate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@F@CLOCK_SetBypassPLL", - "What": "Function", - "defdec": "Def", - "display": "void CLOCK_SetBypassPLL(bool)", - "location": { - "column": "22", - "line": "610", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetBypassPLL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@F@CLOCK_IsSystemPLLLocked", - "What": "Function", - "defdec": "Def", - "display": "bool CLOCK_IsSystemPLLLocked(void)", - "location": { - "column": "22", - "line": "625", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_IsSystemPLLLocked", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetStoredPLLClockRate", - "What": "Function", - "defdec": "Dec", - "display": "void CLOCK_SetStoredPLLClockRate(uint32_t)", - "location": { - "column": "6", - "line": "634", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetStoredPLLClockRate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetStoredPLLClockRate", - "What": "Function", - "defdec": "Dec", - "display": "void CLOCK_SetStoredPLLClockRate(uint32_t)", - "location": { - "column": "6", - "line": "634", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetStoredPLLClockRate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@26965@macro@PLL_CONFIGFLAG_USEINRATE", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_CONFIGFLAG_USEINRATE", - "location": { - "column": "9", - "line": "650", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "PLL_CONFIGFLAG_USEINRATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@27079@macro@PLL_CONFIGFLAG_FORCENOFRACT", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_CONFIGFLAG_FORCENOFRACT", - "location": { - "column": "9", - "line": "651", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "PLL_CONFIGFLAG_FORCENOFRACT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmodfm", - "What": "Enum", - "defdec": "Def", - "display": "_ss_progmodfm", - "fields": [ - { - "ID": "c:@E@_ss_progmodfm@kSS_MF_512", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MF_512", - "location": { - "column": "5", - "line": "666", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MF_512", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmodfm@kSS_MF_384", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MF_384", - "location": { - "column": "5", - "line": "667", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MF_384", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmodfm@kSS_MF_256", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MF_256", - "location": { - "column": "5", - "line": "668", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MF_256", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmodfm@kSS_MF_128", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MF_128", - "location": { - "column": "5", - "line": "669", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MF_128", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmodfm@kSS_MF_64", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MF_64", - "location": { - "column": "5", - "line": "670", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MF_64", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmodfm@kSS_MF_32", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MF_32", - "location": { - "column": "5", - "line": "671", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MF_32", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmodfm@kSS_MF_24", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MF_24", - "location": { - "column": "5", - "line": "672", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MF_24", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmodfm@kSS_MF_16", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MF_16", - "location": { - "column": "5", - "line": "673", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MF_16", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "664", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "_ss_progmodfm", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@T@ss_progmodfm_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _ss_progmodfm", - "location": { - "column": "3", - "line": "674", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "ss_progmodfm_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmoddp", - "What": "Enum", - "defdec": "Def", - "display": "_ss_progmoddp", - "fields": [ - { - "ID": "c:@E@_ss_progmoddp@kSS_MR_K0", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MR_K0", - "location": { - "column": "5", - "line": "681", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MR_K0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmoddp@kSS_MR_K1", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MR_K1", - "location": { - "column": "5", - "line": "682", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MR_K1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmoddp@kSS_MR_K1_5", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MR_K1_5", - "location": { - "column": "5", - "line": "683", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MR_K1_5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmoddp@kSS_MR_K2", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MR_K2", - "location": { - "column": "5", - "line": "684", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MR_K2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmoddp@kSS_MR_K3", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MR_K3", - "location": { - "column": "5", - "line": "685", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MR_K3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmoddp@kSS_MR_K4", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MR_K4", - "location": { - "column": "5", - "line": "686", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MR_K4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmoddp@kSS_MR_K6", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MR_K6", - "location": { - "column": "5", - "line": "687", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MR_K6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_progmoddp@kSS_MR_K8", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MR_K8", - "location": { - "column": "5", - "line": "688", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MR_K8", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "679", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "_ss_progmoddp", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@T@ss_progmoddp_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _ss_progmoddp", - "location": { - "column": "3", - "line": "689", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "ss_progmoddp_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_modwvctrl", - "What": "Enum", - "defdec": "Def", - "display": "_ss_modwvctrl", - "fields": [ - { - "ID": "c:@E@_ss_modwvctrl@kSS_MC_NOC", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MC_NOC", - "location": { - "column": "5", - "line": "698", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MC_NOC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_modwvctrl@kSS_MC_RECC", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MC_RECC", - "location": { - "column": "5", - "line": "699", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MC_RECC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ss_modwvctrl@kSS_MC_MAXC", - "What": "Enumerator", - "defdec": "Def", - "display": "kSS_MC_MAXC", - "location": { - "column": "5", - "line": "700", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kSS_MC_MAXC", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "696", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "_ss_modwvctrl", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@T@ss_modwvctrl_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _ss_modwvctrl", - "location": { - "column": "3", - "line": "701", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "ss_modwvctrl_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_pll_config", - "What": "Struct", - "defdec": "Def", - "display": "_pll_config", - "location": { - "column": "16", - "line": "709", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "members": [ - { - "ID": "c:@S@_pll_config@FI@desiredRate", - "What": "FieldDecl", - "defdec": "Def", - "display": "desiredRate", - "location": { - "column": "14", - "line": "711", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "desiredRate", - "origin": "user_include", - "scope": "_pll_config" - }, - { - "ID": "c:@S@_pll_config@FI@inputRate", - "What": "FieldDecl", - "defdec": "Def", - "display": "inputRate", - "location": { - "column": "14", - "line": "712", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "inputRate", - "origin": "user_include", - "scope": "_pll_config" - }, - { - "ID": "c:@S@_pll_config@FI@flags", - "What": "FieldDecl", - "defdec": "Def", - "display": "flags", - "location": { - "column": "14", - "line": "713", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "flags", - "origin": "user_include", - "scope": "_pll_config" - }, - { - "ID": "c:@S@_pll_config@FI@ss_mf", - "What": "FieldDecl", - "defdec": "Def", - "display": "ss_mf", - "location": { - "column": "20", - "line": "714", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "ss_mf", - "origin": "user_include", - "scope": "_pll_config" - }, - { - "ID": "c:@S@_pll_config@FI@ss_mr", - "What": "FieldDecl", - "defdec": "Def", - "display": "ss_mr", - "location": { - "column": "20", - "line": "716", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "ss_mr", - "origin": "user_include", - "scope": "_pll_config" - }, - { - "ID": "c:@S@_pll_config@FI@ss_mc", - "What": "FieldDecl", - "defdec": "Def", - "display": "ss_mc", - "location": { - "column": "9", - "line": "719", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "ss_mc", - "origin": "user_include", - "scope": "_pll_config" - }, - { - "ID": "c:@S@_pll_config@FI@mfDither", - "What": "FieldDecl", - "defdec": "Def", - "display": "mfDither", - "location": { - "column": "10", - "line": "720", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "mfDither", - "origin": "user_include", - "scope": "_pll_config" - } - ], - "name": "_pll_config", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@T@pll_config_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _pll_config", - "location": { - "column": "3", - "line": "723", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "pll_config_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@31260@macro@PLL_SETUPFLAG_POWERUP", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SETUPFLAG_POWERUP", - "location": { - "column": "9", - "line": "728", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "PLL_SETUPFLAG_POWERUP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@31356@macro@PLL_SETUPFLAG_WAITLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SETUPFLAG_WAITLOCK", - "location": { - "column": "9", - "line": "729", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "PLL_SETUPFLAG_WAITLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@31477@macro@PLL_SETUPFLAG_ADGVOLT", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SETUPFLAG_ADGVOLT", - "location": { - "column": "9", - "line": "730", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "PLL_SETUPFLAG_ADGVOLT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@31578@macro@PLL_SETUPFLAG_USEFEEDBACKDIV2", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SETUPFLAG_USEFEEDBACKDIV2", - "location": { - "column": "9", - "line": "731", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "PLL_SETUPFLAG_USEFEEDBACKDIV2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_pll_setup", - "What": "Struct", - "defdec": "Def", - "display": "_pll_setup", - "location": { - "column": "16", - "line": "740", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "members": [ - { - "ID": "c:@S@_pll_setup@FI@syspllctrl", - "What": "FieldDecl", - "defdec": "Def", - "display": "syspllctrl", - "location": { - "column": "14", - "line": "742", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "syspllctrl", - "origin": "user_include", - "scope": "_pll_setup" - }, - { - "ID": "c:@S@_pll_setup@FI@syspllndec", - "What": "FieldDecl", - "defdec": "Def", - "display": "syspllndec", - "location": { - "column": "14", - "line": "743", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "syspllndec", - "origin": "user_include", - "scope": "_pll_setup" - }, - { - "ID": "c:@S@_pll_setup@FI@syspllpdec", - "What": "FieldDecl", - "defdec": "Def", - "display": "syspllpdec", - "location": { - "column": "14", - "line": "744", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "syspllpdec", - "origin": "user_include", - "scope": "_pll_setup" - }, - { - "ID": "c:@S@_pll_setup@FI@syspllssctrl", - "What": "FieldDecl", - "defdec": "Def", - "display": "syspllssctrl", - "location": { - "column": "14", - "line": "745", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "syspllssctrl", - "origin": "user_include", - "scope": "_pll_setup" - }, - { - "ID": "c:@S@_pll_setup@FI@pllRate", - "What": "FieldDecl", - "defdec": "Def", - "display": "pllRate", - "location": { - "column": "14", - "line": "746", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "pllRate", - "origin": "user_include", - "scope": "_pll_setup" - }, - { - "ID": "c:@S@_pll_setup@FI@flags", - "What": "FieldDecl", - "defdec": "Def", - "display": "flags", - "location": { - "column": "14", - "line": "747", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "flags", - "origin": "user_include", - "scope": "_pll_setup" - } - ], - "name": "_pll_setup", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@T@pll_setup_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _pll_setup", - "location": { - "column": "3", - "line": "748", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "pll_setup_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pll_error", - "What": "Enum", - "defdec": "Def", - "display": "_pll_error", - "fields": [ - { - "ID": "c:@E@_pll_error@kStatus_PLL_Success", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_PLL_Success", - "location": { - "column": "5", - "line": "754", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kStatus_PLL_Success", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pll_error@kStatus_PLL_OutputTooLow", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_PLL_OutputTooLow", - "location": { - "column": "5", - "line": "755", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kStatus_PLL_OutputTooLow", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pll_error@kStatus_PLL_OutputTooHigh", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_PLL_OutputTooHigh", - "location": { - "column": "5", - "line": "756", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kStatus_PLL_OutputTooHigh", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pll_error@kStatus_PLL_InputTooLow", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_PLL_InputTooLow", - "location": { - "column": "5", - "line": "757", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kStatus_PLL_InputTooLow", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pll_error@kStatus_PLL_InputTooHigh", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_PLL_InputTooHigh", - "location": { - "column": "5", - "line": "758", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kStatus_PLL_InputTooHigh", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pll_error@kStatus_PLL_OutsideIntLimit", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_PLL_OutsideIntLimit", - "location": { - "column": "5", - "line": "759", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kStatus_PLL_OutsideIntLimit", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "752", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "_pll_error", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@T@pll_error_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _pll_error", - "location": { - "column": "3", - "line": "760", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "pll_error_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_usb_src", - "What": "Enum", - "defdec": "Def", - "display": "_clock_usb_src", - "fields": [ - { - "ID": "c:@E@_clock_usb_src@kCLOCK_UsbSrcFro", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_UsbSrcFro", - "location": { - "column": "5", - "line": "765", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_UsbSrcFro", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_usb_src@kCLOCK_UsbSrcSystemPll", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_UsbSrcSystemPll", - "location": { - "column": "5", - "line": "766", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_UsbSrcSystemPll", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_usb_src@kCLOCK_UsbSrcMainClock", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_UsbSrcMainClock", - "location": { - "column": "5", - "line": "767", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_UsbSrcMainClock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_clock_usb_src@kCLOCK_UsbSrcNone", - "What": "Enumerator", - "defdec": "Def", - "display": "kCLOCK_UsbSrcNone", - "location": { - "column": "5", - "line": "768", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "kCLOCK_UsbSrcNone", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "763", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "_clock_usb_src", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@T@clock_usb_src_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _clock_usb_src", - "location": { - "column": "3", - "line": "770", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "clock_usb_src_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetSystemPLLOutFromSetup", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetSystemPLLOutFromSetup(pll_setup_t *)", - "location": { - "column": "10", - "line": "776", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetSystemPLLOutFromSetup", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetSystemPLLOutFromSetup", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CLOCK_GetSystemPLLOutFromSetup(pll_setup_t *)", - "location": { - "column": "10", - "line": "776", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_GetSystemPLLOutFromSetup", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetupPLLData", - "What": "Function", - "defdec": "Dec", - "display": "pll_error_t CLOCK_SetupPLLData(pll_config_t *, pll_setup_t *)", - "location": { - "column": "13", - "line": "785", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetupPLLData", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetupPLLData", - "What": "Function", - "defdec": "Dec", - "display": "pll_error_t CLOCK_SetupPLLData(pll_config_t *, pll_setup_t *)", - "location": { - "column": "13", - "line": "785", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetupPLLData", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetupSystemPLLPrec", - "What": "Function", - "defdec": "Dec", - "display": "pll_error_t CLOCK_SetupSystemPLLPrec(pll_setup_t *, uint32_t)", - "location": { - "column": "13", - "line": "797", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetupSystemPLLPrec", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetupSystemPLLPrec", - "What": "Function", - "defdec": "Dec", - "display": "pll_error_t CLOCK_SetupSystemPLLPrec(pll_setup_t *, uint32_t)", - "location": { - "column": "13", - "line": "797", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetupSystemPLLPrec", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetPLLFreq", - "What": "Function", - "defdec": "Dec", - "display": "pll_error_t CLOCK_SetPLLFreq(const pll_setup_t *)", - "location": { - "column": "13", - "line": "809", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetPLLFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetPLLFreq", - "What": "Function", - "defdec": "Dec", - "display": "pll_error_t CLOCK_SetPLLFreq(const pll_setup_t *)", - "location": { - "column": "13", - "line": "809", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetPLLFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetupSystemPLLMult", - "What": "Function", - "defdec": "Dec", - "display": "void CLOCK_SetupSystemPLLMult(uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "822", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetupSystemPLLMult", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetupSystemPLLMult", - "What": "Function", - "defdec": "Dec", - "display": "void CLOCK_SetupSystemPLLMult(uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "822", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_SetupSystemPLLMult", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.h@F@CLOCK_DisableUsbfs0Clock", - "What": "Function", - "defdec": "Def", - "display": "void CLOCK_DisableUsbfs0Clock(void)", - "location": { - "column": "20", - "line": "828", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_DisableUsbfs0Clock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_EnableUsbfs0Clock", - "What": "Function", - "defdec": "Dec", - "display": "bool CLOCK_EnableUsbfs0Clock(clock_usb_src_t, uint32_t)", - "location": { - "column": "6", - "line": "832", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_EnableUsbfs0Clock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CLOCK_EnableUsbfs0Clock", - "What": "Function", - "defdec": "Dec", - "display": "bool CLOCK_EnableUsbfs0Clock(clock_usb_src_t, uint32_t)", - "location": { - "column": "6", - "line": "832", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "CLOCK_EnableUsbfs0Clock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SDK_DelayAtLeastUs", - "What": "Function", - "defdec": "Dec", - "display": "void SDK_DelayAtLeastUs(uint32_t)", - "location": { - "column": "6", - "line": "842", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "SDK_DelayAtLeastUs", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SDK_DelayAtLeastUs", - "What": "Function", - "defdec": "Dec", - "display": "void SDK_DelayAtLeastUs(uint32_t)", - "location": { - "column": "6", - "line": "842", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.h" - }, - "name": "SDK_DelayAtLeastUs", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@191@macro@_BOARD_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_BOARD_H_", - "location": { - "column": "9", - "line": "10", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "_BOARD_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@499@macro@BOARD_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_NAME", - "location": { - "column": "9", - "line": "20", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@539@macro@BOARD_EXTCLKINRATE", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_EXTCLKINRATE", - "location": { - "column": "9", - "line": "22", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_EXTCLKINRATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@624@macro@BOARD_DEBUG_UART_TYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_TYPE", - "location": { - "column": "9", - "line": "25", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_DEBUG_UART_TYPE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@672@macro@BOARD_DEBUG_UART_BASEADDR", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_BASEADDR", - "location": { - "column": "9", - "line": "26", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_DEBUG_UART_BASEADDR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@725@macro@BOARD_DEBUG_UART_INSTANCE", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_INSTANCE", - "location": { - "column": "9", - "line": "27", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_DEBUG_UART_INSTANCE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@763@macro@BOARD_DEBUG_UART_CLK_FREQ", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_CLK_FREQ", - "location": { - "column": "9", - "line": "28", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_DEBUG_UART_CLK_FREQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@830@macro@BOARD_DEBUG_UART_CLK_ATTACH", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_CLK_ATTACH", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_DEBUG_UART_CLK_ATTACH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@888@macro@BOARD_DEBUG_UART_RST", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_RST", - "location": { - "column": "9", - "line": "30", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_DEBUG_UART_RST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@938@macro@BOARD_UART_IRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_UART_IRQ", - "location": { - "column": "9", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_UART_IRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@977@macro@BOARD_UART_IRQ_HANDLER", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_UART_IRQ_HANDLER", - "location": { - "column": "9", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_UART_IRQ_HANDLER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1032@macro@BOARD_DEBUG_SPI_CLK_FREQ", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_SPI_CLK_FREQ", - "location": { - "column": "9", - "line": "34", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_DEBUG_SPI_CLK_FREQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1112@macro@BOARD_DEBUG_UART_BAUDRATE", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_BAUDRATE", - "location": { - "column": "9", - "line": "37", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_DEBUG_UART_BAUDRATE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1224@macro@BOARD_LED_RED_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_RED_GPIO", - "location": { - "column": "9", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_LED_RED_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1265@macro@BOARD_LED_RED_GPIO_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_RED_GPIO_PORT", - "location": { - "column": "9", - "line": "43", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_LED_RED_GPIO_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1333@macro@BOARD_LED_RED_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_RED_GPIO_PIN", - "location": { - "column": "9", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_LED_RED_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1407@macro@BOARD_LED_GREEN_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_GREEN_GPIO", - "location": { - "column": "9", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_LED_GREEN_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1450@macro@BOARD_LED_GREEN_GPIO_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_GREEN_GPIO_PORT", - "location": { - "column": "9", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_LED_GREEN_GPIO_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1522@macro@BOARD_LED_GREEN_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_GREEN_GPIO_PIN", - "location": { - "column": "9", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_LED_GREEN_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1597@macro@BOARD_LED_BLUE_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_BLUE_GPIO", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_LED_BLUE_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1639@macro@BOARD_LED_BLUE_GPIO_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_BLUE_GPIO_PORT", - "location": { - "column": "9", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_LED_BLUE_GPIO_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1709@macro@BOARD_LED_BLUE_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_BLUE_GPIO_PIN", - "location": { - "column": "9", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_LED_BLUE_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1779@macro@BOARD_SW1_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW1_GPIO", - "location": { - "column": "9", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW1_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1816@macro@BOARD_SW1_GPIO_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW1_GPIO_PORT", - "location": { - "column": "9", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW1_GPIO_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1876@macro@BOARD_SW1_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW1_GPIO_PIN", - "location": { - "column": "9", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW1_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1916@macro@BOARD_SW1_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW1_NAME", - "location": { - "column": "9", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW1_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1946@macro@BOARD_SW3_IRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_IRQ", - "location": { - "column": "9", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW3_IRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@1983@macro@BOARD_SW3_IRQ_HANDLER", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_IRQ_HANDLER", - "location": { - "column": "9", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW3_IRQ_HANDLER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2060@macro@BOARD_SW2_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW2_GPIO", - "location": { - "column": "9", - "line": "74", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW2_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2097@macro@BOARD_SW2_GPIO_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW2_GPIO_PORT", - "location": { - "column": "9", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW2_GPIO_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2157@macro@BOARD_SW2_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW2_GPIO_PIN", - "location": { - "column": "9", - "line": "78", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW2_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2197@macro@BOARD_SW2_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW2_NAME", - "location": { - "column": "9", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW2_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2227@macro@BOARD_SW3_IRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_IRQ", - "location": { - "column": "9", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW3_IRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2264@macro@BOARD_SW3_IRQ_HANDLER", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_IRQ_HANDLER", - "location": { - "column": "9", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW3_IRQ_HANDLER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2341@macro@BOARD_SW3_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_GPIO", - "location": { - "column": "9", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW3_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2378@macro@BOARD_SW3_GPIO_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_GPIO_PORT", - "location": { - "column": "9", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW3_GPIO_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2438@macro@BOARD_SW3_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_GPIO_PIN", - "location": { - "column": "9", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW3_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2477@macro@BOARD_SW3_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_NAME", - "location": { - "column": "9", - "line": "91", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW3_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2507@macro@BOARD_SW3_IRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_IRQ", - "location": { - "column": "9", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW3_IRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2544@macro@BOARD_SW3_IRQ_HANDLER", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_IRQ_HANDLER", - "location": { - "column": "9", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW3_IRQ_HANDLER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2595@macro@BOARD_SW3_GPIO_PININT_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_GPIO_PININT_INDEX", - "location": { - "column": "9", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_SW3_GPIO_PININT_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2636@macro@BOARD_ARDUINO_INT_IRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_ARDUINO_INT_IRQ", - "location": { - "column": "9", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_ARDUINO_INT_IRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2680@macro@BOARD_ARDUINO_I2C_IRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_ARDUINO_I2C_IRQ", - "location": { - "column": "9", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_ARDUINO_I2C_IRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2728@macro@BOARD_ARDUINO_I2C_INDEX", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_ARDUINO_I2C_INDEX", - "location": { - "column": "9", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_ARDUINO_I2C_INDEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2796@macro@LOGIC_LED_ON", - "What": "MacroDef", - "defdec": "Def", - "display": "LOGIC_LED_ON", - "location": { - "column": "9", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LOGIC_LED_ON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2821@macro@LOGIC_LED_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "LOGIC_LED_OFF", - "location": { - "column": "9", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LOGIC_LED_OFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@2849@macro@LED_RED_INIT", - "What": "MacroDef", - "defdec": "Def", - "display": "LED_RED_INIT", - "location": { - "column": "9", - "line": "103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LED_RED_INIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@3128@macro@LED_RED_ON", - "What": "MacroDef", - "defdec": "Def", - "display": "LED_RED_ON", - "location": { - "column": "9", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LED_RED_ON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@3343@macro@LED_RED_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "LED_RED_OFF", - "location": { - "column": "9", - "line": "109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LED_RED_OFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@3553@macro@LED_RED_TOGGLE", - "What": "MacroDef", - "defdec": "Def", - "display": "LED_RED_TOGGLE", - "location": { - "column": "9", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LED_RED_TOGGLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@3775@macro@LED_GREEN_INIT", - "What": "MacroDef", - "defdec": "Def", - "display": "LED_GREEN_INIT", - "location": { - "column": "9", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LED_GREEN_INIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@4068@macro@LED_GREEN_ON", - "What": "MacroDef", - "defdec": "Def", - "display": "LED_GREEN_ON", - "location": { - "column": "9", - "line": "119", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LED_GREEN_ON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@4295@macro@LED_GREEN_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "LED_GREEN_OFF", - "location": { - "column": "9", - "line": "122", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LED_GREEN_OFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@4517@macro@LED_GREEN_TOGGLE", - "What": "MacroDef", - "defdec": "Def", - "display": "LED_GREEN_TOGGLE", - "location": { - "column": "9", - "line": "125", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LED_GREEN_TOGGLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@4751@macro@LED_BLUE_INIT", - "What": "MacroDef", - "defdec": "Def", - "display": "LED_BLUE_INIT", - "location": { - "column": "9", - "line": "129", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LED_BLUE_INIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@5037@macro@LED_BLUE_ON", - "What": "MacroDef", - "defdec": "Def", - "display": "LED_BLUE_ON", - "location": { - "column": "9", - "line": "132", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LED_BLUE_ON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@5258@macro@LED_BLUE_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "LED_BLUE_OFF", - "location": { - "column": "9", - "line": "135", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LED_BLUE_OFF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:board.h@5474@macro@LED_BLUE_TOGGLE", - "What": "MacroDef", - "defdec": "Def", - "display": "LED_BLUE_TOGGLE", - "location": { - "column": "9", - "line": "138", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "LED_BLUE_TOGGLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitDebugConsole", - "What": "Function", - "defdec": "Dec", - "display": "status_t BOARD_InitDebugConsole(void)", - "location": { - "column": "10", - "line": "150", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_InitDebugConsole", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitDebugConsole", - "What": "Function", - "defdec": "Dec", - "display": "status_t BOARD_InitDebugConsole(void)", - "location": { - "column": "10", - "line": "150", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.h" - }, - "name": "BOARD_InitDebugConsole", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:yvals.h@120@macro@_YVALS", - "What": "MacroDef", - "defdec": "Def", - "display": "_YVALS", - "location": { - "column": "9", - "line": "5", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_YVALS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@223@macro@_GLUE_B", - "What": "MacroDef", - "defdec": "Def", - "display": "_GLUE_B", - "location": { - "column": "9", - "line": "12", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_GLUE_B", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@250@macro@_GLUE", - "What": "MacroDef", - "defdec": "Def", - "display": "_GLUE", - "location": { - "column": "9", - "line": "13", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_GLUE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@285@macro@_GLUE3_B", - "What": "MacroDef", - "defdec": "Def", - "display": "_GLUE3_B", - "location": { - "column": "9", - "line": "15", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_GLUE3_B", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@318@macro@_GLUE3", - "What": "MacroDef", - "defdec": "Def", - "display": "_GLUE3", - "location": { - "column": "9", - "line": "16", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_GLUE3", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@359@macro@_STRINGIFY_B", - "What": "MacroDef", - "defdec": "Def", - "display": "_STRINGIFY_B", - "location": { - "column": "9", - "line": "18", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_STRINGIFY_B", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@387@macro@_STRINGIFY", - "What": "MacroDef", - "defdec": "Def", - "display": "_STRINGIFY", - "location": { - "column": "9", - "line": "19", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_STRINGIFY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@486@macro@_ABINAME", - "What": "MacroDef", - "defdec": "Def", - "display": "_ABINAME", - "location": { - "column": "9", - "line": "22", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_ABINAME", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@552@macro@_CPPLIB_VER", - "What": "MacroDef", - "defdec": "Def", - "display": "_CPPLIB_VER", - "location": { - "column": "9", - "line": "25", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_CPPLIB_VER", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@634@macro@__IAR_SYSTEMS_LIB__", - "What": "MacroDef", - "defdec": "Def", - "display": "__IAR_SYSTEMS_LIB__", - "location": { - "column": "11", - "line": "29", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__IAR_SYSTEMS_LIB__", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@1770@macro@__EFF_NS", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NS", - "location": { - "column": "9", - "line": "62", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@1862@macro@__EFF_NSNW1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NSNW1", - "location": { - "column": "9", - "line": "63", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NSNW1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@1967@macro@__EFF_NE", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NE", - "location": { - "column": "9", - "line": "64", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2046@macro@__EFF_NENR1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENR1", - "location": { - "column": "9", - "line": "65", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENR1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2137@macro@__EFF_NENR1R1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENR1R1", - "location": { - "column": "9", - "line": "66", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENR1R1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2239@macro@__EFF_NENR2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENR2", - "location": { - "column": "9", - "line": "67", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENR2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2330@macro@__EFF_NENR1NW2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENR1NW2", - "location": { - "column": "9", - "line": "68", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENR1NW2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2434@macro@__EFF_NENR1NW2R1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENR1NW2R1", - "location": { - "column": "9", - "line": "69", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENR1NW2R1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2551@macro@__EFF_NENW1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENW1", - "location": { - "column": "9", - "line": "70", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENW1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2643@macro@__EFF_NENW2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENW2", - "location": { - "column": "9", - "line": "71", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENW2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2735@macro@__EFF_NENW2R1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENW2R1", - "location": { - "column": "9", - "line": "72", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENW2R1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2838@macro@__EFF_NENW1NW2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NENW1NW2", - "location": { - "column": "9", - "line": "73", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NENW1NW2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@2932@macro@__EFF_NR1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NR1", - "location": { - "column": "9", - "line": "74", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NR1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3013@macro@__EFF_NR1NW2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NR1NW2", - "location": { - "column": "9", - "line": "75", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NR1NW2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3107@macro@__EFF_NR1NW3", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NR1NW3", - "location": { - "column": "9", - "line": "76", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NR1NW3", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3201@macro@__EFF_NW1", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NW1", - "location": { - "column": "9", - "line": "77", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NW1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3283@macro@__EFF_NW2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NW2", - "location": { - "column": "9", - "line": "78", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NW2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3365@macro@__EFF_NW1NR2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NW1NR2", - "location": { - "column": "9", - "line": "79", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NW1NR2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3459@macro@__EFF_NW1NW2", - "What": "MacroDef", - "defdec": "Def", - "display": "__EFF_NW1NW2", - "location": { - "column": "9", - "line": "80", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__EFF_NW1NW2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3585@macro@__ATTRIBUTES", - "What": "MacroDef", - "defdec": "Def", - "display": "__ATTRIBUTES", - "location": { - "column": "9", - "line": "83", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__ATTRIBUTES", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3642@macro@__ATTRIBUTES_CAN_THROW", - "What": "MacroDef", - "defdec": "Def", - "display": "__ATTRIBUTES_CAN_THROW", - "location": { - "column": "9", - "line": "84", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__ATTRIBUTES_CAN_THROW", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3688@macro@__ATTRIBUTES_NORETURN", - "What": "MacroDef", - "defdec": "Def", - "display": "__ATTRIBUTES_NORETURN", - "location": { - "column": "9", - "line": "85", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__ATTRIBUTES_NORETURN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3756@macro@__ATTRIBUTES_NORETURN_CAN_THROW", - "What": "MacroDef", - "defdec": "Def", - "display": "__ATTRIBUTES_NORETURN_CAN_THROW", - "location": { - "column": "9", - "line": "86", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__ATTRIBUTES_NORETURN_CAN_THROW", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@3991@macro@_EXTERN_C", - "What": "MacroDef", - "defdec": "Def", - "display": "_EXTERN_C", - "location": { - "column": "11", - "line": "95", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_EXTERN_C", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@4012@macro@_EXTERN_C_END", - "What": "MacroDef", - "defdec": "Def", - "display": "_EXTERN_C_END", - "location": { - "column": "11", - "line": "96", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_EXTERN_C_END", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@4037@macro@_GLB", - "What": "MacroDef", - "defdec": "Def", - "display": "_GLB", - "location": { - "column": "11", - "line": "97", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_GLB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@4660@macro@_DLIB_ONLY_C89", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ONLY_C89", - "location": { - "column": "13", - "line": "119", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_DLIB_ONLY_C89", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@4801@macro@_DLIB_ADD_EXTRA_SYMBOLS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ADD_EXTRA_SYMBOLS", - "location": { - "column": "11", - "line": "126", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_DLIB_ADD_EXTRA_SYMBOLS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@4896@macro@__STDC_WANT_LIB_EXT1__", - "What": "MacroDef", - "defdec": "Def", - "display": "__STDC_WANT_LIB_EXT1__", - "location": { - "column": "11", - "line": "131", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__STDC_WANT_LIB_EXT1__", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@5185@macro@__DEPREC", - "What": "MacroDef", - "defdec": "Def", - "display": "__DEPREC", - "location": { - "column": "11", - "line": "140", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__DEPREC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@5213@macro@__DEPREC_ATTRS", - "What": "MacroDef", - "defdec": "Def", - "display": "__DEPREC_ATTRS", - "location": { - "column": "9", - "line": "143", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__DEPREC_ATTRS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@5269@macro@__DEPREC_ATTRS_CAN_THROW", - "What": "MacroDef", - "defdec": "Def", - "display": "__DEPREC_ATTRS_CAN_THROW", - "location": { - "column": "9", - "line": "144", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__DEPREC_ATTRS_CAN_THROW", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@6605@macro@_NOEXCEPT", - "What": "MacroDef", - "defdec": "Def", - "display": "_NOEXCEPT", - "location": { - "column": "11", - "line": "190", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_NOEXCEPT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@6721@macro@_THREAD_LOCAL", - "What": "MacroDef", - "defdec": "Def", - "display": "_THREAD_LOCAL", - "location": { - "column": "15", - "line": "196", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_THREAD_LOCAL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@6850@macro@_Restrict", - "What": "MacroDef", - "defdec": "Def", - "display": "_Restrict", - "location": { - "column": "13", - "line": "201", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_Restrict", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7006@macro@_MBMAX", - "What": "MacroDef", - "defdec": "Def", - "display": "_MBMAX", - "location": { - "column": "9", - "line": "208", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_MBMAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7063@macro@_MAX_EXP_DIG", - "What": "MacroDef", - "defdec": "Def", - "display": "_MAX_EXP_DIG", - "location": { - "column": "9", - "line": "211", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_MAX_EXP_DIG", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7090@macro@_MAX_INT_DIG", - "What": "MacroDef", - "defdec": "Def", - "display": "_MAX_INT_DIG", - "location": { - "column": "9", - "line": "212", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_MAX_INT_DIG", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7118@macro@_MAX_SIG_DIG", - "What": "MacroDef", - "defdec": "Def", - "display": "_MAX_SIG_DIG", - "location": { - "column": "9", - "line": "213", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_MAX_SIG_DIG", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@_Wchart", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "28", - "line": "221", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_Wchart", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@_Wintt", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "28", - "line": "222", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_Wintt", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7564@macro@_WCMIN", - "What": "MacroDef", - "defdec": "Def", - "display": "_WCMIN", - "location": { - "column": "11", - "line": "233", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_WCMIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7585@macro@_WIMIN", - "What": "MacroDef", - "defdec": "Def", - "display": "_WIMIN", - "location": { - "column": "11", - "line": "234", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_WIMIN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7612@macro@_WCMAX", - "What": "MacroDef", - "defdec": "Def", - "display": "_WCMAX", - "location": { - "column": "9", - "line": "236", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_WCMAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7645@macro@_WIMAX", - "What": "MacroDef", - "defdec": "Def", - "display": "_WIMAX", - "location": { - "column": "9", - "line": "237", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_WIMAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@7706@macro@_NULL", - "What": "MacroDef", - "defdec": "Def", - "display": "_NULL", - "location": { - "column": "9", - "line": "240", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_NULL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@_Sizet", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "29", - "line": "243", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_Sizet", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__int8_t", - "What": "Typedef", - "defdec": "Def", - "display": "signed char", - "location": { - "column": "27", - "line": "246", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__int8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__uint8_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned char", - "location": { - "column": "27", - "line": "247", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__uint8_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__int16_t", - "What": "Typedef", - "defdec": "Def", - "display": "short", - "location": { - "column": "28", - "line": "248", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__int16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__uint16_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned short", - "location": { - "column": "28", - "line": "249", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__uint16_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__int32_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "28", - "line": "250", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__int32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__uint32_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "28", - "line": "251", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__uint32_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__int64_t", - "What": "Typedef", - "defdec": "Def", - "display": "long long", - "location": { - "column": "31", - "line": "253", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__int64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__uint64_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long long", - "location": { - "column": "31", - "line": "254", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__uint64_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__intptr_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "29", - "line": "259", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__intptr_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__uintptr_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "29", - "line": "260", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__uintptr_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@S@_Mbstatet", - "What": "Struct", - "defdec": "Def", - "display": "_Mbstatet", - "location": { - "column": "16", - "line": "263", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "members": [ - { - "ID": "c:@S@_Mbstatet@FI@_Wchar", - "What": "FieldDecl", - "defdec": "Def", - "display": "_Wchar", - "location": { - "column": "18", - "line": "266", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_Wchar", - "origin": "system_include", - "scope": "_Mbstatet" - }, - { - "ID": "c:@S@_Mbstatet@FI@_State", - "What": "FieldDecl", - "defdec": "Def", - "display": "_State", - "location": { - "column": "18", - "line": "267", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_State", - "origin": "system_include", - "scope": "_Mbstatet" - } - ], - "name": "_Mbstatet", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@_Mbstatet", - "What": "Typedef", - "defdec": "Def", - "display": "struct _Mbstatet", - "location": { - "column": "3", - "line": "299", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_Mbstatet", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@9563@macro@_Mbstinit", - "What": "MacroDef", - "defdec": "Def", - "display": "_Mbstinit", - "location": { - "column": "11", - "line": "303", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_Mbstinit", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@9636@macro@_HAS_PRAGMA_PRINTF_ARGS", - "What": "MacroDef", - "defdec": "Def", - "display": "_HAS_PRAGMA_PRINTF_ARGS", - "location": { - "column": "9", - "line": "307", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_HAS_PRAGMA_PRINTF_ARGS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@S@__va_list", - "What": "Struct", - "defdec": "Dec", - "display": "__va_list", - "location": { - "column": "11", - "line": "321", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "members": [], - "name": "__va_list", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__Va_list", - "What": "Typedef", - "defdec": "Def", - "display": "struct __va_list", - "location": { - "column": "20", - "line": "321", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__Va_list", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@SA@_Fpost", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "337", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "members": [ - { - "ID": "c:@SA@_Fpost@FI@_Off", - "What": "FieldDecl", - "defdec": "Def", - "display": "_Off", - "location": { - "column": "15", - "line": "340", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_Off", - "origin": "system_include", - "scope": "_anonymous_yvals_h_337_9" - }, - { - "ID": "c:@SA@_Fpost@FI@_Wstate", - "What": "FieldDecl", - "defdec": "Def", - "display": "_Wstate", - "location": { - "column": "13", - "line": "344", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_Wstate", - "origin": "system_include", - "scope": "_anonymous_yvals_h_337_9" - } - ], - "name": "", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@T@_Fpost", - "What": "Typedef", - "defdec": "Def", - "display": "struct _Fpost", - "location": { - "column": "3", - "line": "345", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_Fpost", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@10450@macro@_FPOSOFF", - "What": "MacroDef", - "defdec": "Def", - "display": "_FPOSOFF", - "location": { - "column": "11", - "line": "348", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_FPOSOFF", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@10528@macro@_MULTI_THREAD", - "What": "MacroDef", - "defdec": "Def", - "display": "_MULTI_THREAD", - "location": { - "column": "9", - "line": "352", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "_MULTI_THREAD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Locksyslock_Malloc", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Locksyslock_Malloc(void)", - "location": { - "column": "28", - "line": "358", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Locksyslock_Malloc", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Locksyslock_Stream", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Locksyslock_Stream(void)", - "location": { - "column": "28", - "line": "359", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Locksyslock_Stream", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Locksyslock_Debug", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Locksyslock_Debug(void)", - "location": { - "column": "28", - "line": "360", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Locksyslock_Debug", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Locksyslock_StaticGuard", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Locksyslock_StaticGuard(void)", - "location": { - "column": "28", - "line": "361", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Locksyslock_StaticGuard", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Unlocksyslock_Malloc", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Unlocksyslock_Malloc(void)", - "location": { - "column": "28", - "line": "362", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Unlocksyslock_Malloc", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Unlocksyslock_Stream", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Unlocksyslock_Stream(void)", - "location": { - "column": "28", - "line": "363", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Unlocksyslock_Stream", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Unlocksyslock_Debug", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Unlocksyslock_Debug(void)", - "location": { - "column": "28", - "line": "364", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Unlocksyslock_Debug", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Unlocksyslock_StaticGuard", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Unlocksyslock_StaticGuard(void)", - "location": { - "column": "28", - "line": "365", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Unlocksyslock_StaticGuard", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:yvals.h@T@__iar_Rmtx", - "What": "Typedef", - "defdec": "Def", - "display": "void *", - "location": { - "column": "17", - "line": "374", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Rmtx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Initdynamiclock", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Initdynamiclock(__iar_Rmtx *)", - "location": { - "column": "28", - "line": "376", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Initdynamiclock", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Dstdynamiclock", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Dstdynamiclock(__iar_Rmtx *)", - "location": { - "column": "28", - "line": "377", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Dstdynamiclock", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Lockdynamiclock", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Lockdynamiclock(__iar_Rmtx *)", - "location": { - "column": "28", - "line": "378", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Lockdynamiclock", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Unlockdynamiclock", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_Unlockdynamiclock(__iar_Rmtx *)", - "location": { - "column": "28", - "line": "379", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\yvals.h" - }, - "name": "__iar_Unlockdynamiclock", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@1169@macro@_DLIB_DEFAULTS_H", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_DEFAULTS_H", - "location": { - "column": "9", - "line": "31", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_DEFAULTS_H", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@3035@macro@_DLIB_FILE_DESCRIPTOR", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_FILE_DESCRIPTOR", - "location": { - "column": "11", - "line": "85", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_FILE_DESCRIPTOR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@3448@macro@_DLIB_STDOUT_USES_STATIC_BUFFER", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STDOUT_USES_STATIC_BUFFER", - "location": { - "column": "11", - "line": "100", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_STDOUT_USES_STATIC_BUFFER", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@4471@macro@_DLIB_FULL_LOCALE_SUPPORT", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_FULL_LOCALE_SUPPORT", - "location": { - "column": "11", - "line": "127", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_FULL_LOCALE_SUPPORT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@4649@macro@_DLIB_LOCALE_TABLE_MEMORY", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_LOCALE_TABLE_MEMORY", - "location": { - "column": "11", - "line": "135", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_LOCALE_TABLE_MEMORY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@5493@macro@_DLIB_FORMATTED_MULTIBYTE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_FORMATTED_MULTIBYTE", - "location": { - "column": "11", - "line": "165", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_FORMATTED_MULTIBYTE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@6974@macro@_DLIB_PRINTF_MULTIBYTE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRINTF_MULTIBYTE", - "location": { - "column": "11", - "line": "213", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_PRINTF_MULTIBYTE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@7889@macro@_DLIB_PRINTF_INT_TYPE_IS_INT", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRINTF_INT_TYPE_IS_INT", - "location": { - "column": "11", - "line": "238", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_PRINTF_INT_TYPE_IS_INT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@8492@macro@_DLIB_PRINTF_INT_TYPE_IS_LONG", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRINTF_INT_TYPE_IS_LONG", - "location": { - "column": "11", - "line": "255", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_PRINTF_INT_TYPE_IS_LONG", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@9338@macro@_DLIB_PRINTF_CHAR_BY_CHAR", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRINTF_CHAR_BY_CHAR", - "location": { - "column": "11", - "line": "277", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_PRINTF_CHAR_BY_CHAR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@10025@macro@_DLIB_SCANF_MULTIBYTE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_SCANF_MULTIBYTE", - "location": { - "column": "11", - "line": "301", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_SCANF_MULTIBYTE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@10673@macro@_DLIB_STRFTIME_MULTIBYTE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STRFTIME_MULTIBYTE", - "location": { - "column": "11", - "line": "321", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_STRFTIME_MULTIBYTE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@11257@macro@_DLIB_QSORT_USE_BUBBLE_SORT", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_QSORT_USE_BUBBLE_SORT", - "location": { - "column": "11", - "line": "340", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_QSORT_USE_BUBBLE_SORT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@11840@macro@_DLIB_RAND_USE_SIMPLE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_RAND_USE_SIMPLE", - "location": { - "column": "11", - "line": "365", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_RAND_USE_SIMPLE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@12026@macro@_DLIB_DEBUG_BREAK_FUNCTION_ATTRIBUTE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_DEBUG_BREAK_FUNCTION_ATTRIBUTE", - "location": { - "column": "11", - "line": "374", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_DEBUG_BREAK_FUNCTION_ATTRIBUTE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@12745@macro@_DLIB_DATA_ATTR", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_DATA_ATTR", - "location": { - "column": "11", - "line": "390", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_DATA_ATTR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@12836@macro@_DLIB_CONST_ATTR", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_CONST_ATTR", - "location": { - "column": "13", - "line": "395", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_CONST_ATTR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@13453@macro@_DLIB_MBSTATET_USES_UNSIGNED_LONG", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_MBSTATET_USES_UNSIGNED_LONG", - "location": { - "column": "15", - "line": "421", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_MBSTATET_USES_UNSIGNED_LONG", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@13636@macro@_DLIB_TIME_USES_LONG", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_TIME_USES_LONG", - "location": { - "column": "15", - "line": "429", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_TIME_USES_LONG", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@14183@macro@_DLIB_AEABI_DIFUNC_CONTAINS_OFFSETS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_AEABI_DIFUNC_CONTAINS_OFFSETS", - "location": { - "column": "13", - "line": "443", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_AEABI_DIFUNC_CONTAINS_OFFSETS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@14573@macro@_DLIB_ONLY_USE_CXA_FUNCTIONS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ONLY_USE_CXA_FUNCTIONS", - "location": { - "column": "13", - "line": "458", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_ONLY_USE_CXA_FUNCTIONS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@15142@macro@_DLIB_FAST_FMA", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_FAST_FMA", - "location": { - "column": "11", - "line": "485", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_FAST_FMA", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@16042@macro@_DLIB_INCLUDE_DLMALLOC_ALTERNATIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_INCLUDE_DLMALLOC_ALTERNATIVE", - "location": { - "column": "13", - "line": "515", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_INCLUDE_DLMALLOC_ALTERNATIVE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@16406@macro@_DLIB_TIME_ALLOW_64", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_TIME_ALLOW_64", - "location": { - "column": "13", - "line": "537", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_TIME_ALLOW_64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@16609@macro@_DLIB_TIME_USES_64_DEFAULT", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_TIME_USES_64_DEFAULT", - "location": { - "column": "11", - "line": "551", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_TIME_USES_64_DEFAULT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@16863@macro@_DLIB_ALLOW_LARGE_CONSTANT_TABLES_FOR_MATH", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ALLOW_LARGE_CONSTANT_TABLES_FOR_MATH", - "location": { - "column": "11", - "line": "562", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "_DLIB_ALLOW_LARGE_CONSTANT_TABLES_FOR_MATH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@17263@macro@__WEAK", - "What": "MacroDef", - "defdec": "Def", - "display": "__WEAK", - "location": { - "column": "11", - "line": "579", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "__WEAK", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Defaults.h@17318@macro@__WEAK_DEFS", - "What": "MacroDef", - "defdec": "Def", - "display": "__WEAK_DEFS", - "location": { - "column": "11", - "line": "580", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Defaults.h" - }, - "name": "__WEAK_DEFS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:task.h@1333@macro@INC_TASK_H", - "What": "MacroDef", - "defdec": "Def", - "display": "INC_TASK_H", - "location": { - "column": "9", - "line": "30", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "INC_TASK_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@1690@macro@tskKERNEL_VERSION_NUMBER", - "What": "MacroDef", - "defdec": "Def", - "display": "tskKERNEL_VERSION_NUMBER", - "location": { - "column": "9", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "tskKERNEL_VERSION_NUMBER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@1734@macro@tskKERNEL_VERSION_MAJOR", - "What": "MacroDef", - "defdec": "Def", - "display": "tskKERNEL_VERSION_MAJOR", - "location": { - "column": "9", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "tskKERNEL_VERSION_MAJOR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@1770@macro@tskKERNEL_VERSION_MINOR", - "What": "MacroDef", - "defdec": "Def", - "display": "tskKERNEL_VERSION_MINOR", - "location": { - "column": "9", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "tskKERNEL_VERSION_MINOR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@1805@macro@tskKERNEL_VERSION_BUILD", - "What": "MacroDef", - "defdec": "Def", - "display": "tskKERNEL_VERSION_BUILD", - "location": { - "column": "9", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "tskKERNEL_VERSION_BUILD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@1924@macro@tskMPU_REGION_READ_ONLY", - "What": "MacroDef", - "defdec": "Def", - "display": "tskMPU_REGION_READ_ONLY", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "tskMPU_REGION_READ_ONLY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@1974@macro@tskMPU_REGION_READ_WRITE", - "What": "MacroDef", - "defdec": "Def", - "display": "tskMPU_REGION_READ_WRITE", - "location": { - "column": "9", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "tskMPU_REGION_READ_WRITE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@2024@macro@tskMPU_REGION_EXECUTE_NEVER", - "What": "MacroDef", - "defdec": "Def", - "display": "tskMPU_REGION_EXECUTE_NEVER", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "tskMPU_REGION_EXECUTE_NEVER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@2077@macro@tskMPU_REGION_NORMAL_MEMORY", - "What": "MacroDef", - "defdec": "Def", - "display": "tskMPU_REGION_NORMAL_MEMORY", - "location": { - "column": "9", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "tskMPU_REGION_NORMAL_MEMORY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@2130@macro@tskMPU_REGION_DEVICE_MEMORY", - "What": "MacroDef", - "defdec": "Def", - "display": "tskMPU_REGION_DEVICE_MEMORY", - "location": { - "column": "9", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "tskMPU_REGION_DEVICE_MEMORY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@tskTaskControlBlock", - "What": "Struct", - "defdec": "Dec", - "display": "tskTaskControlBlock", - "location": { - "column": "8", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "members": [ - { - "ID": "c:@S@tskTaskControlBlock", - "What": "Struct", - "defdec": "Dec", - "display": "tskTaskControlBlock", - "location": { - "column": "8", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "members": [], - "name": "tskTaskControlBlock", - "origin": "user_include", - "scope": "tskTaskControlBlock" - } - ], - "name": "tskTaskControlBlock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@T@TaskHandle_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct tskTaskControlBlock *", - "location": { - "column": "37", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "TaskHandle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@T@TaskHookFunction_t", - "What": "Typedef", - "defdec": "Def", - "display": "BaseType_t (*)(void *)", - "location": { - "column": "22", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "TaskHookFunction_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eTaskState", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@eTaskState@eRunning", - "What": "Enumerator", - "defdec": "Def", - "display": "eRunning", - "location": { - "column": "2", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eRunning", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eTaskState@eReady", - "What": "Enumerator", - "defdec": "Def", - "display": "eReady", - "location": { - "column": "2", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eReady", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eTaskState@eBlocked", - "What": "Enumerator", - "defdec": "Def", - "display": "eBlocked", - "location": { - "column": "2", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eBlocked", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eTaskState@eSuspended", - "What": "Enumerator", - "defdec": "Def", - "display": "eSuspended", - "location": { - "column": "2", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eSuspended", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eTaskState@eDeleted", - "What": "Enumerator", - "defdec": "Def", - "display": "eDeleted", - "location": { - "column": "2", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eDeleted", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eTaskState@eInvalid", - "What": "Enumerator", - "defdec": "Def", - "display": "eInvalid", - "location": { - "column": "2", - "line": "86", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eInvalid", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@eTaskState", - "What": "Typedef", - "defdec": "Def", - "display": "enum eTaskState", - "location": { - "column": "3", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eTaskState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eNotifyAction", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@eNotifyAction@eNoAction", - "What": "Enumerator", - "defdec": "Def", - "display": "eNoAction", - "location": { - "column": "2", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eNoAction", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eNotifyAction@eSetBits", - "What": "Enumerator", - "defdec": "Def", - "display": "eSetBits", - "location": { - "column": "2", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eSetBits", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eNotifyAction@eIncrement", - "What": "Enumerator", - "defdec": "Def", - "display": "eIncrement", - "location": { - "column": "2", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eIncrement", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eNotifyAction@eSetValueWithOverwrite", - "What": "Enumerator", - "defdec": "Def", - "display": "eSetValueWithOverwrite", - "location": { - "column": "2", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eSetValueWithOverwrite", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eNotifyAction@eSetValueWithoutOverwrite", - "What": "Enumerator", - "defdec": "Def", - "display": "eSetValueWithoutOverwrite", - "location": { - "column": "2", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eSetValueWithoutOverwrite", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@eNotifyAction", - "What": "Typedef", - "defdec": "Def", - "display": "enum eNotifyAction", - "location": { - "column": "3", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eNotifyAction", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xTIME_OUT", - "What": "Struct", - "defdec": "Def", - "display": "xTIME_OUT", - "location": { - "column": "16", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "members": [ - { - "ID": "c:@S@xTIME_OUT@FI@xOverflowCount", - "What": "FieldDecl", - "defdec": "Def", - "display": "xOverflowCount", - "location": { - "column": "13", - "line": "104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xOverflowCount", - "origin": "user_include", - "scope": "xTIME_OUT" - }, - { - "ID": "c:@S@xTIME_OUT@FI@xTimeOnEntering", - "What": "FieldDecl", - "defdec": "Def", - "display": "xTimeOnEntering", - "location": { - "column": "13", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTimeOnEntering", - "origin": "user_include", - "scope": "xTIME_OUT" - } - ], - "name": "xTIME_OUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@T@TimeOut_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xTIME_OUT", - "location": { - "column": "3", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "TimeOut_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xMEMORY_REGION", - "What": "Struct", - "defdec": "Def", - "display": "xMEMORY_REGION", - "location": { - "column": "16", - "line": "111", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "members": [ - { - "ID": "c:@S@xMEMORY_REGION@FI@pvBaseAddress", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvBaseAddress", - "location": { - "column": "8", - "line": "113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "pvBaseAddress", - "origin": "user_include", - "scope": "xMEMORY_REGION" - }, - { - "ID": "c:@S@xMEMORY_REGION@FI@ulLengthInBytes", - "What": "FieldDecl", - "defdec": "Def", - "display": "ulLengthInBytes", - "location": { - "column": "11", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "ulLengthInBytes", - "origin": "user_include", - "scope": "xMEMORY_REGION" - }, - { - "ID": "c:@S@xMEMORY_REGION@FI@ulParameters", - "What": "FieldDecl", - "defdec": "Def", - "display": "ulParameters", - "location": { - "column": "11", - "line": "115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "ulParameters", - "origin": "user_include", - "scope": "xMEMORY_REGION" - } - ], - "name": "xMEMORY_REGION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@T@MemoryRegion_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xMEMORY_REGION", - "location": { - "column": "3", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "MemoryRegion_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xTASK_PARAMETERS", - "What": "Struct", - "defdec": "Def", - "display": "xTASK_PARAMETERS", - "location": { - "column": "16", - "line": "121", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "members": [ - { - "ID": "c:@S@xTASK_PARAMETERS@FI@pvTaskCode", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvTaskCode", - "location": { - "column": "17", - "line": "123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "pvTaskCode", - "origin": "user_include", - "scope": "xTASK_PARAMETERS" - }, - { - "ID": "c:@S@xTASK_PARAMETERS@FI@pcName", - "What": "FieldDecl", - "defdec": "Def", - "display": "pcName", - "location": { - "column": "21", - "line": "124", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "pcName", - "origin": "user_include", - "scope": "xTASK_PARAMETERS" - }, - { - "ID": "c:@S@xTASK_PARAMETERS@FI@usStackDepth", - "What": "FieldDecl", - "defdec": "Def", - "display": "usStackDepth", - "location": { - "column": "25", - "line": "125", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "usStackDepth", - "origin": "user_include", - "scope": "xTASK_PARAMETERS" - }, - { - "ID": "c:@S@xTASK_PARAMETERS@FI@pvParameters", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvParameters", - "location": { - "column": "8", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "pvParameters", - "origin": "user_include", - "scope": "xTASK_PARAMETERS" - }, - { - "ID": "c:@S@xTASK_PARAMETERS@FI@uxPriority", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxPriority", - "location": { - "column": "14", - "line": "127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxPriority", - "origin": "user_include", - "scope": "xTASK_PARAMETERS" - }, - { - "ID": "c:@S@xTASK_PARAMETERS@FI@puxStackBuffer", - "What": "FieldDecl", - "defdec": "Def", - "display": "puxStackBuffer", - "location": { - "column": "15", - "line": "128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "puxStackBuffer", - "origin": "user_include", - "scope": "xTASK_PARAMETERS" - }, - { - "ID": "c:@S@xTASK_PARAMETERS@FI@xRegions", - "What": "FieldDecl", - "defdec": "Def", - "display": "xRegions", - "location": { - "column": "17", - "line": "129", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xRegions", - "origin": "user_include", - "scope": "xTASK_PARAMETERS" - } - ], - "name": "xTASK_PARAMETERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@T@TaskParameters_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xTASK_PARAMETERS", - "location": { - "column": "3", - "line": "133", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "TaskParameters_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xTASK_STATUS", - "What": "Struct", - "defdec": "Def", - "display": "xTASK_STATUS", - "location": { - "column": "16", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "members": [ - { - "ID": "c:@S@xTASK_STATUS@FI@xHandle", - "What": "FieldDecl", - "defdec": "Def", - "display": "xHandle", - "location": { - "column": "15", - "line": "139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xHandle", - "origin": "user_include", - "scope": "xTASK_STATUS" - }, - { - "ID": "c:@S@xTASK_STATUS@FI@pcTaskName", - "What": "FieldDecl", - "defdec": "Def", - "display": "pcTaskName", - "location": { - "column": "14", - "line": "140", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "pcTaskName", - "origin": "user_include", - "scope": "xTASK_STATUS" - }, - { - "ID": "c:@S@xTASK_STATUS@FI@xTaskNumber", - "What": "FieldDecl", - "defdec": "Def", - "display": "xTaskNumber", - "location": { - "column": "14", - "line": "141", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskNumber", - "origin": "user_include", - "scope": "xTASK_STATUS" - }, - { - "ID": "c:@S@xTASK_STATUS@FI@eCurrentState", - "What": "FieldDecl", - "defdec": "Def", - "display": "eCurrentState", - "location": { - "column": "13", - "line": "142", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eCurrentState", - "origin": "user_include", - "scope": "xTASK_STATUS" - }, - { - "ID": "c:@S@xTASK_STATUS@FI@uxCurrentPriority", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxCurrentPriority", - "location": { - "column": "14", - "line": "143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxCurrentPriority", - "origin": "user_include", - "scope": "xTASK_STATUS" - }, - { - "ID": "c:@S@xTASK_STATUS@FI@uxBasePriority", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxBasePriority", - "location": { - "column": "14", - "line": "144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxBasePriority", - "origin": "user_include", - "scope": "xTASK_STATUS" - }, - { - "ID": "c:@S@xTASK_STATUS@FI@ulRunTimeCounter", - "What": "FieldDecl", - "defdec": "Def", - "display": "ulRunTimeCounter", - "location": { - "column": "11", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "ulRunTimeCounter", - "origin": "user_include", - "scope": "xTASK_STATUS" - }, - { - "ID": "c:@S@xTASK_STATUS@FI@pxStackBase", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxStackBase", - "location": { - "column": "15", - "line": "146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "pxStackBase", - "origin": "user_include", - "scope": "xTASK_STATUS" - }, - { - "ID": "c:@S@xTASK_STATUS@FI@usStackHighWaterMark", - "What": "FieldDecl", - "defdec": "Def", - "display": "usStackHighWaterMark", - "location": { - "column": "25", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "usStackHighWaterMark", - "origin": "user_include", - "scope": "xTASK_STATUS" - } - ], - "name": "xTASK_STATUS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@T@TaskStatus_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xTASK_STATUS", - "location": { - "column": "3", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "TaskStatus_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eSleepModeStatus", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@eSleepModeStatus@eAbortSleep", - "What": "Enumerator", - "defdec": "Def", - "display": "eAbortSleep", - "location": { - "column": "2", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eAbortSleep", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eSleepModeStatus@eStandardSleep", - "What": "Enumerator", - "defdec": "Def", - "display": "eStandardSleep", - "location": { - "column": "2", - "line": "154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eStandardSleep", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@eSleepModeStatus@eNoTasksWaitingTimeout", - "What": "Enumerator", - "defdec": "Def", - "display": "eNoTasksWaitingTimeout", - "location": { - "column": "2", - "line": "155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eNoTasksWaitingTimeout", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "151", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@eSleepModeStatus", - "What": "Typedef", - "defdec": "Def", - "display": "enum eSleepModeStatus", - "location": { - "column": "3", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eSleepModeStatus", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@7200@macro@tskIDLE_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "tskIDLE_PRIORITY", - "location": { - "column": "9", - "line": "163", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "tskIDLE_PRIORITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@7387@macro@taskYIELD", - "What": "MacroDef", - "defdec": "Def", - "display": "taskYIELD", - "location": { - "column": "9", - "line": "173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "taskYIELD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@7779@macro@taskENTER_CRITICAL", - "What": "MacroDef", - "defdec": "Def", - "display": "taskENTER_CRITICAL", - "location": { - "column": "9", - "line": "187", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "taskENTER_CRITICAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@7831@macro@taskENTER_CRITICAL_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "taskENTER_CRITICAL_FROM_ISR", - "location": { - "column": "9", - "line": "188", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "taskENTER_CRITICAL_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@8255@macro@taskEXIT_CRITICAL", - "What": "MacroDef", - "defdec": "Def", - "display": "taskEXIT_CRITICAL", - "location": { - "column": "9", - "line": "202", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "taskEXIT_CRITICAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@8306@macro@taskEXIT_CRITICAL_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "taskEXIT_CRITICAL_FROM_ISR", - "location": { - "column": "9", - "line": "203", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "taskEXIT_CRITICAL_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@8552@macro@taskDISABLE_INTERRUPTS", - "What": "MacroDef", - "defdec": "Def", - "display": "taskDISABLE_INTERRUPTS", - "location": { - "column": "9", - "line": "212", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "taskDISABLE_INTERRUPTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@8779@macro@taskENABLE_INTERRUPTS", - "What": "MacroDef", - "defdec": "Def", - "display": "taskENABLE_INTERRUPTS", - "location": { - "column": "9", - "line": "222", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "taskENABLE_INTERRUPTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@9037@macro@taskSCHEDULER_SUSPENDED", - "What": "MacroDef", - "defdec": "Def", - "display": "taskSCHEDULER_SUSPENDED", - "location": { - "column": "9", - "line": "227", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "taskSCHEDULER_SUSPENDED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@9092@macro@taskSCHEDULER_NOT_STARTED", - "What": "MacroDef", - "defdec": "Def", - "display": "taskSCHEDULER_NOT_STARTED", - "location": { - "column": "9", - "line": "228", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "taskSCHEDULER_NOT_STARTED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@9148@macro@taskSCHEDULER_RUNNING", - "What": "MacroDef", - "defdec": "Def", - "display": "taskSCHEDULER_RUNNING", - "location": { - "column": "9", - "line": "229", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "taskSCHEDULER_RUNNING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskCreate", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskCreate(TaskFunction_t, const char *const, const uint16_t, void *const, UBaseType_t, TaskHandle_t *const)", - "location": { - "column": "13", - "line": "330", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskCreate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskCreate", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskCreate(TaskFunction_t, const char *const, const uint16_t, void *const, UBaseType_t, TaskHandle_t *const)", - "location": { - "column": "13", - "line": "330", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskCreate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskAllocateMPURegions", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskAllocateMPURegions(TaskHandle_t, const MemoryRegion_t *const)", - "location": { - "column": "6", - "line": "665", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskAllocateMPURegions", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskDelete", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskDelete(TaskHandle_t)", - "location": { - "column": "6", - "line": "706", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskDelete", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskDelete", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskDelete(TaskHandle_t)", - "location": { - "column": "6", - "line": "706", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskDelete", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskDelay", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskDelay(const TickType_t)", - "location": { - "column": "6", - "line": "758", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskDelay", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskDelay", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskDelay(const TickType_t)", - "location": { - "column": "6", - "line": "758", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskDelay", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskDelayUntil", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskDelayUntil(TickType_t *const, const TickType_t)", - "location": { - "column": "6", - "line": "817", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskDelayUntil", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskDelayUntil", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskDelayUntil(TickType_t *const, const TickType_t)", - "location": { - "column": "6", - "line": "817", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskDelayUntil", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskAbortDelay", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskAbortDelay(TaskHandle_t)", - "location": { - "column": "12", - "line": "842", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskAbortDelay", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskPriorityGet", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxTaskPriorityGet(const TaskHandle_t)", - "location": { - "column": "13", - "line": "889", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskPriorityGet", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskPriorityGet", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxTaskPriorityGet(const TaskHandle_t)", - "location": { - "column": "13", - "line": "889", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskPriorityGet", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskPriorityGetFromISR", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxTaskPriorityGetFromISR(const TaskHandle_t)", - "location": { - "column": "13", - "line": "897", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskPriorityGetFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskPriorityGetFromISR", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxTaskPriorityGetFromISR(const TaskHandle_t)", - "location": { - "column": "13", - "line": "897", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskPriorityGetFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@eTaskGetState", - "What": "Function", - "defdec": "Dec", - "display": "eTaskState eTaskGetState(TaskHandle_t)", - "location": { - "column": "12", - "line": "915", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eTaskGetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@eTaskGetState", - "What": "Function", - "defdec": "Dec", - "display": "eTaskState eTaskGetState(TaskHandle_t)", - "location": { - "column": "12", - "line": "915", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eTaskGetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskGetInfo", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskGetInfo(TaskHandle_t, TaskStatus_t *, BaseType_t, eTaskState)", - "location": { - "column": "6", - "line": "971", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskGetInfo", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskGetInfo", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskGetInfo(TaskHandle_t, TaskStatus_t *, BaseType_t, eTaskState)", - "location": { - "column": "6", - "line": "971", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskGetInfo", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskPrioritySet", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskPrioritySet(TaskHandle_t, UBaseType_t)", - "location": { - "column": "6", - "line": "1013", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskPrioritySet", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskPrioritySet", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskPrioritySet(TaskHandle_t, UBaseType_t)", - "location": { - "column": "6", - "line": "1013", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskPrioritySet", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskSuspend", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskSuspend(TaskHandle_t)", - "location": { - "column": "6", - "line": "1064", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskSuspend", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskSuspend", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskSuspend(TaskHandle_t)", - "location": { - "column": "6", - "line": "1064", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskSuspend", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskResume", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskResume(TaskHandle_t)", - "location": { - "column": "6", - "line": "1113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskResume", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskResume", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskResume(TaskHandle_t)", - "location": { - "column": "6", - "line": "1113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskResume", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskResumeFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskResumeFromISR(TaskHandle_t)", - "location": { - "column": "12", - "line": "1142", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskResumeFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskResumeFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskResumeFromISR(TaskHandle_t)", - "location": { - "column": "12", - "line": "1142", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskResumeFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskStartScheduler", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskStartScheduler(void)", - "location": { - "column": "6", - "line": "1175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskStartScheduler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskStartScheduler", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskStartScheduler(void)", - "location": { - "column": "6", - "line": "1175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskStartScheduler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskEndScheduler", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskEndScheduler(void)", - "location": { - "column": "6", - "line": "1231", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskEndScheduler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskEndScheduler", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskEndScheduler(void)", - "location": { - "column": "6", - "line": "1231", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskEndScheduler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskSuspendAll", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskSuspendAll(void)", - "location": { - "column": "6", - "line": "1282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskSuspendAll", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskSuspendAll", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskSuspendAll(void)", - "location": { - "column": "6", - "line": "1282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskSuspendAll", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskResumeAll", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskResumeAll(void)", - "location": { - "column": "12", - "line": "1336", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskResumeAll", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskResumeAll", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskResumeAll(void)", - "location": { - "column": "12", - "line": "1336", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskResumeAll", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGetTickCount", - "What": "Function", - "defdec": "Dec", - "display": "TickType_t xTaskGetTickCount(void)", - "location": { - "column": "12", - "line": "1351", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGetTickCount", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGetTickCount", - "What": "Function", - "defdec": "Dec", - "display": "TickType_t xTaskGetTickCount(void)", - "location": { - "column": "12", - "line": "1351", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGetTickCount", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGetTickCountFromISR", - "What": "Function", - "defdec": "Dec", - "display": "TickType_t xTaskGetTickCountFromISR(void)", - "location": { - "column": "12", - "line": "1367", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGetTickCountFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGetTickCountFromISR", - "What": "Function", - "defdec": "Dec", - "display": "TickType_t xTaskGetTickCountFromISR(void)", - "location": { - "column": "12", - "line": "1367", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGetTickCountFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskGetNumberOfTasks", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxTaskGetNumberOfTasks(void)", - "location": { - "column": "13", - "line": "1381", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskGetNumberOfTasks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskGetNumberOfTasks", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxTaskGetNumberOfTasks(void)", - "location": { - "column": "13", - "line": "1381", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskGetNumberOfTasks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pcTaskGetName", - "What": "Function", - "defdec": "Dec", - "display": "char * pcTaskGetName(TaskHandle_t)", - "location": { - "column": "7", - "line": "1394", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "pcTaskGetName", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pcTaskGetName", - "What": "Function", - "defdec": "Dec", - "display": "char * pcTaskGetName(TaskHandle_t)", - "location": { - "column": "7", - "line": "1394", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "pcTaskGetName", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGetHandle", - "What": "Function", - "defdec": "Dec", - "display": "TaskHandle_t xTaskGetHandle(const char *)", - "location": { - "column": "14", - "line": "1410", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGetHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskGetStackHighWaterMark", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxTaskGetStackHighWaterMark(TaskHandle_t)", - "location": { - "column": "13", - "line": "1437", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskGetStackHighWaterMark", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskGetStackHighWaterMark2", - "What": "Function", - "defdec": "Dec", - "display": "uint16_t uxTaskGetStackHighWaterMark2(TaskHandle_t)", - "location": { - "column": "24", - "line": "1464", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskGetStackHighWaterMark2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskCallApplicationTaskHook", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskCallApplicationTaskHook(TaskHandle_t, void *)", - "location": { - "column": "12", - "line": "1528", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskCallApplicationTaskHook", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGetIdleTaskHandle", - "What": "Function", - "defdec": "Dec", - "display": "TaskHandle_t xTaskGetIdleTaskHandle(void)", - "location": { - "column": "14", - "line": "1537", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGetIdleTaskHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskGetSystemState", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxTaskGetSystemState(TaskStatus_t *const, const UBaseType_t, uint32_t *const)", - "location": { - "column": "13", - "line": "1636", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskGetSystemState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskGetSystemState", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxTaskGetSystemState(TaskStatus_t *const, const UBaseType_t, uint32_t *const)", - "location": { - "column": "13", - "line": "1636", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskGetSystemState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskList", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskList(char *)", - "location": { - "column": "6", - "line": "1683", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskList", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskGetRunTimeStats", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskGetRunTimeStats(char *)", - "location": { - "column": "6", - "line": "1737", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskGetRunTimeStats", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ulTaskGetIdleRunTimeCounter", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t ulTaskGetIdleRunTimeCounter(void)", - "location": { - "column": "10", - "line": "1767", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "ulTaskGetIdleRunTimeCounter", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGenericNotify", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskGenericNotify(TaskHandle_t, uint32_t, eNotifyAction, uint32_t *)", - "location": { - "column": "12", - "line": "1848", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGenericNotify", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGenericNotify", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskGenericNotify(TaskHandle_t, uint32_t, eNotifyAction, uint32_t *)", - "location": { - "column": "12", - "line": "1848", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGenericNotify", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@74047@macro@xTaskNotify", - "What": "MacroDef", - "defdec": "Def", - "display": "xTaskNotify", - "location": { - "column": "9", - "line": "1849", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskNotify", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@74175@macro@xTaskNotifyAndQuery", - "What": "MacroDef", - "defdec": "Def", - "display": "xTaskNotifyAndQuery", - "location": { - "column": "9", - "line": "1850", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskNotifyAndQuery", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGenericNotifyFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskGenericNotifyFromISR(TaskHandle_t, uint32_t, eNotifyAction, uint32_t *, BaseType_t *)", - "location": { - "column": "12", - "line": "1939", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGenericNotifyFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGenericNotifyFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskGenericNotifyFromISR(TaskHandle_t, uint32_t, eNotifyAction, uint32_t *, BaseType_t *)", - "location": { - "column": "12", - "line": "1939", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGenericNotifyFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@78826@macro@xTaskNotifyFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "xTaskNotifyFromISR", - "location": { - "column": "9", - "line": "1940", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskNotifyFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@79026@macro@xTaskNotifyAndQueryFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "xTaskNotifyAndQueryFromISR", - "location": { - "column": "9", - "line": "1941", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskNotifyAndQueryFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskNotifyWait", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskNotifyWait(uint32_t, uint32_t, uint32_t *, TickType_t)", - "location": { - "column": "12", - "line": "2016", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskNotifyWait", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskNotifyWait", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskNotifyWait(uint32_t, uint32_t, uint32_t *, TickType_t)", - "location": { - "column": "12", - "line": "2016", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskNotifyWait", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:task.h@85790@macro@xTaskNotifyGive", - "What": "MacroDef", - "defdec": "Def", - "display": "xTaskNotifyGive", - "location": { - "column": "9", - "line": "2062", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskNotifyGive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskNotifyGiveFromISR", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskNotifyGiveFromISR(TaskHandle_t, BaseType_t *)", - "location": { - "column": "6", - "line": "2117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskNotifyGiveFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskNotifyGiveFromISR", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskNotifyGiveFromISR(TaskHandle_t, BaseType_t *)", - "location": { - "column": "6", - "line": "2117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskNotifyGiveFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ulTaskNotifyTake", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t ulTaskNotifyTake(BaseType_t, TickType_t)", - "location": { - "column": "10", - "line": "2186", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "ulTaskNotifyTake", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ulTaskNotifyTake", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t ulTaskNotifyTake(BaseType_t, TickType_t)", - "location": { - "column": "10", - "line": "2186", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "ulTaskNotifyTake", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskNotifyStateClear", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskNotifyStateClear(TaskHandle_t)", - "location": { - "column": "12", - "line": "2202", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskNotifyStateClear", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskNotifyStateClear", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskNotifyStateClear(TaskHandle_t)", - "location": { - "column": "12", - "line": "2202", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskNotifyStateClear", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskIncrementTick", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskIncrementTick(void)", - "location": { - "column": "12", - "line": "2223", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskIncrementTick", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskIncrementTick", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskIncrementTick(void)", - "location": { - "column": "12", - "line": "2223", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskIncrementTick", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskPlaceOnEventList", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskPlaceOnEventList(List_t *const, const TickType_t)", - "location": { - "column": "6", - "line": "2256", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskPlaceOnEventList", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskPlaceOnEventList", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskPlaceOnEventList(List_t *const, const TickType_t)", - "location": { - "column": "6", - "line": "2256", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskPlaceOnEventList", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskPlaceOnUnorderedEventList", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskPlaceOnUnorderedEventList(List_t *, const TickType_t, const TickType_t)", - "location": { - "column": "6", - "line": "2257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskPlaceOnUnorderedEventList", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskPlaceOnUnorderedEventList", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskPlaceOnUnorderedEventList(List_t *, const TickType_t, const TickType_t)", - "location": { - "column": "6", - "line": "2257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskPlaceOnUnorderedEventList", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskPlaceOnEventListRestricted", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskPlaceOnEventListRestricted(List_t *const, TickType_t, const BaseType_t)", - "location": { - "column": "6", - "line": "2270", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskPlaceOnEventListRestricted", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskPlaceOnEventListRestricted", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskPlaceOnEventListRestricted(List_t *const, TickType_t, const BaseType_t)", - "location": { - "column": "6", - "line": "2270", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskPlaceOnEventListRestricted", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskRemoveFromEventList", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskRemoveFromEventList(const List_t *const)", - "location": { - "column": "12", - "line": "2296", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskRemoveFromEventList", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskRemoveFromEventList", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskRemoveFromEventList(const List_t *const)", - "location": { - "column": "12", - "line": "2296", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskRemoveFromEventList", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskRemoveFromUnorderedEventList", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskRemoveFromUnorderedEventList(ListItem_t *, const TickType_t)", - "location": { - "column": "6", - "line": "2297", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskRemoveFromUnorderedEventList", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskRemoveFromUnorderedEventList", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskRemoveFromUnorderedEventList(ListItem_t *, const TickType_t)", - "location": { - "column": "6", - "line": "2297", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskRemoveFromUnorderedEventList", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskSwitchContext", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskSwitchContext(void)", - "location": { - "column": "23", - "line": "2307", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskSwitchContext", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskSwitchContext", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskSwitchContext(void)", - "location": { - "column": "23", - "line": "2307", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskSwitchContext", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskResetEventItemValue", - "What": "Function", - "defdec": "Dec", - "display": "TickType_t uxTaskResetEventItemValue(void)", - "location": { - "column": "12", - "line": "2313", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskResetEventItemValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskResetEventItemValue", - "What": "Function", - "defdec": "Dec", - "display": "TickType_t uxTaskResetEventItemValue(void)", - "location": { - "column": "12", - "line": "2313", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskResetEventItemValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGetCurrentTaskHandle", - "What": "Function", - "defdec": "Dec", - "display": "TaskHandle_t xTaskGetCurrentTaskHandle(void)", - "location": { - "column": "14", - "line": "2318", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGetCurrentTaskHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGetCurrentTaskHandle", - "What": "Function", - "defdec": "Dec", - "display": "TaskHandle_t xTaskGetCurrentTaskHandle(void)", - "location": { - "column": "14", - "line": "2318", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGetCurrentTaskHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskSetTimeOutState", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskSetTimeOutState(TimeOut_t *const)", - "location": { - "column": "6", - "line": "2323", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskSetTimeOutState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskSetTimeOutState", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskSetTimeOutState(TimeOut_t *const)", - "location": { - "column": "6", - "line": "2323", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskSetTimeOutState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskCheckForTimeOut", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskCheckForTimeOut(TimeOut_t *const, TickType_t *const)", - "location": { - "column": "12", - "line": "2329", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskCheckForTimeOut", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskCheckForTimeOut", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskCheckForTimeOut(TimeOut_t *const, TickType_t *const)", - "location": { - "column": "12", - "line": "2329", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskCheckForTimeOut", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskMissedYield", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskMissedYield(void)", - "location": { - "column": "6", - "line": "2335", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskMissedYield", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskMissedYield", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskMissedYield(void)", - "location": { - "column": "6", - "line": "2335", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskMissedYield", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGetSchedulerState", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskGetSchedulerState(void)", - "location": { - "column": "12", - "line": "2341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGetSchedulerState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskGetSchedulerState", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskGetSchedulerState(void)", - "location": { - "column": "12", - "line": "2341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskGetSchedulerState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskPriorityInherit", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskPriorityInherit(const TaskHandle_t)", - "location": { - "column": "12", - "line": "2347", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskPriorityInherit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskPriorityInherit", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskPriorityInherit(const TaskHandle_t)", - "location": { - "column": "12", - "line": "2347", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskPriorityInherit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskPriorityDisinherit", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskPriorityDisinherit(const TaskHandle_t)", - "location": { - "column": "12", - "line": "2353", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskPriorityDisinherit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskPriorityDisinherit", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskPriorityDisinherit(const TaskHandle_t)", - "location": { - "column": "12", - "line": "2353", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskPriorityDisinherit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskPriorityDisinheritAfterTimeout", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskPriorityDisinheritAfterTimeout(const TaskHandle_t, UBaseType_t)", - "location": { - "column": "6", - "line": "2363", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskPriorityDisinheritAfterTimeout", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskPriorityDisinheritAfterTimeout", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskPriorityDisinheritAfterTimeout(const TaskHandle_t, UBaseType_t)", - "location": { - "column": "6", - "line": "2363", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskPriorityDisinheritAfterTimeout", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskGetTaskNumber", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxTaskGetTaskNumber(TaskHandle_t)", - "location": { - "column": "13", - "line": "2368", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskGetTaskNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTaskGetTaskNumber", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxTaskGetTaskNumber(TaskHandle_t)", - "location": { - "column": "13", - "line": "2368", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "uxTaskGetTaskNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskSetTaskNumber", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskSetTaskNumber(TaskHandle_t, const UBaseType_t)", - "location": { - "column": "6", - "line": "2374", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskSetTaskNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskSetTaskNumber", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskSetTaskNumber(TaskHandle_t, const UBaseType_t)", - "location": { - "column": "6", - "line": "2374", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskSetTaskNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskStepTick", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskStepTick(const TickType_t)", - "location": { - "column": "6", - "line": "2384", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskStepTick", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskStepTick", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskStepTick(const TickType_t)", - "location": { - "column": "6", - "line": "2384", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskStepTick", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskCatchUpTicks", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskCatchUpTicks(TickType_t)", - "location": { - "column": "12", - "line": "2397", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskCatchUpTicks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTaskCatchUpTicks", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTaskCatchUpTicks(TickType_t)", - "location": { - "column": "12", - "line": "2397", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "xTaskCatchUpTicks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@eTaskConfirmSleepModeStatus", - "What": "Function", - "defdec": "Dec", - "display": "eSleepModeStatus eTaskConfirmSleepModeStatus(void)", - "location": { - "column": "18", - "line": "2413", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eTaskConfirmSleepModeStatus", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@eTaskConfirmSleepModeStatus", - "What": "Function", - "defdec": "Dec", - "display": "eSleepModeStatus eTaskConfirmSleepModeStatus(void)", - "location": { - "column": "18", - "line": "2413", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "eTaskConfirmSleepModeStatus", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pvTaskIncrementMutexHeldCount", - "What": "Function", - "defdec": "Dec", - "display": "TaskHandle_t pvTaskIncrementMutexHeldCount(void)", - "location": { - "column": "14", - "line": "2419", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "pvTaskIncrementMutexHeldCount", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pvTaskIncrementMutexHeldCount", - "What": "Function", - "defdec": "Dec", - "display": "TaskHandle_t pvTaskIncrementMutexHeldCount(void)", - "location": { - "column": "14", - "line": "2419", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "pvTaskIncrementMutexHeldCount", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskInternalSetTimeOutState", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskInternalSetTimeOutState(TimeOut_t *const)", - "location": { - "column": "6", - "line": "2425", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskInternalSetTimeOutState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTaskInternalSetTimeOutState", - "What": "Function", - "defdec": "Dec", - "display": "void vTaskInternalSetTimeOutState(TimeOut_t *const)", - "location": { - "column": "6", - "line": "2425", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\task.h" - }, - "name": "vTaskInternalSetTimeOutState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@1334@macro@PORTMACRO_H", - "What": "MacroDef", - "defdec": "Def", - "display": "PORTMACRO_H", - "location": { - "column": "9", - "line": "30", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "PORTMACRO_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@1740@macro@portCHAR", - "What": "MacroDef", - "defdec": "Def", - "display": "portCHAR", - "location": { - "column": "9", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portCHAR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@1764@macro@portFLOAT", - "What": "MacroDef", - "defdec": "Def", - "display": "portFLOAT", - "location": { - "column": "9", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portFLOAT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@1790@macro@portDOUBLE", - "What": "MacroDef", - "defdec": "Def", - "display": "portDOUBLE", - "location": { - "column": "9", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portDOUBLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@1818@macro@portLONG", - "What": "MacroDef", - "defdec": "Def", - "display": "portLONG", - "location": { - "column": "9", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portLONG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@1842@macro@portSHORT", - "What": "MacroDef", - "defdec": "Def", - "display": "portSHORT", - "location": { - "column": "9", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portSHORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@1868@macro@portSTACK_TYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "portSTACK_TYPE", - "location": { - "column": "9", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portSTACK_TYPE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@1901@macro@portBASE_TYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "portBASE_TYPE", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portBASE_TYPE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@T@StackType_t", - "What": "Typedef", - "defdec": "Def", - "display": "uint32_t", - "location": { - "column": "24", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "StackType_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@T@BaseType_t", - "What": "Typedef", - "defdec": "Def", - "display": "long", - "location": { - "column": "14", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "BaseType_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@T@UBaseType_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned long", - "location": { - "column": "23", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "UBaseType_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@T@TickType_t", - "What": "Typedef", - "defdec": "Def", - "display": "uint32_t", - "location": { - "column": "19", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "TickType_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@2186@macro@portMAX_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "portMAX_DELAY", - "location": { - "column": "10", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portMAX_DELAY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@2371@macro@portTICK_TYPE_IS_ATOMIC", - "What": "MacroDef", - "defdec": "Def", - "display": "portTICK_TYPE_IS_ATOMIC", - "location": { - "column": "10", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portTICK_TYPE_IS_ATOMIC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@2512@macro@portSTACK_GROWTH", - "What": "MacroDef", - "defdec": "Def", - "display": "portSTACK_GROWTH", - "location": { - "column": "9", - "line": "74", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portSTACK_GROWTH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@2547@macro@portTICK_PERIOD_MS", - "What": "MacroDef", - "defdec": "Def", - "display": "portTICK_PERIOD_MS", - "location": { - "column": "9", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portTICK_PERIOD_MS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@2622@macro@portBYTE_ALIGNMENT", - "What": "MacroDef", - "defdec": "Def", - "display": "portBYTE_ALIGNMENT", - "location": { - "column": "9", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portBYTE_ALIGNMENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortYield", - "What": "Function", - "defdec": "Dec", - "display": "void vPortYield(void)", - "location": { - "column": "13", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "vPortYield", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortYield", - "What": "Function", - "defdec": "Dec", - "display": "void vPortYield(void)", - "location": { - "column": "13", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "vPortYield", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@2784@macro@portNVIC_INT_CTRL", - "What": "MacroDef", - "defdec": "Def", - "display": "portNVIC_INT_CTRL", - "location": { - "column": "9", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portNVIC_INT_CTRL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@2851@macro@portNVIC_PENDSVSET", - "What": "MacroDef", - "defdec": "Def", - "display": "portNVIC_PENDSVSET", - "location": { - "column": "9", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portNVIC_PENDSVSET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@2892@macro@portYIELD", - "What": "MacroDef", - "defdec": "Def", - "display": "portYIELD", - "location": { - "column": "9", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portYIELD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@2930@macro@portEND_SWITCHING_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "portEND_SWITCHING_ISR", - "location": { - "column": "9", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portEND_SWITCHING_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@3045@macro@portYIELD_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "portYIELD_FROM_ISR", - "location": { - "column": "9", - "line": "86", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portYIELD_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortEnterCritical", - "What": "Function", - "defdec": "Dec", - "display": "void vPortEnterCritical(void)", - "location": { - "column": "13", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "vPortEnterCritical", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortEnterCritical", - "What": "Function", - "defdec": "Dec", - "display": "void vPortEnterCritical(void)", - "location": { - "column": "13", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "vPortEnterCritical", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortExitCritical", - "What": "Function", - "defdec": "Dec", - "display": "void vPortExitCritical(void)", - "location": { - "column": "13", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "vPortExitCritical", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortExitCritical", - "What": "Function", - "defdec": "Dec", - "display": "void vPortExitCritical(void)", - "location": { - "column": "13", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "vPortExitCritical", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ulSetInterruptMaskFromISR", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t ulSetInterruptMaskFromISR(void)", - "location": { - "column": "17", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "ulSetInterruptMaskFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vClearInterruptMaskFromISR", - "What": "Function", - "defdec": "Dec", - "display": "void vClearInterruptMaskFromISR(uint32_t)", - "location": { - "column": "13", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "vClearInterruptMaskFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@3407@macro@portDISABLE_INTERRUPTS", - "What": "MacroDef", - "defdec": "Def", - "display": "portDISABLE_INTERRUPTS", - "location": { - "column": "9", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portDISABLE_INTERRUPTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@3472@macro@portENABLE_INTERRUPTS", - "What": "MacroDef", - "defdec": "Def", - "display": "portENABLE_INTERRUPTS", - "location": { - "column": "9", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portENABLE_INTERRUPTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@3537@macro@portENTER_CRITICAL", - "What": "MacroDef", - "defdec": "Def", - "display": "portENTER_CRITICAL", - "location": { - "column": "9", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portENTER_CRITICAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@3592@macro@portEXIT_CRITICAL", - "What": "MacroDef", - "defdec": "Def", - "display": "portEXIT_CRITICAL", - "location": { - "column": "9", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portEXIT_CRITICAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@3646@macro@portSET_INTERRUPT_MASK_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "portSET_INTERRUPT_MASK_FROM_ISR", - "location": { - "column": "9", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portSET_INTERRUPT_MASK_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@3718@macro@portCLEAR_INTERRUPT_MASK_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "portCLEAR_INTERRUPT_MASK_FROM_ISR", - "location": { - "column": "9", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portCLEAR_INTERRUPT_MASK_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortSuppressTicksAndSleep", - "What": "Function", - "defdec": "Dec", - "display": "void vPortSuppressTicksAndSleep(TickType_t)", - "location": { - "column": "14", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "vPortSuppressTicksAndSleep", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortSuppressTicksAndSleep", - "What": "Function", - "defdec": "Dec", - "display": "void vPortSuppressTicksAndSleep(TickType_t)", - "location": { - "column": "14", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "vPortSuppressTicksAndSleep", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@4024@macro@portSUPPRESS_TICKS_AND_SLEEP", - "What": "MacroDef", - "defdec": "Def", - "display": "portSUPPRESS_TICKS_AND_SLEEP", - "location": { - "column": "10", - "line": "109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portSUPPRESS_TICKS_AND_SLEEP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@4277@macro@portTASK_FUNCTION_PROTO", - "What": "MacroDef", - "defdec": "Def", - "display": "portTASK_FUNCTION_PROTO", - "location": { - "column": "9", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portTASK_FUNCTION_PROTO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@4374@macro@portTASK_FUNCTION", - "What": "MacroDef", - "defdec": "Def", - "display": "portTASK_FUNCTION", - "location": { - "column": "9", - "line": "115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portTASK_FUNCTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portmacro.h@4467@macro@portNOP", - "What": "MacroDef", - "defdec": "Def", - "display": "portNOP", - "location": { - "column": "9", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\portmacro.h" - }, - "name": "portNOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:string.h@100@macro@_STRING", - "What": "MacroDef", - "defdec": "Def", - "display": "_STRING", - "location": { - "column": "9", - "line": "4", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "_STRING", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:string.h@344@macro@NULL", - "What": "MacroDef", - "defdec": "Def", - "display": "NULL", - "location": { - "column": "11", - "line": "20", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "NULL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@memcmp", - "What": "Function", - "defdec": "Dec", - "display": "int memcmp(const void *, const void *, size_t)", - "location": { - "column": "45", - "line": "38", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "memcmp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@memcpy", - "What": "Function", - "defdec": "Dec", - "display": "void * memcpy(void *restrict, const void *restrict, size_t)", - "location": { - "column": "45", - "line": "40", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "memcpy", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@memmove", - "What": "Function", - "defdec": "Dec", - "display": "void * memmove(void *, const void *, size_t)", - "location": { - "column": "45", - "line": "43", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "memmove", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@memset", - "What": "Function", - "defdec": "Dec", - "display": "void * memset(void *, int, size_t)", - "location": { - "column": "45", - "line": "45", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "memset", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strcat", - "What": "Function", - "defdec": "Dec", - "display": "char * strcat(char *restrict, const char *restrict)", - "location": { - "column": "45", - "line": "46", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strcat", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strcmp", - "What": "Function", - "defdec": "Dec", - "display": "int strcmp(const char *, const char *)", - "location": { - "column": "45", - "line": "48", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strcmp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strcoll", - "What": "Function", - "defdec": "Dec", - "display": "int strcoll(const char *, const char *)", - "location": { - "column": "45", - "line": "49", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strcoll", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strcpy", - "What": "Function", - "defdec": "Dec", - "display": "char * strcpy(char *restrict, const char *restrict)", - "location": { - "column": "45", - "line": "50", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strcpy", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strcspn", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int strcspn(const char *, const char *)", - "location": { - "column": "45", - "line": "52", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strcspn", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strerror", - "What": "Function", - "defdec": "Dec", - "display": "char * strerror(int)", - "location": { - "column": "45", - "line": "53", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strerror", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strlen", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int strlen(const char *)", - "location": { - "column": "45", - "line": "54", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strlen", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strncat", - "What": "Function", - "defdec": "Dec", - "display": "char * strncat(char *restrict, const char *restrict, size_t)", - "location": { - "column": "45", - "line": "55", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strncat", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strncmp", - "What": "Function", - "defdec": "Dec", - "display": "int strncmp(const char *, const char *, size_t)", - "location": { - "column": "45", - "line": "58", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strncmp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strncpy", - "What": "Function", - "defdec": "Dec", - "display": "char * strncpy(char *restrict, const char *restrict, size_t)", - "location": { - "column": "45", - "line": "60", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strncpy", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strspn", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int strspn(const char *, const char *)", - "location": { - "column": "45", - "line": "63", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strspn", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strtok", - "What": "Function", - "defdec": "Dec", - "display": "char * strtok(char *restrict, const char *restrict)", - "location": { - "column": "45", - "line": "64", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strtok", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strxfrm", - "What": "Function", - "defdec": "Dec", - "display": "unsigned int strxfrm(char *restrict, const char *restrict, size_t)", - "location": { - "column": "45", - "line": "66", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strxfrm", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strdup", - "What": "Function", - "defdec": "Dec", - "display": "char * strdup(const char *)", - "location": { - "column": "45", - "line": "70", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strdup", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strcasecmp", - "What": "Function", - "defdec": "Dec", - "display": "int strcasecmp(const char *, const char *)", - "location": { - "column": "45", - "line": "71", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strcasecmp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strncasecmp", - "What": "Function", - "defdec": "Dec", - "display": "int strncasecmp(const char *, const char *, size_t)", - "location": { - "column": "45", - "line": "73", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strncasecmp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strtok_r", - "What": "Function", - "defdec": "Dec", - "display": "char * strtok_r(char *, const char *, char **)", - "location": { - "column": "45", - "line": "75", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strtok_r", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strnlen", - "What": "Function", - "defdec": "Dec", - "display": "size_t strnlen(const char *, size_t)", - "location": { - "column": "45", - "line": "77", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strnlen", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@memchr", - "What": "Function", - "defdec": "Dec", - "display": "void * memchr(const void *, int, size_t)", - "location": { - "column": "37", - "line": "171", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "memchr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strchr", - "What": "Function", - "defdec": "Dec", - "display": "char * strchr(const char *, int)", - "location": { - "column": "37", - "line": "172", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strchr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strpbrk", - "What": "Function", - "defdec": "Dec", - "display": "char * strpbrk(const char *, const char *)", - "location": { - "column": "37", - "line": "173", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strpbrk", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strrchr", - "What": "Function", - "defdec": "Dec", - "display": "char * strrchr(const char *, int)", - "location": { - "column": "37", - "line": "174", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strrchr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strstr", - "What": "Function", - "defdec": "Dec", - "display": "char * strstr(const char *, const char *)", - "location": { - "column": "37", - "line": "175", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\string.h" - }, - "name": "strstr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_string.h@326@macro@_DLIB_PRODUCTS_STRING_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRODUCTS_STRING_H_", - "location": { - "column": "9", - "line": "12", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "_DLIB_PRODUCTS_STRING_H_", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_string.h@1356@macro@_DLIB_STRING_SKIP_INLINE_MEMCPY", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STRING_SKIP_INLINE_MEMCPY", - "location": { - "column": "11", - "line": "54", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "_DLIB_STRING_SKIP_INLINE_MEMCPY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@memcpy", - "What": "Function", - "defdec": "Def", - "display": "void * memcpy(void *, const void *, size_t)", - "location": { - "column": "40", - "line": "56", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "memcpy", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_string.h@1579@macro@_DLIB_STRING_SKIP_INLINE_MEMMOVE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STRING_SKIP_INLINE_MEMMOVE", - "location": { - "column": "11", - "line": "62", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "_DLIB_STRING_SKIP_INLINE_MEMMOVE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@memmove", - "What": "Function", - "defdec": "Def", - "display": "void * memmove(void *, const void *, size_t)", - "location": { - "column": "40", - "line": "64", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "memmove", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_string.h@1805@macro@_DLIB_STRING_SKIP_INLINE_MEMSET", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STRING_SKIP_INLINE_MEMSET", - "location": { - "column": "11", - "line": "70", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "_DLIB_STRING_SKIP_INLINE_MEMSET", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@memset", - "What": "Function", - "defdec": "Def", - "display": "void * memset(void *, int, size_t)", - "location": { - "column": "37", - "line": "72", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_string.h" - }, - "name": "memset", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@1340@macro@FREERTOS_CONFIG_H", - "What": "MacroDef", - "defdec": "Def", - "display": "FREERTOS_CONFIG_H", - "location": { - "column": "9", - "line": "30", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "FREERTOS_CONFIG_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SystemCoreClock", - "What": "Variable", - "defdec": "Dec", - "display": "SystemCoreClock", - "location": { - "column": "19", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "SystemCoreClock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@1993@macro@configUSE_PREEMPTION", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_PREEMPTION", - "location": { - "column": "9", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configUSE_PREEMPTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2027@macro@configUSE_IDLE_HOOK", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_IDLE_HOOK", - "location": { - "column": "9", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configUSE_IDLE_HOOK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2061@macro@configUSE_TICK_HOOK", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_TICK_HOOK", - "location": { - "column": "9", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configUSE_TICK_HOOK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2095@macro@configCPU_CLOCK_HZ", - "What": "MacroDef", - "defdec": "Def", - "display": "configCPU_CLOCK_HZ", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configCPU_CLOCK_HZ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2146@macro@configTICK_RATE_HZ", - "What": "MacroDef", - "defdec": "Def", - "display": "configTICK_RATE_HZ", - "location": { - "column": "9", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configTICK_RATE_HZ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2201@macro@configMAX_PRIORITIES", - "What": "MacroDef", - "defdec": "Def", - "display": "configMAX_PRIORITIES", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configMAX_PRIORITIES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2239@macro@configMAX_TASK_NAME_LEN", - "What": "MacroDef", - "defdec": "Def", - "display": "configMAX_TASK_NAME_LEN", - "location": { - "column": "9", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configMAX_TASK_NAME_LEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2280@macro@configUSE_TRACE_FACILITY", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_TRACE_FACILITY", - "location": { - "column": "9", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configUSE_TRACE_FACILITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2317@macro@configUSE_16_BIT_TICKS", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_16_BIT_TICKS", - "location": { - "column": "9", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configUSE_16_BIT_TICKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2353@macro@configIDLE_SHOULD_YIELD", - "What": "MacroDef", - "defdec": "Def", - "display": "configIDLE_SHOULD_YIELD", - "location": { - "column": "9", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configIDLE_SHOULD_YIELD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2390@macro@configUSE_MUTEXES", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_MUTEXES", - "location": { - "column": "9", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configUSE_MUTEXES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2422@macro@configQUEUE_REGISTRY_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "configQUEUE_REGISTRY_SIZE", - "location": { - "column": "9", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configQUEUE_REGISTRY_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2460@macro@configCHECK_FOR_STACK_OVERFLOW", - "What": "MacroDef", - "defdec": "Def", - "display": "configCHECK_FOR_STACK_OVERFLOW", - "location": { - "column": "9", - "line": "62", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configCHECK_FOR_STACK_OVERFLOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2502@macro@configUSE_RECURSIVE_MUTEXES", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_RECURSIVE_MUTEXES", - "location": { - "column": "9", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configUSE_RECURSIVE_MUTEXES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2542@macro@configUSE_MALLOC_FAILED_HOOK", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_MALLOC_FAILED_HOOK", - "location": { - "column": "9", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configUSE_MALLOC_FAILED_HOOK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2582@macro@configUSE_APPLICATION_TASK_TAG", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_APPLICATION_TASK_TAG", - "location": { - "column": "9", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configUSE_APPLICATION_TASK_TAG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2624@macro@configUSE_COUNTING_SEMAPHORES", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_COUNTING_SEMAPHORES", - "location": { - "column": "9", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configUSE_COUNTING_SEMAPHORES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2665@macro@configGENERATE_RUN_TIME_STATS", - "What": "MacroDef", - "defdec": "Def", - "display": "configGENERATE_RUN_TIME_STATS", - "location": { - "column": "9", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configGENERATE_RUN_TIME_STATS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2750@macro@configSUPPORT_STATIC_ALLOCATION", - "What": "MacroDef", - "defdec": "Def", - "display": "configSUPPORT_STATIC_ALLOCATION", - "location": { - "column": "9", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configSUPPORT_STATIC_ALLOCATION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@2795@macro@configSUPPORT_DYNAMIC_ALLOCATION", - "What": "MacroDef", - "defdec": "Def", - "display": "configSUPPORT_DYNAMIC_ALLOCATION", - "location": { - "column": "9", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configSUPPORT_DYNAMIC_ALLOCATION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3116@macro@configMINIMAL_STACK_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "configMINIMAL_STACK_SIZE", - "location": { - "column": "9", - "line": "78", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configMINIMAL_STACK_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3178@macro@configTOTAL_HEAP_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "configTOTAL_HEAP_SIZE", - "location": { - "column": "9", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configTOTAL_HEAP_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3278@macro@configUSE_TIMERS", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_TIMERS", - "location": { - "column": "9", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configUSE_TIMERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3309@macro@configTIMER_TASK_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "configTIMER_TASK_PRIORITY", - "location": { - "column": "9", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configTIMER_TASK_PRIORITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3351@macro@configTIMER_QUEUE_LENGTH", - "What": "MacroDef", - "defdec": "Def", - "display": "configTIMER_QUEUE_LENGTH", - "location": { - "column": "9", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configTIMER_QUEUE_LENGTH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3388@macro@configTIMER_TASK_STACK_DEPTH", - "What": "MacroDef", - "defdec": "Def", - "display": "configTIMER_TASK_STACK_DEPTH", - "location": { - "column": "9", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configTIMER_TASK_STACK_DEPTH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3483@macro@configUSE_TICKLESS_IDLE", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_TICKLESS_IDLE", - "location": { - "column": "9", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configUSE_TICKLESS_IDLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3631@macro@INCLUDE_vTaskPrioritySet", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_vTaskPrioritySet", - "location": { - "column": "9", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "INCLUDE_vTaskPrioritySet", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3668@macro@INCLUDE_uxTaskPriorityGet", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_uxTaskPriorityGet", - "location": { - "column": "9", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "INCLUDE_uxTaskPriorityGet", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3706@macro@INCLUDE_vTaskDelete", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_vTaskDelete", - "location": { - "column": "9", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "INCLUDE_vTaskDelete", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3740@macro@INCLUDE_vTaskCleanUpResources", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_vTaskCleanUpResources", - "location": { - "column": "9", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "INCLUDE_vTaskCleanUpResources", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3781@macro@INCLUDE_vTaskSuspend", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_vTaskSuspend", - "location": { - "column": "9", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "INCLUDE_vTaskSuspend", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3815@macro@INCLUDE_vTaskDelayUntil", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_vTaskDelayUntil", - "location": { - "column": "9", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "INCLUDE_vTaskDelayUntil", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3852@macro@INCLUDE_vTaskDelay", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_vTaskDelay", - "location": { - "column": "9", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "INCLUDE_vTaskDelay", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@3885@macro@INCLUDE_eTaskGetState", - "What": "MacroDef", - "defdec": "Def", - "display": "INCLUDE_eTaskGetState", - "location": { - "column": "9", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "INCLUDE_eTaskGetState", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@4017@macro@configASSERT", - "What": "MacroDef", - "defdec": "Def", - "display": "configASSERT", - "location": { - "column": "9", - "line": "103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "configASSERT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@4257@macro@vPortSVCHandler", - "What": "MacroDef", - "defdec": "Def", - "display": "vPortSVCHandler", - "location": { - "column": "9", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "vPortSVCHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@4297@macro@xPortPendSVHandler", - "What": "MacroDef", - "defdec": "Def", - "display": "xPortPendSVHandler", - "location": { - "column": "9", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "xPortPendSVHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:FreeRTOSConfig.h@4340@macro@xPortSysTickHandler", - "What": "MacroDef", - "defdec": "Def", - "display": "xPortSysTickHandler", - "location": { - "column": "9", - "line": "109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\FreeRTOSConfig.h" - }, - "name": "xPortSysTickHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stdio.h@99@macro@_STDIO", - "What": "MacroDef", - "defdec": "Def", - "display": "_STDIO", - "location": { - "column": "9", - "line": "4", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "_STDIO", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdio.h@375@macro@NULL", - "What": "MacroDef", - "defdec": "Def", - "display": "NULL", - "location": { - "column": "11", - "line": "19", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "NULL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdio.h@3283@macro@EOF", - "What": "MacroDef", - "defdec": "Def", - "display": "EOF", - "location": { - "column": "9", - "line": "103", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "EOF", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdio.h@3315@macro@SEEK_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "SEEK_SET", - "location": { - "column": "9", - "line": "105", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "SEEK_SET", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdio.h@3342@macro@SEEK_CUR", - "What": "MacroDef", - "defdec": "Def", - "display": "SEEK_CUR", - "location": { - "column": "9", - "line": "106", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "SEEK_CUR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdio.h@3369@macro@SEEK_END", - "What": "MacroDef", - "defdec": "Def", - "display": "SEEK_END", - "location": { - "column": "9", - "line": "107", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "SEEK_END", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdio.h@T@fpos_t", - "What": "Typedef", - "defdec": "Def", - "display": "_Fpost", - "location": { - "column": "16", - "line": "110", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "fpos_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdio.h@3737@macro@__PRINTFPR", - "What": "MacroDef", - "defdec": "Def", - "display": "__PRINTFPR", - "location": { - "column": "11", - "line": "126", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "__PRINTFPR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdio.h@3934@macro@__SCANFPR", - "What": "MacroDef", - "defdec": "Def", - "display": "__SCANFPR", - "location": { - "column": "11", - "line": "129", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "__SCANFPR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdio.h@4131@macro@__SCANFSPR", - "What": "MacroDef", - "defdec": "Def", - "display": "__SCANFSPR", - "location": { - "column": "11", - "line": "132", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "__SCANFSPR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdio.h@4448@macro@__DEPREC_PRINTF", - "What": "MacroDef", - "defdec": "Def", - "display": "__DEPREC_PRINTF", - "location": { - "column": "9", - "line": "141", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "__DEPREC_PRINTF", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdio.h@4493@macro@__DEPREC_SCANF", - "What": "MacroDef", - "defdec": "Def", - "display": "__DEPREC_SCANF", - "location": { - "column": "9", - "line": "142", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "__DEPREC_SCANF", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__gets", - "What": "Function", - "defdec": "Dec", - "display": "char * __gets(char *, int)", - "location": { - "column": "37", - "line": "197", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "__gets", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@gets", - "What": "Function", - "defdec": "Dec", - "display": "char * gets(char *)", - "location": { - "column": "37", - "line": "198", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "gets", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@perror", - "What": "Function", - "defdec": "Dec", - "display": "void perror(const char *)", - "location": { - "column": "39", - "line": "200", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "perror", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@printf", - "What": "Function", - "defdec": "Dec", - "display": "int printf(const char *restrict, ...)", - "location": { - "column": "39", - "line": "201", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "printf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@puts", - "What": "Function", - "defdec": "Dec", - "display": "int puts(const char *)", - "location": { - "column": "39", - "line": "202", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "puts", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@scanf", - "What": "Function", - "defdec": "Dec", - "display": "int scanf(const char *restrict, ...)", - "location": { - "column": "39", - "line": "203", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "scanf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@sprintf", - "What": "Function", - "defdec": "Dec", - "display": "int sprintf(char *restrict, const char *restrict, ...)", - "location": { - "column": "39", - "line": "204", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "sprintf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@sscanf", - "What": "Function", - "defdec": "Dec", - "display": "int sscanf(const char *restrict, const char *restrict, ...)", - "location": { - "column": "39", - "line": "206", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "sscanf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__ungetchar", - "What": "Function", - "defdec": "Dec", - "display": "int __ungetchar(int)", - "location": { - "column": "39", - "line": "209", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "__ungetchar", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@vprintf", - "What": "Function", - "defdec": "Dec", - "display": "int vprintf(const char *restrict, __Va_list)", - "location": { - "column": "39", - "line": "210", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "vprintf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@vscanf", - "What": "Function", - "defdec": "Dec", - "display": "int vscanf(const char *restrict, __Va_list)", - "location": { - "column": "37", - "line": "213", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "vscanf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@vsscanf", - "What": "Function", - "defdec": "Dec", - "display": "int vsscanf(const char *restrict, const char *restrict, __Va_list)", - "location": { - "column": "37", - "line": "214", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "vsscanf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@vsprintf", - "What": "Function", - "defdec": "Dec", - "display": "int vsprintf(char *restrict, const char *restrict, __Va_list)", - "location": { - "column": "37", - "line": "217", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "vsprintf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__write_array", - "What": "Function", - "defdec": "Dec", - "display": "size_t __write_array(const void *, size_t, size_t)", - "location": { - "column": "35", - "line": "220", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "__write_array", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@snprintf", - "What": "Function", - "defdec": "Dec", - "display": "int snprintf(char *restrict, size_t, const char *restrict, ...)", - "location": { - "column": "38", - "line": "222", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "snprintf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@vsnprintf", - "What": "Function", - "defdec": "Dec", - "display": "int vsnprintf(char *restrict, size_t, const char *restrict, __Va_list)", - "location": { - "column": "38", - "line": "224", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "vsnprintf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@getchar", - "What": "Function", - "defdec": "Dec", - "display": "int getchar(void)", - "location": { - "column": "35", - "line": "229", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "getchar", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@putchar", - "What": "Function", - "defdec": "Dec", - "display": "int putchar(int)", - "location": { - "column": "35", - "line": "230", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "putchar", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@remove", - "What": "Function", - "defdec": "Dec", - "display": "int remove(const char *)", - "location": { - "column": "35", - "line": "233", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "remove", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@rename", - "What": "Function", - "defdec": "Dec", - "display": "int rename(const char *, const char *)", - "location": { - "column": "35", - "line": "234", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdio.h" - }, - "name": "rename", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:queue.h@1330@macro@QUEUE_H", - "What": "MacroDef", - "defdec": "Def", - "display": "QUEUE_H", - "location": { - "column": "9", - "line": "30", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "QUEUE_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@QueueDefinition", - "What": "Struct", - "defdec": "Dec", - "display": "QueueDefinition", - "location": { - "column": "8", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "members": [ - { - "ID": "c:@S@QueueDefinition", - "What": "Struct", - "defdec": "Dec", - "display": "QueueDefinition", - "location": { - "column": "8", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "members": [], - "name": "QueueDefinition", - "origin": "user_include", - "scope": "QueueDefinition" - } - ], - "name": "QueueDefinition", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@T@QueueHandle_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct QueueDefinition *", - "location": { - "column": "34", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "QueueHandle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@T@QueueSetHandle_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct QueueDefinition *", - "location": { - "column": "34", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "QueueSetHandle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@T@QueueSetMemberHandle_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct QueueDefinition *", - "location": { - "column": "34", - "line": "62", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "QueueSetMemberHandle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@2482@macro@queueSEND_TO_BACK", - "What": "MacroDef", - "defdec": "Def", - "display": "queueSEND_TO_BACK", - "location": { - "column": "9", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "queueSEND_TO_BACK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@2531@macro@queueSEND_TO_FRONT", - "What": "MacroDef", - "defdec": "Def", - "display": "queueSEND_TO_FRONT", - "location": { - "column": "9", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "queueSEND_TO_FRONT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@2581@macro@queueOVERWRITE", - "What": "MacroDef", - "defdec": "Def", - "display": "queueOVERWRITE", - "location": { - "column": "9", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "queueOVERWRITE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@2710@macro@queueQUEUE_TYPE_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "queueQUEUE_TYPE_BASE", - "location": { - "column": "9", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "queueQUEUE_TYPE_BASE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@2762@macro@queueQUEUE_TYPE_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "queueQUEUE_TYPE_SET", - "location": { - "column": "9", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "queueQUEUE_TYPE_SET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@2814@macro@queueQUEUE_TYPE_MUTEX", - "What": "MacroDef", - "defdec": "Def", - "display": "queueQUEUE_TYPE_MUTEX", - "location": { - "column": "9", - "line": "72", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "queueQUEUE_TYPE_MUTEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@2868@macro@queueQUEUE_TYPE_COUNTING_SEMAPHORE", - "What": "MacroDef", - "defdec": "Def", - "display": "queueQUEUE_TYPE_COUNTING_SEMAPHORE", - "location": { - "column": "9", - "line": "73", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "queueQUEUE_TYPE_COUNTING_SEMAPHORE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@2931@macro@queueQUEUE_TYPE_BINARY_SEMAPHORE", - "What": "MacroDef", - "defdec": "Def", - "display": "queueQUEUE_TYPE_BINARY_SEMAPHORE", - "location": { - "column": "9", - "line": "74", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "queueQUEUE_TYPE_BINARY_SEMAPHORE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@2992@macro@queueQUEUE_TYPE_RECURSIVE_MUTEX", - "What": "MacroDef", - "defdec": "Def", - "display": "queueQUEUE_TYPE_RECURSIVE_MUTEX", - "location": { - "column": "9", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "queueQUEUE_TYPE_RECURSIVE_MUTEX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@5383@macro@xQueueCreate", - "What": "MacroDef", - "defdec": "Def", - "display": "xQueueCreate", - "location": { - "column": "10", - "line": "146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueCreate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@11512@macro@xQueueSendToFront", - "What": "MacroDef", - "defdec": "Def", - "display": "xQueueSendToFront", - "location": { - "column": "9", - "line": "313", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueSendToFront", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@14177@macro@xQueueSendToBack", - "What": "MacroDef", - "defdec": "Def", - "display": "xQueueSendToBack", - "location": { - "column": "9", - "line": "395", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueSendToBack", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@16995@macro@xQueueSend", - "What": "MacroDef", - "defdec": "Def", - "display": "xQueueSend", - "location": { - "column": "9", - "line": "479", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueSend", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@19855@macro@xQueueOverwrite", - "What": "MacroDef", - "defdec": "Def", - "display": "xQueueOverwrite", - "location": { - "column": "9", - "line": "562", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueOverwrite", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGenericSend", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueGenericSend(QueueHandle_t, const void *const, TickType_t, const BaseType_t)", - "location": { - "column": "12", - "line": "650", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGenericSend", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGenericSend", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueGenericSend(QueueHandle_t, const void *const, TickType_t, const BaseType_t)", - "location": { - "column": "12", - "line": "650", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGenericSend", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueuePeek", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueuePeek(QueueHandle_t, void *const, TickType_t)", - "location": { - "column": "12", - "line": "744", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueuePeek", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueuePeek", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueuePeek(QueueHandle_t, void *const, TickType_t)", - "location": { - "column": "12", - "line": "744", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueuePeek", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueuePeekFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueuePeekFromISR(QueueHandle_t, void *const)", - "location": { - "column": "12", - "line": "777", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueuePeekFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueuePeekFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueuePeekFromISR(QueueHandle_t, void *const)", - "location": { - "column": "12", - "line": "777", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueuePeekFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueReceive", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueReceive(QueueHandle_t, void *const, TickType_t)", - "location": { - "column": "12", - "line": "868", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueReceive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueReceive", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueReceive(QueueHandle_t, void *const, TickType_t)", - "location": { - "column": "12", - "line": "868", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueReceive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxQueueMessagesWaiting", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxQueueMessagesWaiting(const QueueHandle_t)", - "location": { - "column": "13", - "line": "883", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "uxQueueMessagesWaiting", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxQueueMessagesWaiting", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxQueueMessagesWaiting(const QueueHandle_t)", - "location": { - "column": "13", - "line": "883", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "uxQueueMessagesWaiting", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxQueueSpacesAvailable", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxQueueSpacesAvailable(const QueueHandle_t)", - "location": { - "column": "13", - "line": "900", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "uxQueueSpacesAvailable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxQueueSpacesAvailable", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxQueueSpacesAvailable(const QueueHandle_t)", - "location": { - "column": "13", - "line": "900", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "uxQueueSpacesAvailable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vQueueDelete", - "What": "Function", - "defdec": "Dec", - "display": "void vQueueDelete(QueueHandle_t)", - "location": { - "column": "6", - "line": "914", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "vQueueDelete", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vQueueDelete", - "What": "Function", - "defdec": "Dec", - "display": "void vQueueDelete(QueueHandle_t)", - "location": { - "column": "6", - "line": "914", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "vQueueDelete", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@33354@macro@xQueueSendToFrontFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "xQueueSendToFrontFromISR", - "location": { - "column": "9", - "line": "984", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueSendToFrontFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@35789@macro@xQueueSendToBackFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "xQueueSendToBackFromISR", - "location": { - "column": "9", - "line": "1055", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueSendToBackFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@39245@macro@xQueueOverwriteFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "xQueueOverwriteFromISR", - "location": { - "column": "9", - "line": "1142", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueOverwriteFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@41876@macro@xQueueSendFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "xQueueSendFromISR", - "location": { - "column": "9", - "line": "1216", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueSendFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGenericSendFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueGenericSendFromISR(QueueHandle_t, const void *const, BaseType_t *const, const BaseType_t)", - "location": { - "column": "12", - "line": "1295", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGenericSendFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGenericSendFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueGenericSendFromISR(QueueHandle_t, const void *const, BaseType_t *const, const BaseType_t)", - "location": { - "column": "12", - "line": "1295", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGenericSendFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGiveFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueGiveFromISR(QueueHandle_t, BaseType_t *const)", - "location": { - "column": "12", - "line": "1296", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGiveFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGiveFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueGiveFromISR(QueueHandle_t, BaseType_t *const)", - "location": { - "column": "12", - "line": "1296", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGiveFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueReceiveFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueReceiveFromISR(QueueHandle_t, void *const, BaseType_t *const)", - "location": { - "column": "12", - "line": "1385", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueReceiveFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueReceiveFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueReceiveFromISR(QueueHandle_t, void *const, BaseType_t *const)", - "location": { - "column": "12", - "line": "1385", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueReceiveFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueIsQueueEmptyFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueIsQueueEmptyFromISR(const QueueHandle_t)", - "location": { - "column": "12", - "line": "1391", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueIsQueueEmptyFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueIsQueueEmptyFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueIsQueueEmptyFromISR(const QueueHandle_t)", - "location": { - "column": "12", - "line": "1391", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueIsQueueEmptyFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueIsQueueFullFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueIsQueueFullFromISR(const QueueHandle_t)", - "location": { - "column": "12", - "line": "1392", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueIsQueueFullFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueIsQueueFullFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueIsQueueFullFromISR(const QueueHandle_t)", - "location": { - "column": "12", - "line": "1392", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueIsQueueFullFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxQueueMessagesWaitingFromISR", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxQueueMessagesWaitingFromISR(const QueueHandle_t)", - "location": { - "column": "13", - "line": "1393", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "uxQueueMessagesWaitingFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxQueueMessagesWaitingFromISR", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxQueueMessagesWaitingFromISR(const QueueHandle_t)", - "location": { - "column": "13", - "line": "1393", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "uxQueueMessagesWaitingFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueCRSendFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueCRSendFromISR(QueueHandle_t, const void *, BaseType_t)", - "location": { - "column": "12", - "line": "1404", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueCRSendFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueCRReceiveFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueCRReceiveFromISR(QueueHandle_t, void *, BaseType_t *)", - "location": { - "column": "12", - "line": "1405", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueCRReceiveFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueCRSend", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueCRSend(QueueHandle_t, const void *, TickType_t)", - "location": { - "column": "12", - "line": "1406", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueCRSend", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueCRReceive", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueCRReceive(QueueHandle_t, void *, TickType_t)", - "location": { - "column": "12", - "line": "1407", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueCRReceive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueCreateMutex", - "What": "Function", - "defdec": "Dec", - "display": "QueueHandle_t xQueueCreateMutex(const uint8_t)", - "location": { - "column": "15", - "line": "1414", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueCreateMutex", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueCreateMutex", - "What": "Function", - "defdec": "Dec", - "display": "QueueHandle_t xQueueCreateMutex(const uint8_t)", - "location": { - "column": "15", - "line": "1414", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueCreateMutex", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueCreateMutexStatic", - "What": "Function", - "defdec": "Dec", - "display": "QueueHandle_t xQueueCreateMutexStatic(const uint8_t, StaticQueue_t *)", - "location": { - "column": "15", - "line": "1415", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueCreateMutexStatic", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueCreateCountingSemaphore", - "What": "Function", - "defdec": "Dec", - "display": "QueueHandle_t xQueueCreateCountingSemaphore(const UBaseType_t, const UBaseType_t)", - "location": { - "column": "15", - "line": "1416", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueCreateCountingSemaphore", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueCreateCountingSemaphore", - "What": "Function", - "defdec": "Dec", - "display": "QueueHandle_t xQueueCreateCountingSemaphore(const UBaseType_t, const UBaseType_t)", - "location": { - "column": "15", - "line": "1416", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueCreateCountingSemaphore", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueCreateCountingSemaphoreStatic", - "What": "Function", - "defdec": "Dec", - "display": "QueueHandle_t xQueueCreateCountingSemaphoreStatic(const UBaseType_t, const UBaseType_t, StaticQueue_t *)", - "location": { - "column": "15", - "line": "1417", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueCreateCountingSemaphoreStatic", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueSemaphoreTake", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueSemaphoreTake(QueueHandle_t, TickType_t)", - "location": { - "column": "12", - "line": "1418", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueSemaphoreTake", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueSemaphoreTake", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueSemaphoreTake(QueueHandle_t, TickType_t)", - "location": { - "column": "12", - "line": "1418", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueSemaphoreTake", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGetMutexHolder", - "What": "Function", - "defdec": "Dec", - "display": "TaskHandle_t xQueueGetMutexHolder(QueueHandle_t)", - "location": { - "column": "14", - "line": "1419", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGetMutexHolder", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGetMutexHolderFromISR", - "What": "Function", - "defdec": "Dec", - "display": "TaskHandle_t xQueueGetMutexHolderFromISR(QueueHandle_t)", - "location": { - "column": "14", - "line": "1420", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGetMutexHolderFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueTakeMutexRecursive", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueTakeMutexRecursive(QueueHandle_t, TickType_t)", - "location": { - "column": "12", - "line": "1426", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueTakeMutexRecursive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueTakeMutexRecursive", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueTakeMutexRecursive(QueueHandle_t, TickType_t)", - "location": { - "column": "12", - "line": "1426", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueTakeMutexRecursive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGiveMutexRecursive", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueGiveMutexRecursive(QueueHandle_t)", - "location": { - "column": "12", - "line": "1427", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGiveMutexRecursive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGiveMutexRecursive", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueGiveMutexRecursive(QueueHandle_t)", - "location": { - "column": "12", - "line": "1427", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGiveMutexRecursive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:queue.h@50533@macro@xQueueReset", - "What": "MacroDef", - "defdec": "Def", - "display": "xQueueReset", - "location": { - "column": "9", - "line": "1433", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vQueueAddToRegistry", - "What": "Function", - "defdec": "Dec", - "display": "void vQueueAddToRegistry(QueueHandle_t, const char *)", - "location": { - "column": "7", - "line": "1458", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "vQueueAddToRegistry", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vQueueAddToRegistry", - "What": "Function", - "defdec": "Dec", - "display": "void vQueueAddToRegistry(QueueHandle_t, const char *)", - "location": { - "column": "7", - "line": "1458", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "vQueueAddToRegistry", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vQueueUnregisterQueue", - "What": "Function", - "defdec": "Dec", - "display": "void vQueueUnregisterQueue(QueueHandle_t)", - "location": { - "column": "7", - "line": "1472", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "vQueueUnregisterQueue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vQueueUnregisterQueue", - "What": "Function", - "defdec": "Dec", - "display": "void vQueueUnregisterQueue(QueueHandle_t)", - "location": { - "column": "7", - "line": "1472", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "vQueueUnregisterQueue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pcQueueGetName", - "What": "Function", - "defdec": "Dec", - "display": "const char * pcQueueGetName(QueueHandle_t)", - "location": { - "column": "14", - "line": "1487", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "pcQueueGetName", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pcQueueGetName", - "What": "Function", - "defdec": "Dec", - "display": "const char * pcQueueGetName(QueueHandle_t)", - "location": { - "column": "14", - "line": "1487", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "pcQueueGetName", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGenericCreate", - "What": "Function", - "defdec": "Dec", - "display": "QueueHandle_t xQueueGenericCreate(const UBaseType_t, const UBaseType_t, const uint8_t)", - "location": { - "column": "16", - "line": "1496", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGenericCreate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGenericCreate", - "What": "Function", - "defdec": "Dec", - "display": "QueueHandle_t xQueueGenericCreate(const UBaseType_t, const UBaseType_t, const uint8_t)", - "location": { - "column": "16", - "line": "1496", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGenericCreate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueCreateSet", - "What": "Function", - "defdec": "Dec", - "display": "QueueSetHandle_t xQueueCreateSet(const UBaseType_t)", - "location": { - "column": "18", - "line": "1556", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueCreateSet", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueAddToSet", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueAddToSet(QueueSetMemberHandle_t, QueueSetHandle_t)", - "location": { - "column": "12", - "line": "1580", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueAddToSet", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueRemoveFromSet", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueRemoveFromSet(QueueSetMemberHandle_t, QueueSetHandle_t)", - "location": { - "column": "12", - "line": "1599", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueRemoveFromSet", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueSelectFromSet", - "What": "Function", - "defdec": "Dec", - "display": "QueueSetMemberHandle_t xQueueSelectFromSet(QueueSetHandle_t, const TickType_t)", - "location": { - "column": "24", - "line": "1635", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueSelectFromSet", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueSelectFromSetFromISR", - "What": "Function", - "defdec": "Dec", - "display": "QueueSetMemberHandle_t xQueueSelectFromSetFromISR(QueueSetHandle_t)", - "location": { - "column": "24", - "line": "1640", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueSelectFromSetFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vQueueWaitForMessageRestricted", - "What": "Function", - "defdec": "Dec", - "display": "void vQueueWaitForMessageRestricted(QueueHandle_t, TickType_t, const BaseType_t)", - "location": { - "column": "6", - "line": "1643", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "vQueueWaitForMessageRestricted", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vQueueWaitForMessageRestricted", - "What": "Function", - "defdec": "Dec", - "display": "void vQueueWaitForMessageRestricted(QueueHandle_t, TickType_t, const BaseType_t)", - "location": { - "column": "6", - "line": "1643", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "vQueueWaitForMessageRestricted", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGenericReset", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueGenericReset(QueueHandle_t, BaseType_t)", - "location": { - "column": "12", - "line": "1644", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGenericReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xQueueGenericReset", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xQueueGenericReset(QueueHandle_t, BaseType_t)", - "location": { - "column": "12", - "line": "1644", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "xQueueGenericReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vQueueSetQueueNumber", - "What": "Function", - "defdec": "Dec", - "display": "void vQueueSetQueueNumber(QueueHandle_t, UBaseType_t)", - "location": { - "column": "6", - "line": "1645", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "vQueueSetQueueNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vQueueSetQueueNumber", - "What": "Function", - "defdec": "Dec", - "display": "void vQueueSetQueueNumber(QueueHandle_t, UBaseType_t)", - "location": { - "column": "6", - "line": "1645", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "vQueueSetQueueNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxQueueGetQueueNumber", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxQueueGetQueueNumber(QueueHandle_t)", - "location": { - "column": "13", - "line": "1646", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "uxQueueGetQueueNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxQueueGetQueueNumber", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxQueueGetQueueNumber(QueueHandle_t)", - "location": { - "column": "13", - "line": "1646", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "uxQueueGetQueueNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ucQueueGetQueueType", - "What": "Function", - "defdec": "Dec", - "display": "uint8_t ucQueueGetQueueType(QueueHandle_t)", - "location": { - "column": "9", - "line": "1647", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "ucQueueGetQueueType", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ucQueueGetQueueType", - "What": "Function", - "defdec": "Dec", - "display": "uint8_t ucQueueGetQueueType(QueueHandle_t)", - "location": { - "column": "9", - "line": "1647", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\queue.h" - }, - "name": "ucQueueGetQueueType", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:mpu_wrappers.h@1335@macro@MPU_WRAPPERS_H", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_WRAPPERS_H", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\mpu_wrappers.h" - }, - "name": "MPU_WRAPPERS_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:mpu_wrappers.h@9092@macro@PRIVILEGED_FUNCTION", - "What": "MacroDef", - "defdec": "Def", - "display": "PRIVILEGED_FUNCTION", - "location": { - "column": "10", - "line": "178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\mpu_wrappers.h" - }, - "name": "PRIVILEGED_FUNCTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:mpu_wrappers.h@9122@macro@PRIVILEGED_DATA", - "What": "MacroDef", - "defdec": "Def", - "display": "PRIVILEGED_DATA", - "location": { - "column": "10", - "line": "179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\mpu_wrappers.h" - }, - "name": "PRIVILEGED_DATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:mpu_wrappers.h@9148@macro@FREERTOS_SYSTEM_CALL", - "What": "MacroDef", - "defdec": "Def", - "display": "FREERTOS_SYSTEM_CALL", - "location": { - "column": "10", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\mpu_wrappers.h" - }, - "name": "FREERTOS_SYSTEM_CALL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:mpu_wrappers.h@9179@macro@portUSING_MPU_WRAPPERS", - "What": "MacroDef", - "defdec": "Def", - "display": "portUSING_MPU_WRAPPERS", - "location": { - "column": "10", - "line": "181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\mpu_wrappers.h" - }, - "name": "portUSING_MPU_WRAPPERS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@201@macro@_FSL_COMMON_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_FSL_COMMON_H_", - "location": { - "column": "9", - "line": "10", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "_FSL_COMMON_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@732@macro@MAKE_STATUS", - "What": "MacroDef", - "defdec": "Def", - "display": "MAKE_STATUS", - "location": { - "column": "9", - "line": "34", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "MAKE_STATUS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@852@macro@MAKE_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "MAKE_VERSION", - "location": { - "column": "9", - "line": "37", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "MAKE_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@1025@macro@FSL_COMMON_DRIVER_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_COMMON_DRIVER_VERSION", - "location": { - "column": "9", - "line": "42", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "FSL_COMMON_DRIVER_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@1132@macro@DEBUG_CONSOLE_DEVICE_TYPE_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_DEVICE_TYPE_NONE", - "location": { - "column": "9", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DEBUG_CONSOLE_DEVICE_TYPE_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@1227@macro@DEBUG_CONSOLE_DEVICE_TYPE_UART", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_DEVICE_TYPE_UART", - "location": { - "column": "9", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DEBUG_CONSOLE_DEVICE_TYPE_UART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@1323@macro@DEBUG_CONSOLE_DEVICE_TYPE_LPUART", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_DEVICE_TYPE_LPUART", - "location": { - "column": "9", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DEBUG_CONSOLE_DEVICE_TYPE_LPUART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@1419@macro@DEBUG_CONSOLE_DEVICE_TYPE_LPSCI", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_DEVICE_TYPE_LPSCI", - "location": { - "column": "9", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DEBUG_CONSOLE_DEVICE_TYPE_LPSCI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@1515@macro@DEBUG_CONSOLE_DEVICE_TYPE_USBCDC", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_DEVICE_TYPE_USBCDC", - "location": { - "column": "9", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DEBUG_CONSOLE_DEVICE_TYPE_USBCDC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@1611@macro@DEBUG_CONSOLE_DEVICE_TYPE_FLEXCOMM", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_DEVICE_TYPE_FLEXCOMM", - "location": { - "column": "9", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DEBUG_CONSOLE_DEVICE_TYPE_FLEXCOMM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@1709@macro@DEBUG_CONSOLE_DEVICE_TYPE_IUART", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_DEVICE_TYPE_IUART", - "location": { - "column": "9", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DEBUG_CONSOLE_DEVICE_TYPE_IUART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@1808@macro@DEBUG_CONSOLE_DEVICE_TYPE_VUSART", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_DEVICE_TYPE_VUSART", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DEBUG_CONSOLE_DEVICE_TYPE_VUSART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@1908@macro@DEBUG_CONSOLE_DEVICE_TYPE_MINI_USART", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_DEVICE_TYPE_MINI_USART", - "location": { - "column": "9", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DEBUG_CONSOLE_DEVICE_TYPE_MINI_USART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@2007@macro@DEBUG_CONSOLE_DEVICE_TYPE_SWO", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_DEVICE_TYPE_SWO", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DEBUG_CONSOLE_DEVICE_TYPE_SWO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups", - "What": "Enum", - "defdec": "Def", - "display": "_status_groups", - "fields": [ - { - "ID": "c:@E@_status_groups@kStatusGroup_Generic", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_Generic", - "location": { - "column": "5", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_Generic", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_FLASH", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_FLASH", - "location": { - "column": "5", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_FLASH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LPSPI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LPSPI", - "location": { - "column": "5", - "line": "62", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LPSPI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_FLEXIO_SPI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_FLEXIO_SPI", - "location": { - "column": "5", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_FLEXIO_SPI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_DSPI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_DSPI", - "location": { - "column": "5", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_DSPI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_FLEXIO_UART", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_FLEXIO_UART", - "location": { - "column": "5", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_FLEXIO_UART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_FLEXIO_I2C", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_FLEXIO_I2C", - "location": { - "column": "5", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_FLEXIO_I2C", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LPI2C", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LPI2C", - "location": { - "column": "5", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LPI2C", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_UART", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_UART", - "location": { - "column": "5", - "line": "68", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_UART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_I2C", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_I2C", - "location": { - "column": "5", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_I2C", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LPSCI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LPSCI", - "location": { - "column": "5", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LPSCI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LPUART", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LPUART", - "location": { - "column": "5", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LPUART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SPI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SPI", - "location": { - "column": "5", - "line": "72", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SPI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_XRDC", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_XRDC", - "location": { - "column": "5", - "line": "73", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_XRDC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SEMA42", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SEMA42", - "location": { - "column": "5", - "line": "74", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SEMA42", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SDHC", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SDHC", - "location": { - "column": "5", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SDHC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SDMMC", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SDMMC", - "location": { - "column": "5", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SDMMC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SAI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SAI", - "location": { - "column": "5", - "line": "77", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SAI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_MCG", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_MCG", - "location": { - "column": "5", - "line": "78", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_MCG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SCG", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SCG", - "location": { - "column": "5", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SCG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SDSPI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SDSPI", - "location": { - "column": "5", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SDSPI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_FLEXIO_I2S", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_FLEXIO_I2S", - "location": { - "column": "5", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_FLEXIO_I2S", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_FLEXIO_MCULCD", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_FLEXIO_MCULCD", - "location": { - "column": "5", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_FLEXIO_MCULCD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_FLASHIAP", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_FLASHIAP", - "location": { - "column": "5", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_FLASHIAP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_FLEXCOMM_I2C", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_FLEXCOMM_I2C", - "location": { - "column": "5", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_FLEXCOMM_I2C", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_I2S", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_I2S", - "location": { - "column": "5", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_I2S", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_IUART", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_IUART", - "location": { - "column": "5", - "line": "86", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_IUART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_CSI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_CSI", - "location": { - "column": "5", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_CSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_MIPI_DSI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_MIPI_DSI", - "location": { - "column": "5", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_MIPI_DSI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SDRAMC", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SDRAMC", - "location": { - "column": "5", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SDRAMC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_POWER", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_POWER", - "location": { - "column": "5", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_POWER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_ENET", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_ENET", - "location": { - "column": "5", - "line": "91", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_ENET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_PHY", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_PHY", - "location": { - "column": "5", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_PHY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_TRGMUX", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_TRGMUX", - "location": { - "column": "5", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_TRGMUX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SMARTCARD", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SMARTCARD", - "location": { - "column": "5", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SMARTCARD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LMEM", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LMEM", - "location": { - "column": "5", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LMEM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_QSPI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_QSPI", - "location": { - "column": "5", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_QSPI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_DMA", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_DMA", - "location": { - "column": "5", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_DMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_EDMA", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_EDMA", - "location": { - "column": "5", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_EDMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_DMAMGR", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_DMAMGR", - "location": { - "column": "5", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_DMAMGR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_FLEXCAN", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_FLEXCAN", - "location": { - "column": "5", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_FLEXCAN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LTC", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LTC", - "location": { - "column": "5", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LTC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_FLEXIO_CAMERA", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_FLEXIO_CAMERA", - "location": { - "column": "5", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_FLEXIO_CAMERA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LPC_SPI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LPC_SPI", - "location": { - "column": "5", - "line": "103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LPC_SPI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LPC_USART", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LPC_USART", - "location": { - "column": "5", - "line": "104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LPC_USART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_DMIC", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_DMIC", - "location": { - "column": "5", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_DMIC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SDIF", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SDIF", - "location": { - "column": "5", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SDIF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SPIFI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SPIFI", - "location": { - "column": "5", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SPIFI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_OTP", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_OTP", - "location": { - "column": "5", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_OTP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_MCAN", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_MCAN", - "location": { - "column": "5", - "line": "109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_MCAN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_CAAM", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_CAAM", - "location": { - "column": "5", - "line": "110", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_CAAM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_ECSPI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_ECSPI", - "location": { - "column": "5", - "line": "111", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_ECSPI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_USDHC", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_USDHC", - "location": { - "column": "5", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_USDHC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LPC_I2C", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LPC_I2C", - "location": { - "column": "5", - "line": "113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LPC_I2C", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_DCP", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_DCP", - "location": { - "column": "5", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_DCP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_MSCAN", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_MSCAN", - "location": { - "column": "5", - "line": "115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_MSCAN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_ESAI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_ESAI", - "location": { - "column": "5", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_ESAI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_FLEXSPI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_FLEXSPI", - "location": { - "column": "5", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_FLEXSPI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_MMDC", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_MMDC", - "location": { - "column": "5", - "line": "118", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_MMDC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_PDM", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_PDM", - "location": { - "column": "5", - "line": "119", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_PDM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SDMA", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SDMA", - "location": { - "column": "5", - "line": "120", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SDMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_ICS", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_ICS", - "location": { - "column": "5", - "line": "121", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_ICS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SPDIF", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SPDIF", - "location": { - "column": "5", - "line": "122", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SPDIF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LPC_MINISPI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LPC_MINISPI", - "location": { - "column": "5", - "line": "123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LPC_MINISPI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_HASHCRYPT", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_HASHCRYPT", - "location": { - "column": "5", - "line": "124", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_HASHCRYPT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LPC_SPI_SSP", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LPC_SPI_SSP", - "location": { - "column": "5", - "line": "125", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LPC_SPI_SSP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_I3C", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_I3C", - "location": { - "column": "5", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_I3C", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LPC_I2C_1", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LPC_I2C_1", - "location": { - "column": "5", - "line": "127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LPC_I2C_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_NOTIFIER", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_NOTIFIER", - "location": { - "column": "5", - "line": "128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_NOTIFIER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_DebugConsole", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_DebugConsole", - "location": { - "column": "5", - "line": "129", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_DebugConsole", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SEMC", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SEMC", - "location": { - "column": "5", - "line": "130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SEMC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_ApplicationRangeStart", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_ApplicationRangeStart", - "location": { - "column": "5", - "line": "131", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_ApplicationRangeStart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_IAP", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_IAP", - "location": { - "column": "5", - "line": "132", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_IAP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_HAL_GPIO", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_HAL_GPIO", - "location": { - "column": "5", - "line": "134", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_HAL_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_HAL_UART", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_HAL_UART", - "location": { - "column": "5", - "line": "135", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_HAL_UART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_HAL_TIMER", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_HAL_TIMER", - "location": { - "column": "5", - "line": "136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_HAL_TIMER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_HAL_SPI", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_HAL_SPI", - "location": { - "column": "5", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_HAL_SPI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_HAL_I2C", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_HAL_I2C", - "location": { - "column": "5", - "line": "138", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_HAL_I2C", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_HAL_FLASH", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_HAL_FLASH", - "location": { - "column": "5", - "line": "139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_HAL_FLASH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_HAL_PWM", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_HAL_PWM", - "location": { - "column": "5", - "line": "140", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_HAL_PWM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_HAL_RNG", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_HAL_RNG", - "location": { - "column": "5", - "line": "141", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_HAL_RNG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_TIMERMANAGER", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_TIMERMANAGER", - "location": { - "column": "5", - "line": "142", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_TIMERMANAGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SERIALMANAGER", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SERIALMANAGER", - "location": { - "column": "5", - "line": "143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SERIALMANAGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LED", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LED", - "location": { - "column": "5", - "line": "144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_BUTTON", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_BUTTON", - "location": { - "column": "5", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_BUTTON", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_EXTERN_EEPROM", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_EXTERN_EEPROM", - "location": { - "column": "5", - "line": "146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_EXTERN_EEPROM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SHELL", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SHELL", - "location": { - "column": "5", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SHELL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_MEM_MANAGER", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_MEM_MANAGER", - "location": { - "column": "5", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_MEM_MANAGER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_LIST", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_LIST", - "location": { - "column": "5", - "line": "149", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_LIST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_OSA", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_OSA", - "location": { - "column": "5", - "line": "150", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_OSA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_COMMON_TASK", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_COMMON_TASK", - "location": { - "column": "5", - "line": "151", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_COMMON_TASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_MSG", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_MSG", - "location": { - "column": "5", - "line": "152", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_MSG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SDK_OCOTP", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SDK_OCOTP", - "location": { - "column": "5", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SDK_OCOTP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_SDK_FLEXSPINOR", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_SDK_FLEXSPINOR", - "location": { - "column": "5", - "line": "154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_SDK_FLEXSPINOR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_status_groups@kStatusGroup_CODEC", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatusGroup_CODEC", - "location": { - "column": "5", - "line": "155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatusGroup_CODEC", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "6", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "_status_groups", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_generic_status", - "What": "Enum", - "defdec": "Def", - "display": "_generic_status", - "fields": [ - { - "ID": "c:@E@_generic_status@kStatus_Success", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_Success", - "location": { - "column": "5", - "line": "161", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatus_Success", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_generic_status@kStatus_Fail", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_Fail", - "location": { - "column": "5", - "line": "162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatus_Fail", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_generic_status@kStatus_ReadOnly", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_ReadOnly", - "location": { - "column": "5", - "line": "163", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatus_ReadOnly", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_generic_status@kStatus_OutOfRange", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_OutOfRange", - "location": { - "column": "5", - "line": "164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatus_OutOfRange", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_generic_status@kStatus_InvalidArgument", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_InvalidArgument", - "location": { - "column": "5", - "line": "165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatus_InvalidArgument", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_generic_status@kStatus_Timeout", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_Timeout", - "location": { - "column": "5", - "line": "166", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatus_Timeout", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_generic_status@kStatus_NoTransferInProgress", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_NoTransferInProgress", - "location": { - "column": "5", - "line": "167", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "kStatus_NoTransferInProgress", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "6", - "line": "159", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "_generic_status", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@T@status_t", - "What": "Typedef", - "defdec": "Def", - "display": "int32_t", - "location": { - "column": "17", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "status_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@11753@macro@FSL_DRIVER_TRANSFER_DOUBLE_WEAK_IRQ", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_DRIVER_TRANSFER_DOUBLE_WEAK_IRQ", - "location": { - "column": "9", - "line": "177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "FSL_DRIVER_TRANSFER_DOUBLE_WEAK_IRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@11868@macro@MIN", - "What": "MacroDef", - "defdec": "Def", - "display": "MIN", - "location": { - "column": "9", - "line": "183", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "MIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@11942@macro@MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "MAX", - "location": { - "column": "9", - "line": "187", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "MAX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@12093@macro@ARRAY_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "ARRAY_SIZE", - "location": { - "column": "9", - "line": "193", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "ARRAY_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@12464@macro@USEC_TO_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "USEC_TO_COUNT", - "location": { - "column": "9", - "line": "210", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "USEC_TO_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@12616@macro@COUNT_TO_USEC", - "What": "MacroDef", - "defdec": "Def", - "display": "COUNT_TO_USEC", - "location": { - "column": "9", - "line": "212", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "COUNT_TO_USEC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@12783@macro@MSEC_TO_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "MSEC_TO_COUNT", - "location": { - "column": "9", - "line": "215", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "MSEC_TO_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@12932@macro@COUNT_TO_MSEC", - "What": "MacroDef", - "defdec": "Def", - "display": "COUNT_TO_MSEC", - "location": { - "column": "9", - "line": "217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "COUNT_TO_MSEC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@13293@macro@SDK_PRAGMA", - "What": "MacroDef", - "defdec": "Def", - "display": "SDK_PRAGMA", - "location": { - "column": "9", - "line": "228", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "SDK_PRAGMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@13422@macro@SDK_ALIGN", - "What": "MacroDef", - "defdec": "Def", - "display": "SDK_ALIGN", - "location": { - "column": "9", - "line": "231", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "SDK_ALIGN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@15540@macro@SDK_SIZEALIGN", - "What": "MacroDef", - "defdec": "Def", - "display": "SDK_SIZEALIGN", - "location": { - "column": "9", - "line": "274", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "SDK_SIZEALIGN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@16738@macro@AT_NONCACHEABLE_SECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "AT_NONCACHEABLE_SECTION", - "location": { - "column": "9", - "line": "292", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "AT_NONCACHEABLE_SECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@16780@macro@AT_NONCACHEABLE_SECTION_ALIGN", - "What": "MacroDef", - "defdec": "Def", - "display": "AT_NONCACHEABLE_SECTION_ALIGN", - "location": { - "column": "9", - "line": "293", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "AT_NONCACHEABLE_SECTION_ALIGN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@16880@macro@AT_NONCACHEABLE_SECTION_INIT", - "What": "MacroDef", - "defdec": "Def", - "display": "AT_NONCACHEABLE_SECTION_INIT", - "location": { - "column": "9", - "line": "294", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "AT_NONCACHEABLE_SECTION_INIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@16927@macro@AT_NONCACHEABLE_SECTION_ALIGN_INIT", - "What": "MacroDef", - "defdec": "Def", - "display": "AT_NONCACHEABLE_SECTION_ALIGN_INIT", - "location": { - "column": "9", - "line": "295", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "AT_NONCACHEABLE_SECTION_ALIGN_INIT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@20381@macro@AT_QUICKACCESS_SECTION_CODE", - "What": "MacroDef", - "defdec": "Def", - "display": "AT_QUICKACCESS_SECTION_CODE", - "location": { - "column": "9", - "line": "354", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "AT_QUICKACCESS_SECTION_CODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@20429@macro@AT_QUICKACCESS_SECTION_DATA", - "What": "MacroDef", - "defdec": "Def", - "display": "AT_QUICKACCESS_SECTION_DATA", - "location": { - "column": "9", - "line": "355", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "AT_QUICKACCESS_SECTION_DATA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@20914@macro@RAMFUNCTION_SECTION_CODE", - "What": "MacroDef", - "defdec": "Def", - "display": "RAMFUNCTION_SECTION_CODE", - "location": { - "column": "9", - "line": "370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "RAMFUNCTION_SECTION_CODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@F@EnableIRQ", - "What": "Function", - "defdec": "Def", - "display": "status_t EnableIRQ(IRQn_Type)", - "location": { - "column": "28", - "line": "419", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "EnableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@F@DisableIRQ", - "What": "Function", - "defdec": "Def", - "display": "status_t DisableIRQ(IRQn_Type)", - "location": { - "column": "28", - "line": "457", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DisableIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@F@DisableGlobalIRQ", - "What": "Function", - "defdec": "Def", - "display": "uint32_t DisableGlobalIRQ(void)", - "location": { - "column": "28", - "line": "487", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DisableGlobalIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@25307@F@DisableGlobalIRQ@regPrimask", - "What": "Variable", - "defdec": "Def", - "display": "regPrimask", - "location": { - "column": "14", - "line": "499", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "regPrimask", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_common.h@F@EnableGlobalIRQ", - "What": "Function", - "defdec": "Def", - "display": "void EnableGlobalIRQ(uint32_t)", - "location": { - "column": "24", - "line": "518", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "EnableGlobalIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@EnableDeepSleepIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void EnableDeepSleepIRQ(IRQn_Type)", - "location": { - "column": "10", - "line": "555", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "EnableDeepSleepIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@EnableDeepSleepIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void EnableDeepSleepIRQ(IRQn_Type)", - "location": { - "column": "10", - "line": "555", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "EnableDeepSleepIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DisableDeepSleepIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void DisableDeepSleepIRQ(IRQn_Type)", - "location": { - "column": "10", - "line": "570", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DisableDeepSleepIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DisableDeepSleepIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void DisableDeepSleepIRQ(IRQn_Type)", - "location": { - "column": "10", - "line": "570", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "DisableDeepSleepIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SDK_Malloc", - "What": "Function", - "defdec": "Dec", - "display": "void * SDK_Malloc(size_t, size_t)", - "location": { - "column": "11", - "line": "582", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "SDK_Malloc", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SDK_Malloc", - "What": "Function", - "defdec": "Dec", - "display": "void * SDK_Malloc(size_t, size_t)", - "location": { - "column": "11", - "line": "582", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "SDK_Malloc", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SDK_Free", - "What": "Function", - "defdec": "Dec", - "display": "void SDK_Free(void *)", - "location": { - "column": "10", - "line": "589", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "SDK_Free", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SDK_Free", - "What": "Function", - "defdec": "Dec", - "display": "void SDK_Free(void *)", - "location": { - "column": "10", - "line": "589", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.h" - }, - "name": "SDK_Free", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stdlib.h@102@macro@_STDLIB", - "What": "MacroDef", - "defdec": "Def", - "display": "_STDLIB", - "location": { - "column": "9", - "line": "5", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "_STDLIB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_Mbcurmax", - "What": "Function", - "defdec": "Dec", - "display": "size_t __iar_Mbcurmax(void)", - "location": { - "column": "25", - "line": "29", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "__iar_Mbcurmax", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdlib.h@691@macro@MB_CUR_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "MB_CUR_MAX", - "location": { - "column": "11", - "line": "31", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "MB_CUR_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdlib.h@780@macro@NULL", - "What": "MacroDef", - "defdec": "Def", - "display": "NULL", - "location": { - "column": "11", - "line": "37", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "NULL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdlib.h@811@macro@EXIT_FAILURE", - "What": "MacroDef", - "defdec": "Def", - "display": "EXIT_FAILURE", - "location": { - "column": "9", - "line": "40", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "EXIT_FAILURE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdlib.h@838@macro@EXIT_SUCCESS", - "What": "MacroDef", - "defdec": "Def", - "display": "EXIT_SUCCESS", - "location": { - "column": "9", - "line": "41", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "EXIT_SUCCESS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdlib.h@892@macro@RAND_MAX", - "What": "MacroDef", - "defdec": "Def", - "display": "RAND_MAX", - "location": { - "column": "11", - "line": "44", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "RAND_MAX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdlib.h@1018@macro@_WCHART", - "What": "MacroDef", - "defdec": "Def", - "display": "_WCHART", - "location": { - "column": "11", - "line": "51", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "_WCHART", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdlib.h@T@wchar_t", - "What": "Typedef", - "defdec": "Def", - "display": "_Wchart", - "location": { - "column": "19", - "line": "52", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "wchar_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@SA@div_t", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "members": [ - { - "ID": "c:@SA@div_t@FI@quot", - "What": "FieldDecl", - "defdec": "Def", - "display": "quot", - "location": { - "column": "7", - "line": "57", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "quot", - "origin": "system_include", - "scope": "_anonymous_stdlib_h_55_9" - }, - { - "ID": "c:@SA@div_t@FI@rem", - "What": "FieldDecl", - "defdec": "Def", - "display": "rem", - "location": { - "column": "7", - "line": "58", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "rem", - "origin": "system_include", - "scope": "_anonymous_stdlib_h_55_9" - } - ], - "name": "", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@T@div_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct div_t", - "location": { - "column": "3", - "line": "59", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "div_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@SA@ldiv_t", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "9", - "line": "61", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "members": [ - { - "ID": "c:@SA@ldiv_t@FI@quot", - "What": "FieldDecl", - "defdec": "Def", - "display": "quot", - "location": { - "column": "8", - "line": "63", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "quot", - "origin": "system_include", - "scope": "_anonymous_stdlib_h_61_9" - }, - { - "ID": "c:@SA@ldiv_t@FI@rem", - "What": "FieldDecl", - "defdec": "Def", - "display": "rem", - "location": { - "column": "8", - "line": "64", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "rem", - "origin": "system_include", - "scope": "_anonymous_stdlib_h_61_9" - } - ], - "name": "", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@T@ldiv_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct ldiv_t", - "location": { - "column": "3", - "line": "65", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "ldiv_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@SA@lldiv_t", - "What": "Struct", - "defdec": "Def", - "display": "", - "location": { - "column": "11", - "line": "68", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "members": [ - { - "ID": "c:@SA@lldiv_t@FI@quot", - "What": "FieldDecl", - "defdec": "Def", - "display": "quot", - "location": { - "column": "15", - "line": "70", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "quot", - "origin": "system_include", - "scope": "_anonymous_stdlib_h_68_11" - }, - { - "ID": "c:@SA@lldiv_t@FI@rem", - "What": "FieldDecl", - "defdec": "Def", - "display": "rem", - "location": { - "column": "15", - "line": "71", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "rem", - "origin": "system_include", - "scope": "_anonymous_stdlib_h_68_11" - } - ], - "name": "", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@T@lldiv_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct lldiv_t", - "location": { - "column": "5", - "line": "72", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "lldiv_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atexit", - "What": "Function", - "defdec": "Dec", - "display": "int atexit(void (*)(void))", - "location": { - "column": "32", - "line": "89", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "atexit", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@at_quick_exit", - "What": "Function", - "defdec": "Dec", - "display": "int at_quick_exit(void (*)(void))", - "location": { - "column": "32", - "line": "91", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "at_quick_exit", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@_Exit", - "What": "Function", - "defdec": "Dec", - "display": "void _Exit(int)", - "location": { - "column": "32", - "line": "92", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "_Exit", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@quick_exit", - "What": "Function", - "defdec": "Dec", - "display": "void quick_exit(int)", - "location": { - "column": "32", - "line": "93", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "quick_exit", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@exit", - "What": "Function", - "defdec": "Dec", - "display": "void exit(int)", - "location": { - "column": "32", - "line": "95", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "exit", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@getenv", - "What": "Function", - "defdec": "Dec", - "display": "char * getenv(const char *)", - "location": { - "column": "32", - "line": "96", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "getenv", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@system", - "What": "Function", - "defdec": "Dec", - "display": "int system(const char *)", - "location": { - "column": "32", - "line": "97", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "system", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@aligned_alloc", - "What": "Function", - "defdec": "Dec", - "display": "void * aligned_alloc(size_t, size_t)", - "location": { - "column": "39", - "line": "102", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "aligned_alloc", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@abort", - "What": "Function", - "defdec": "Dec", - "display": "void abort(void)", - "location": { - "column": "39", - "line": "104", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "abort", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@abs", - "What": "Function", - "defdec": "Dec", - "display": "int abs(int)", - "location": { - "column": "39", - "line": "105", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "abs", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@calloc", - "What": "Function", - "defdec": "Dec", - "display": "void * calloc(size_t, size_t)", - "location": { - "column": "39", - "line": "106", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "calloc", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@div", - "What": "Function", - "defdec": "Dec", - "display": "div_t div(int, int)", - "location": { - "column": "39", - "line": "107", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "div", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@free", - "What": "Function", - "defdec": "Dec", - "display": "void free(void *)", - "location": { - "column": "39", - "line": "108", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "free", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@labs", - "What": "Function", - "defdec": "Dec", - "display": "long labs(long)", - "location": { - "column": "39", - "line": "109", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "labs", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@ldiv", - "What": "Function", - "defdec": "Dec", - "display": "ldiv_t ldiv(long, long)", - "location": { - "column": "39", - "line": "110", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "ldiv", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@llabs", - "What": "Function", - "defdec": "Dec", - "display": "long long llabs(long long)", - "location": { - "column": "39", - "line": "112", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "llabs", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@lldiv", - "What": "Function", - "defdec": "Dec", - "display": "lldiv_t lldiv(long long, long long)", - "location": { - "column": "39", - "line": "113", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "lldiv", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@malloc", - "What": "Function", - "defdec": "Dec", - "display": "void * malloc(size_t)", - "location": { - "column": "39", - "line": "115", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "malloc", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@mblen", - "What": "Function", - "defdec": "Dec", - "display": "int mblen(const char *, size_t)", - "location": { - "column": "39", - "line": "116", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "mblen", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@mbstowcs", - "What": "Function", - "defdec": "Dec", - "display": "size_t mbstowcs(wchar_t *restrict, const char *restrict, size_t)", - "location": { - "column": "40", - "line": "118", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "mbstowcs", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@mbtowc", - "What": "Function", - "defdec": "Dec", - "display": "int mbtowc(wchar_t *restrict, const char *restrict, size_t)", - "location": { - "column": "40", - "line": "120", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "mbtowc", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@rand", - "What": "Function", - "defdec": "Dec", - "display": "int rand(void)", - "location": { - "column": "36", - "line": "123", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "rand", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@srand", - "What": "Function", - "defdec": "Dec", - "display": "void srand(unsigned int)", - "location": { - "column": "36", - "line": "124", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "srand", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@realloc", - "What": "Function", - "defdec": "Dec", - "display": "void * realloc(void *, size_t)", - "location": { - "column": "36", - "line": "125", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "realloc", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_realloc_in_place", - "What": "Function", - "defdec": "Dec", - "display": "void * __iar_realloc_in_place(void *, size_t)", - "location": { - "column": "36", - "line": "127", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "__iar_realloc_in_place", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strtol", - "What": "Function", - "defdec": "Dec", - "display": "long strtol(const char *restrict, char **restrict, int)", - "location": { - "column": "43", - "line": "129", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "strtol", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strtoul", - "What": "Function", - "defdec": "Dec", - "display": "unsigned long strtoul(const char *, char **, int)", - "location": { - "column": "43", - "line": "131", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "strtoul", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@wcstombs", - "What": "Function", - "defdec": "Dec", - "display": "size_t wcstombs(char *restrict, const wchar_t *restrict, size_t)", - "location": { - "column": "40", - "line": "133", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "wcstombs", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@wctomb", - "What": "Function", - "defdec": "Dec", - "display": "int wctomb(char *, wchar_t)", - "location": { - "column": "40", - "line": "136", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "wctomb", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strtoll", - "What": "Function", - "defdec": "Dec", - "display": "long long strtoll(const char *, char **, int)", - "location": { - "column": "41", - "line": "139", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "strtoll", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strtoull", - "What": "Function", - "defdec": "Dec", - "display": "unsigned long long strtoull(const char *, char **, int)", - "location": { - "column": "50", - "line": "140", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "strtoull", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdlib.h@T@_Cmpfun", - "What": "Typedef", - "defdec": "Def", - "display": "int (const void *, const void *)", - "location": { - "column": "15", - "line": "164", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "_Cmpfun", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@bsearch", - "What": "Function", - "defdec": "Dec", - "display": "void * bsearch(const void *, const void *, size_t, size_t, _Cmpfun *)", - "location": { - "column": "48", - "line": "165", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "bsearch", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@qsort", - "What": "Function", - "defdec": "Dec", - "display": "void qsort(void *, size_t, size_t, _Cmpfun *)", - "location": { - "column": "48", - "line": "168", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "qsort", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__qsortbbl", - "What": "Function", - "defdec": "Dec", - "display": "void __qsortbbl(void *, size_t, size_t, _Cmpfun *)", - "location": { - "column": "48", - "line": "170", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "__qsortbbl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atof", - "What": "Function", - "defdec": "Dec", - "display": "double atof(const char *)", - "location": { - "column": "48", - "line": "172", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "atof", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atoi", - "What": "Function", - "defdec": "Dec", - "display": "int atoi(const char *)", - "location": { - "column": "48", - "line": "173", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "atoi", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atol", - "What": "Function", - "defdec": "Dec", - "display": "long atol(const char *)", - "location": { - "column": "48", - "line": "174", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "atol", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atoll", - "What": "Function", - "defdec": "Dec", - "display": "long long atoll(const char *)", - "location": { - "column": "46", - "line": "176", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "atoll", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strtof", - "What": "Function", - "defdec": "Dec", - "display": "float strtof(const char *restrict, char **restrict)", - "location": { - "column": "46", - "line": "177", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "strtof", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strtold", - "What": "Function", - "defdec": "Dec", - "display": "long double strtold(const char *, char **)", - "location": { - "column": "46", - "line": "179", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "strtold", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@strtod", - "What": "Function", - "defdec": "Dec", - "display": "double strtod(const char *restrict, char **restrict)", - "location": { - "column": "46", - "line": "181", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "strtod", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_DLib_library_version", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_DLib_library_version(void)", - "location": { - "column": "46", - "line": "184", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "__iar_DLib_library_version", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@abs", - "What": "Function", - "defdec": "Def", - "display": "int abs(int)", - "location": { - "column": "7", - "line": "191", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "abs", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@labs", - "What": "Function", - "defdec": "Def", - "display": "long labs(long)", - "location": { - "column": "8", - "line": "197", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "labs", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@llabs", - "What": "Function", - "defdec": "Def", - "display": "long long llabs(long long)", - "location": { - "column": "15", - "line": "204", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdlib.h" - }, - "name": "llabs", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@194@macro@_FSL_CTIMER_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_FSL_CTIMER_H_", - "location": { - "column": "9", - "line": "9", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "_FSL_CTIMER_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@524@macro@FSL_CTIMER_DRIVER_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_CTIMER_DRIVER_VERSION", - "location": { - "column": "9", - "line": "26", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "FSL_CTIMER_DRIVER_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_capture_channel", - "What": "Enum", - "defdec": "Def", - "display": "_ctimer_capture_channel", - "fields": [ - { - "ID": "c:@E@_ctimer_capture_channel@kCTIMER_Capture_0", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Capture_0", - "location": { - "column": "5", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Capture_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_capture_channel@kCTIMER_Capture_1", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Capture_1", - "location": { - "column": "5", - "line": "33", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Capture_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_capture_channel@kCTIMER_Capture_2", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Capture_2", - "location": { - "column": "5", - "line": "34", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Capture_2", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "30", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "_ctimer_capture_channel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@T@ctimer_capture_channel_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _ctimer_capture_channel", - "location": { - "column": "3", - "line": "38", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "ctimer_capture_channel_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_capture_edge", - "What": "Enum", - "defdec": "Def", - "display": "_ctimer_capture_edge", - "fields": [ - { - "ID": "c:@E@_ctimer_capture_edge@kCTIMER_Capture_RiseEdge", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Capture_RiseEdge", - "location": { - "column": "5", - "line": "43", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Capture_RiseEdge", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_capture_edge@kCTIMER_Capture_FallEdge", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Capture_FallEdge", - "location": { - "column": "5", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Capture_FallEdge", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_capture_edge@kCTIMER_Capture_BothEdge", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Capture_BothEdge", - "location": { - "column": "5", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Capture_BothEdge", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "_ctimer_capture_edge", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@T@ctimer_capture_edge_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _ctimer_capture_edge", - "location": { - "column": "3", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "ctimer_capture_edge_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_match", - "What": "Enum", - "defdec": "Def", - "display": "_ctimer_match", - "fields": [ - { - "ID": "c:@E@_ctimer_match@kCTIMER_Match_0", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Match_0", - "location": { - "column": "5", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Match_0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_match@kCTIMER_Match_1", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Match_1", - "location": { - "column": "5", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Match_1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_match@kCTIMER_Match_2", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Match_2", - "location": { - "column": "5", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Match_2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_match@kCTIMER_Match_3", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Match_3", - "location": { - "column": "5", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Match_3", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "_ctimer_match", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@T@ctimer_match_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _ctimer_match", - "location": { - "column": "3", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "ctimer_match_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_match_output_control", - "What": "Enum", - "defdec": "Def", - "display": "_ctimer_match_output_control", - "fields": [ - { - "ID": "c:@E@_ctimer_match_output_control@kCTIMER_Output_NoAction", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Output_NoAction", - "location": { - "column": "5", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Output_NoAction", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_match_output_control@kCTIMER_Output_Clear", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Output_Clear", - "location": { - "column": "5", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Output_Clear", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_match_output_control@kCTIMER_Output_Set", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Output_Set", - "location": { - "column": "5", - "line": "62", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Output_Set", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_match_output_control@kCTIMER_Output_Toggle", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Output_Toggle", - "location": { - "column": "5", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Output_Toggle", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "_ctimer_match_output_control", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@T@ctimer_match_output_control_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _ctimer_match_output_control", - "location": { - "column": "3", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "ctimer_match_output_control_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_timer_mode", - "What": "Enum", - "defdec": "Def", - "display": "_ctimer_timer_mode", - "fields": [ - { - "ID": "c:@E@_ctimer_timer_mode@kCTIMER_TimerMode", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_TimerMode", - "location": { - "column": "5", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_TimerMode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_timer_mode@kCTIMER_IncreaseOnRiseEdge", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_IncreaseOnRiseEdge", - "location": { - "column": "5", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_IncreaseOnRiseEdge", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_timer_mode@kCTIMER_IncreaseOnFallEdge", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_IncreaseOnFallEdge", - "location": { - "column": "5", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_IncreaseOnFallEdge", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_timer_mode@kCTIMER_IncreaseOnBothEdge", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_IncreaseOnBothEdge", - "location": { - "column": "5", - "line": "72", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_IncreaseOnBothEdge", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "_ctimer_timer_mode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@T@ctimer_timer_mode_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _ctimer_timer_mode", - "location": { - "column": "3", - "line": "73", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "ctimer_timer_mode_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_interrupt_enable", - "What": "Enum", - "defdec": "Def", - "display": "_ctimer_interrupt_enable", - "fields": [ - { - "ID": "c:@E@_ctimer_interrupt_enable@kCTIMER_Match0InterruptEnable", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Match0InterruptEnable", - "location": { - "column": "5", - "line": "78", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Match0InterruptEnable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_interrupt_enable@kCTIMER_Match1InterruptEnable", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Match1InterruptEnable", - "location": { - "column": "5", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Match1InterruptEnable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_interrupt_enable@kCTIMER_Match2InterruptEnable", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Match2InterruptEnable", - "location": { - "column": "5", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Match2InterruptEnable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_interrupt_enable@kCTIMER_Match3InterruptEnable", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Match3InterruptEnable", - "location": { - "column": "5", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Match3InterruptEnable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_interrupt_enable@kCTIMER_Capture0InterruptEnable", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Capture0InterruptEnable", - "location": { - "column": "5", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Capture0InterruptEnable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_interrupt_enable@kCTIMER_Capture1InterruptEnable", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Capture1InterruptEnable", - "location": { - "column": "5", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Capture1InterruptEnable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_interrupt_enable@kCTIMER_Capture2InterruptEnable", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Capture2InterruptEnable", - "location": { - "column": "5", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Capture2InterruptEnable", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "_ctimer_interrupt_enable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@T@ctimer_interrupt_enable_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _ctimer_interrupt_enable", - "location": { - "column": "3", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "ctimer_interrupt_enable_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_status_flags", - "What": "Enum", - "defdec": "Def", - "display": "_ctimer_status_flags", - "fields": [ - { - "ID": "c:@E@_ctimer_status_flags@kCTIMER_Match0Flag", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Match0Flag", - "location": { - "column": "5", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Match0Flag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_status_flags@kCTIMER_Match1Flag", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Match1Flag", - "location": { - "column": "5", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Match1Flag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_status_flags@kCTIMER_Match2Flag", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Match2Flag", - "location": { - "column": "5", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Match2Flag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_status_flags@kCTIMER_Match3Flag", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Match3Flag", - "location": { - "column": "5", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Match3Flag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_status_flags@kCTIMER_Capture0Flag", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Capture0Flag", - "location": { - "column": "5", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Capture0Flag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_status_flags@kCTIMER_Capture1Flag", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Capture1Flag", - "location": { - "column": "5", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Capture1Flag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_ctimer_status_flags@kCTIMER_Capture2Flag", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_Capture2Flag", - "location": { - "column": "5", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_Capture2Flag", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "_ctimer_status_flags", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@T@ctimer_status_flags_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _ctimer_status_flags", - "location": { - "column": "3", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "ctimer_status_flags_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@T@ctimer_callback_t", - "What": "Typedef", - "defdec": "Def", - "display": "void (*)(uint32_t)", - "location": { - "column": "16", - "line": "109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "ctimer_callback_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@ctimer_callback_type_t", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@ctimer_callback_type_t@kCTIMER_SingleCallback", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_SingleCallback", - "location": { - "column": "5", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_SingleCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@ctimer_callback_type_t@kCTIMER_MultipleCallback", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER_MultipleCallback", - "location": { - "column": "5", - "line": "119", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "kCTIMER_MultipleCallback", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@ctimer_callback_type_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum ctimer_callback_type_t", - "location": { - "column": "3", - "line": "121", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "ctimer_callback_type_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_ctimer_match_config", - "What": "Struct", - "defdec": "Def", - "display": "_ctimer_match_config", - "location": { - "column": "16", - "line": "128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "members": [ - { - "ID": "c:@S@_ctimer_match_config@FI@matchValue", - "What": "FieldDecl", - "defdec": "Def", - "display": "matchValue", - "location": { - "column": "14", - "line": "130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "matchValue", - "origin": "user_include", - "scope": "_ctimer_match_config" - }, - { - "ID": "c:@S@_ctimer_match_config@FI@enableCounterReset", - "What": "FieldDecl", - "defdec": "Def", - "display": "enableCounterReset", - "location": { - "column": "10", - "line": "131", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "enableCounterReset", - "origin": "user_include", - "scope": "_ctimer_match_config" - }, - { - "ID": "c:@S@_ctimer_match_config@FI@enableCounterStop", - "What": "FieldDecl", - "defdec": "Def", - "display": "enableCounterStop", - "location": { - "column": "10", - "line": "133", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "enableCounterStop", - "origin": "user_include", - "scope": "_ctimer_match_config" - }, - { - "ID": "c:@S@_ctimer_match_config@FI@outControl", - "What": "FieldDecl", - "defdec": "Def", - "display": "outControl", - "location": { - "column": "35", - "line": "135", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "outControl", - "origin": "user_include", - "scope": "_ctimer_match_config" - }, - { - "ID": "c:@S@_ctimer_match_config@FI@outPinInitState", - "What": "FieldDecl", - "defdec": "Def", - "display": "outPinInitState", - "location": { - "column": "10", - "line": "136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "outPinInitState", - "origin": "user_include", - "scope": "_ctimer_match_config" - }, - { - "ID": "c:@S@_ctimer_match_config@FI@enableInterrupt", - "What": "FieldDecl", - "defdec": "Def", - "display": "enableInterrupt", - "location": { - "column": "10", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "enableInterrupt", - "origin": "user_include", - "scope": "_ctimer_match_config" - } - ], - "name": "_ctimer_match_config", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@T@ctimer_match_config_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _ctimer_match_config", - "location": { - "column": "3", - "line": "140", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "ctimer_match_config_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_ctimer_config", - "What": "Struct", - "defdec": "Def", - "display": "_ctimer_config", - "location": { - "column": "16", - "line": "151", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "members": [ - { - "ID": "c:@S@_ctimer_config@FI@mode", - "What": "FieldDecl", - "defdec": "Def", - "display": "mode", - "location": { - "column": "25", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "mode", - "origin": "user_include", - "scope": "_ctimer_config" - }, - { - "ID": "c:@S@_ctimer_config@FI@input", - "What": "FieldDecl", - "defdec": "Def", - "display": "input", - "location": { - "column": "30", - "line": "154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "input", - "origin": "user_include", - "scope": "_ctimer_config" - }, - { - "ID": "c:@S@_ctimer_config@FI@prescale", - "What": "FieldDecl", - "defdec": "Def", - "display": "prescale", - "location": { - "column": "14", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "prescale", - "origin": "user_include", - "scope": "_ctimer_config" - } - ], - "name": "_ctimer_config", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@T@ctimer_config_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _ctimer_config", - "location": { - "column": "3", - "line": "157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "ctimer_config_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_Init", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_Init(CTIMER_Type *, const ctimer_config_t *)", - "location": { - "column": "6", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_Init", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_Init(CTIMER_Type *, const ctimer_config_t *)", - "location": { - "column": "6", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_Deinit", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_Deinit(CTIMER_Type *)", - "location": { - "column": "6", - "line": "187", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_Deinit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_Deinit", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_Deinit(CTIMER_Type *)", - "location": { - "column": "6", - "line": "187", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_Deinit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_GetDefaultConfig", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_GetDefaultConfig(ctimer_config_t *)", - "location": { - "column": "6", - "line": "200", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_GetDefaultConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_GetDefaultConfig", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_GetDefaultConfig(ctimer_config_t *)", - "location": { - "column": "6", - "line": "200", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_GetDefaultConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_SetupPwmPeriod", - "What": "Function", - "defdec": "Dec", - "display": "status_t CTIMER_SetupPwmPeriod(CTIMER_Type *, ctimer_match_t, uint32_t, uint32_t, bool)", - "location": { - "column": "10", - "line": "229", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_SetupPwmPeriod", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_SetupPwmPeriod", - "What": "Function", - "defdec": "Dec", - "display": "status_t CTIMER_SetupPwmPeriod(CTIMER_Type *, ctimer_match_t, uint32_t, uint32_t, bool)", - "location": { - "column": "10", - "line": "229", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_SetupPwmPeriod", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_SetupPwm", - "What": "Function", - "defdec": "Dec", - "display": "status_t CTIMER_SetupPwm(CTIMER_Type *, ctimer_match_t, uint8_t, uint32_t, uint32_t, bool)", - "location": { - "column": "10", - "line": "253", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_SetupPwm", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_SetupPwm", - "What": "Function", - "defdec": "Dec", - "display": "status_t CTIMER_SetupPwm(CTIMER_Type *, ctimer_match_t, uint8_t, uint32_t, uint32_t, bool)", - "location": { - "column": "10", - "line": "253", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_SetupPwm", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@F@CTIMER_UpdatePwmPulsePeriod", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_UpdatePwmPulsePeriod(CTIMER_Type *, ctimer_match_t, uint32_t)", - "location": { - "column": "20", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_UpdatePwmPulsePeriod", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_UpdatePwmDutycycle", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_UpdatePwmDutycycle(CTIMER_Type *, ctimer_match_t, uint8_t)", - "location": { - "column": "6", - "line": "282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_UpdatePwmDutycycle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_UpdatePwmDutycycle", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_UpdatePwmDutycycle(CTIMER_Type *, ctimer_match_t, uint8_t)", - "location": { - "column": "6", - "line": "282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_UpdatePwmDutycycle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_SetupMatch", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_SetupMatch(CTIMER_Type *, ctimer_match_t, const ctimer_match_config_t *)", - "location": { - "column": "6", - "line": "295", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_SetupMatch", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_SetupMatch", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_SetupMatch(CTIMER_Type *, ctimer_match_t, const ctimer_match_config_t *)", - "location": { - "column": "6", - "line": "295", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_SetupMatch", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_SetupCapture", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_SetupCapture(CTIMER_Type *, ctimer_capture_channel_t, ctimer_capture_edge_t, bool)", - "location": { - "column": "6", - "line": "306", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_SetupCapture", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_SetupCapture", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_SetupCapture(CTIMER_Type *, ctimer_capture_channel_t, ctimer_capture_edge_t, bool)", - "location": { - "column": "6", - "line": "306", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_SetupCapture", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@F@CTIMER_GetTimerCountValue", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CTIMER_GetTimerCountValue(CTIMER_Type *)", - "location": { - "column": "24", - "line": "317", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_GetTimerCountValue", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_RegisterCallBack", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_RegisterCallBack(CTIMER_Type *, ctimer_callback_t *, ctimer_callback_type_t)", - "location": { - "column": "6", - "line": "329", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_RegisterCallBack", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@CTIMER_RegisterCallBack", - "What": "Function", - "defdec": "Dec", - "display": "void CTIMER_RegisterCallBack(CTIMER_Type *, ctimer_callback_t *, ctimer_callback_type_t)", - "location": { - "column": "6", - "line": "329", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_RegisterCallBack", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@F@CTIMER_EnableInterrupts", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_EnableInterrupts(CTIMER_Type *, uint32_t)", - "location": { - "column": "20", - "line": "343", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_EnableInterrupts", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@F@CTIMER_DisableInterrupts", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_DisableInterrupts(CTIMER_Type *, uint32_t)", - "location": { - "column": "20", - "line": "365", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_DisableInterrupts", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@F@CTIMER_GetEnabledInterrupts", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CTIMER_GetEnabledInterrupts(CTIMER_Type *)", - "location": { - "column": "24", - "line": "388", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_GetEnabledInterrupts", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@15784@F@CTIMER_GetEnabledInterrupts@enabledIntrs", - "What": "Variable", - "defdec": "Def", - "display": "enabledIntrs", - "location": { - "column": "14", - "line": "390", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "enabledIntrs", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@F@CTIMER_GetStatusFlags", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CTIMER_GetStatusFlags(CTIMER_Type *)", - "location": { - "column": "24", - "line": "423", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_GetStatusFlags", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@F@CTIMER_ClearStatusFlags", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_ClearStatusFlags(CTIMER_Type *, uint32_t)", - "location": { - "column": "20", - "line": "435", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_ClearStatusFlags", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@F@CTIMER_StartTimer", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_StartTimer(CTIMER_Type *)", - "location": { - "column": "20", - "line": "452", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_StartTimer", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@F@CTIMER_StopTimer", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_StopTimer(CTIMER_Type *)", - "location": { - "column": "20", - "line": "462", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_StopTimer", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_ctimer.h@F@CTIMER_Reset", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_Reset(CTIMER_Type *)", - "location": { - "column": "20", - "line": "476", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.h" - }, - "name": "CTIMER_Reset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:IntQueueTimer.c@1618@macro@tmrMAX_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrMAX_PRIORITY", - "location": { - "column": "9", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.c" - }, - "name": "tmrMAX_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueueTimer.c@1654@macro@trmSECOND_HIGHEST_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "trmSECOND_HIGHEST_PRIORITY", - "location": { - "column": "9", - "line": "42", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.c" - }, - "name": "trmSECOND_HIGHEST_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vInitialiseTimerForIntQueueTest", - "What": "Function", - "defdec": "Def", - "display": "void vInitialiseTimerForIntQueueTest(void)", - "location": { - "column": "6", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.c" - }, - "name": "vInitialiseTimerForIntQueueTest", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueueTimer.c@1757@F@vInitialiseTimerForIntQueueTest@xConfigTimer0", - "What": "Variable", - "defdec": "Def", - "display": "xConfigTimer0", - "location": { - "column": "17", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.c" - }, - "name": "xConfigTimer0", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueueTimer.c@1757@F@vInitialiseTimerForIntQueueTest@xConfigTimer1", - "What": "Variable", - "defdec": "Dec", - "display": "xConfigTimer1", - "location": { - "column": "32", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.c" - }, - "name": "xConfigTimer1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueueTimer.c@1804@F@vInitialiseTimerForIntQueueTest@xConfigInterrupt", - "What": "Variable", - "defdec": "Def", - "display": "xConfigInterrupt", - "location": { - "column": "23", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.c" - }, - "name": "xConfigInterrupt", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER0_IRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER0_IRQHandler(void)", - "location": { - "column": "6", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.c" - }, - "name": "CTIMER0_IRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueueTimer.c@3914@F@CTIMER0_IRQHandler@ulInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "ulInterruptStatus", - "location": { - "column": "10", - "line": "104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.c" - }, - "name": "ulInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER1_IRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER1_IRQHandler(void)", - "location": { - "column": "6", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.c" - }, - "name": "CTIMER1_IRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueueTimer.c@4295@F@CTIMER1_IRQHandler@ulInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "ulInterruptStatus", - "location": { - "column": "10", - "line": "118", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.c" - }, - "name": "ulInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.h@135@macro@_PIN_MUX_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_PIN_MUX_H_", - "location": { - "column": "9", - "line": "9", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "_PIN_MUX_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pin_mux_direction", - "What": "Enum", - "defdec": "Def", - "display": "_pin_mux_direction", - "fields": [ - { - "ID": "c:@E@_pin_mux_direction@kPIN_MUX_DirectionInput", - "What": "Enumerator", - "defdec": "Def", - "display": "kPIN_MUX_DirectionInput", - "location": { - "column": "3", - "line": "19", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "kPIN_MUX_DirectionInput", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pin_mux_direction@kPIN_MUX_DirectionOutput", - "What": "Enumerator", - "defdec": "Def", - "display": "kPIN_MUX_DirectionOutput", - "location": { - "column": "3", - "line": "20", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "kPIN_MUX_DirectionOutput", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pin_mux_direction@kPIN_MUX_DirectionInputOrOutput", - "What": "Enumerator", - "defdec": "Def", - "display": "kPIN_MUX_DirectionInputOrOutput", - "location": { - "column": "3", - "line": "21", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "kPIN_MUX_DirectionInputOrOutput", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "17", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "_pin_mux_direction", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@T@pin_mux_direction_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _pin_mux_direction", - "location": { - "column": "3", - "line": "22", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "pin_mux_direction_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitBootPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitBootPins(void)", - "location": { - "column": "6", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitBootPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitBootPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitBootPins(void)", - "location": { - "column": "6", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitBootPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitPins(void)", - "location": { - "column": "6", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitPins(void)", - "location": { - "column": "6", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@1239@macro@BOARD_LINK2MCU_SCL_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LINK2MCU_SCL_PERIPHERAL", - "location": { - "column": "9", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LINK2MCU_SCL_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@1354@macro@BOARD_LINK2MCU_SCL_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LINK2MCU_SCL_SIGNAL", - "location": { - "column": "9", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LINK2MCU_SCL_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@1478@macro@BOARD_LINK2MCU_SCL_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LINK2MCU_SCL_PIN_NAME", - "location": { - "column": "9", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LINK2MCU_SCL_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@1579@macro@BOARD_LINK2MCU_SCL_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LINK2MCU_SCL_LABEL", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LINK2MCU_SCL_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@1677@macro@BOARD_LINK2MCU_SCL_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LINK2MCU_SCL_NAME", - "location": { - "column": "9", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LINK2MCU_SCL_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@1882@macro@BOARD_LINK2MCU_SDA_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LINK2MCU_SDA_PERIPHERAL", - "location": { - "column": "9", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LINK2MCU_SDA_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@1997@macro@BOARD_LINK2MCU_SDA_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LINK2MCU_SDA_SIGNAL", - "location": { - "column": "9", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LINK2MCU_SDA_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@2121@macro@BOARD_LINK2MCU_SDA_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LINK2MCU_SDA_PIN_NAME", - "location": { - "column": "9", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LINK2MCU_SDA_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@2222@macro@BOARD_LINK2MCU_SDA_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LINK2MCU_SDA_LABEL", - "location": { - "column": "9", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LINK2MCU_SDA_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@2330@macro@BOARD_LINK2MCU_SDA_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LINK2MCU_SDA_NAME", - "location": { - "column": "9", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LINK2MCU_SDA_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitLink2MCUPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitLink2MCUPins(void)", - "location": { - "column": "6", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitLink2MCUPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitLink2MCUPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitLink2MCUPins(void)", - "location": { - "column": "6", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitLink2MCUPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@2694@macro@BOARD_SW1_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW1_GPIO", - "location": { - "column": "9", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW1_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@2809@macro@BOARD_SW1_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW1_PORT", - "location": { - "column": "9", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW1_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@2922@macro@BOARD_SW1_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW1_GPIO_PIN", - "location": { - "column": "9", - "line": "72", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW1_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@3033@macro@BOARD_SW1_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW1_PIN_NAME", - "location": { - "column": "9", - "line": "73", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW1_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@3134@macro@BOARD_SW1_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW1_LABEL", - "location": { - "column": "9", - "line": "74", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW1_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@3233@macro@BOARD_SW1_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW1_NAME", - "location": { - "column": "9", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW1_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@3341@macro@BOARD_SW1_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW1_DIRECTION", - "location": { - "column": "9", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW1_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@3525@macro@BOARD_SW2_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW2_GPIO", - "location": { - "column": "9", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW2_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@3640@macro@BOARD_SW2_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW2_PORT", - "location": { - "column": "9", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW2_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@3753@macro@BOARD_SW2_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW2_GPIO_PIN", - "location": { - "column": "9", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW2_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@3864@macro@BOARD_SW2_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW2_PIN_NAME", - "location": { - "column": "9", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW2_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@3965@macro@BOARD_SW2_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW2_LABEL", - "location": { - "column": "9", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW2_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@4063@macro@BOARD_SW2_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW2_NAME", - "location": { - "column": "9", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW2_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@4171@macro@BOARD_SW2_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW2_DIRECTION", - "location": { - "column": "9", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW2_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@4338@macro@BOARD_SW3_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_GPIO", - "location": { - "column": "9", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW3_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@4453@macro@BOARD_SW3_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_PORT", - "location": { - "column": "9", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW3_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@4566@macro@BOARD_SW3_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_GPIO_PIN", - "location": { - "column": "9", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW3_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@4676@macro@BOARD_SW3_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_PIN_NAME", - "location": { - "column": "9", - "line": "91", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW3_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@4777@macro@BOARD_SW3_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_LABEL", - "location": { - "column": "9", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW3_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@4875@macro@BOARD_SW3_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_NAME", - "location": { - "column": "9", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW3_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@4983@macro@BOARD_SW3_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SW3_DIRECTION", - "location": { - "column": "9", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SW3_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitBUTTONsPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitBUTTONsPins(void)", - "location": { - "column": "6", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitBUTTONsPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitBUTTONsPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitBUTTONsPins(void)", - "location": { - "column": "6", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitBUTTONsPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@5308@macro@BOARD_LED_BLUE_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_BLUE_GPIO", - "location": { - "column": "9", - "line": "103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_BLUE_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@5423@macro@BOARD_LED_BLUE_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_BLUE_PORT", - "location": { - "column": "9", - "line": "104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_BLUE_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@5536@macro@BOARD_LED_BLUE_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_BLUE_GPIO_PIN", - "location": { - "column": "9", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_BLUE_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@5646@macro@BOARD_LED_BLUE_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_BLUE_PIN_NAME", - "location": { - "column": "9", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_BLUE_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@5747@macro@BOARD_LED_BLUE_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_BLUE_LABEL", - "location": { - "column": "9", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_BLUE_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@5845@macro@BOARD_LED_BLUE_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_BLUE_NAME", - "location": { - "column": "9", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_BLUE_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@5953@macro@BOARD_LED_BLUE_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_BLUE_DIRECTION", - "location": { - "column": "9", - "line": "109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_BLUE_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@6118@macro@BOARD_LED_GREEN_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_GREEN_GPIO", - "location": { - "column": "9", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_GREEN_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@6233@macro@BOARD_LED_GREEN_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_GREEN_PORT", - "location": { - "column": "9", - "line": "113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_GREEN_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@6346@macro@BOARD_LED_GREEN_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_GREEN_GPIO_PIN", - "location": { - "column": "9", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_GREEN_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@6457@macro@BOARD_LED_GREEN_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_GREEN_PIN_NAME", - "location": { - "column": "9", - "line": "115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_GREEN_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@6558@macro@BOARD_LED_GREEN_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_GREEN_LABEL", - "location": { - "column": "9", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_GREEN_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@6656@macro@BOARD_LED_GREEN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_GREEN_NAME", - "location": { - "column": "9", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_GREEN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@6764@macro@BOARD_LED_GREEN_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_GREEN_DIRECTION", - "location": { - "column": "9", - "line": "118", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_GREEN_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@6930@macro@BOARD_LED_RED_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_RED_GPIO", - "location": { - "column": "9", - "line": "121", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_RED_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@7045@macro@BOARD_LED_RED_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_RED_PORT", - "location": { - "column": "9", - "line": "122", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_RED_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@7158@macro@BOARD_LED_RED_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_RED_GPIO_PIN", - "location": { - "column": "9", - "line": "123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_RED_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@7269@macro@BOARD_LED_RED_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_RED_PIN_NAME", - "location": { - "column": "9", - "line": "124", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_RED_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@7370@macro@BOARD_LED_RED_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_RED_LABEL", - "location": { - "column": "9", - "line": "125", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_RED_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@7468@macro@BOARD_LED_RED_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_RED_NAME", - "location": { - "column": "9", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_RED_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@7576@macro@BOARD_LED_RED_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_LED_RED_DIRECTION", - "location": { - "column": "9", - "line": "127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_LED_RED_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitLEDsPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitLEDsPins(void)", - "location": { - "column": "6", - "line": "133", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitLEDsPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitLEDsPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitLEDsPins(void)", - "location": { - "column": "6", - "line": "133", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitLEDsPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@7917@macro@BOARD_FC4_SCLX_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC4_SCLX_PERIPHERAL", - "location": { - "column": "9", - "line": "136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC4_SCLX_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@8032@macro@BOARD_FC4_SCLX_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC4_SCLX_SIGNAL", - "location": { - "column": "9", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC4_SCLX_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@8156@macro@BOARD_FC4_SCLX_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC4_SCLX_PIN_NAME", - "location": { - "column": "9", - "line": "138", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC4_SCLX_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@8257@macro@BOARD_FC4_SCLX_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC4_SCLX_LABEL", - "location": { - "column": "9", - "line": "139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC4_SCLX_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@8355@macro@BOARD_FC4_SCLX_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC4_SCLX_NAME", - "location": { - "column": "9", - "line": "140", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC4_SCLX_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@8537@macro@BOARD_FC4_SDAX_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC4_SDAX_PERIPHERAL", - "location": { - "column": "9", - "line": "143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC4_SDAX_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@8652@macro@BOARD_FC4_SDAX_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC4_SDAX_SIGNAL", - "location": { - "column": "9", - "line": "144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC4_SDAX_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@8776@macro@BOARD_FC4_SDAX_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC4_SDAX_PIN_NAME", - "location": { - "column": "9", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC4_SDAX_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@8877@macro@BOARD_FC4_SDAX_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC4_SDAX_LABEL", - "location": { - "column": "9", - "line": "146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC4_SDAX_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@8975@macro@BOARD_FC4_SDAX_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC4_SDAX_NAME", - "location": { - "column": "9", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC4_SDAX_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitSecureMCUPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitSecureMCUPins(void)", - "location": { - "column": "6", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitSecureMCUPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitSecureMCUPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitSecureMCUPins(void)", - "location": { - "column": "6", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitSecureMCUPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@9328@macro@BOARD_SPI_FLASH_MISO_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_MISO_PERIPHERAL", - "location": { - "column": "9", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_MISO_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@9443@macro@BOARD_SPI_FLASH_MISO_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_MISO_SIGNAL", - "location": { - "column": "9", - "line": "157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_MISO_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@9566@macro@BOARD_SPI_FLASH_MISO_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_MISO_PIN_NAME", - "location": { - "column": "9", - "line": "158", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_MISO_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@9667@macro@BOARD_SPI_FLASH_MISO_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_MISO_LABEL", - "location": { - "column": "9", - "line": "159", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_MISO_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@9765@macro@BOARD_SPI_FLASH_MISO_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_MISO_NAME", - "location": { - "column": "9", - "line": "160", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_MISO_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@9945@macro@BOARD_SPI_FLASH_SCK_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_SCK_PERIPHERAL", - "location": { - "column": "9", - "line": "163", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_SCK_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@10060@macro@BOARD_SPI_FLASH_SCK_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_SCK_SIGNAL", - "location": { - "column": "9", - "line": "164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_SCK_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@10174@macro@BOARD_SPI_FLASH_SCK_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_SCK_PIN_NAME", - "location": { - "column": "9", - "line": "165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_SCK_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@10275@macro@BOARD_SPI_FLASH_SCK_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_SCK_LABEL", - "location": { - "column": "9", - "line": "166", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_SCK_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@10373@macro@BOARD_SPI_FLASH_SCK_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_SCK_NAME", - "location": { - "column": "9", - "line": "167", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_SCK_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@10556@macro@BOARD_SPI_FLASH_MOSI_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_MOSI_PERIPHERAL", - "location": { - "column": "9", - "line": "170", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_MOSI_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@10671@macro@BOARD_SPI_FLASH_MOSI_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_MOSI_SIGNAL", - "location": { - "column": "9", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_MOSI_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@10794@macro@BOARD_SPI_FLASH_MOSI_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_MOSI_PIN_NAME", - "location": { - "column": "9", - "line": "172", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_MOSI_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@10895@macro@BOARD_SPI_FLASH_MOSI_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_MOSI_LABEL", - "location": { - "column": "9", - "line": "173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_MOSI_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@10993@macro@BOARD_SPI_FLASH_MOSI_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_SPI_FLASH_MOSI_NAME", - "location": { - "column": "9", - "line": "174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_SPI_FLASH_MOSI_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@11167@macro@BOARD_FC5_SSEL3_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC5_SSEL3_PERIPHERAL", - "location": { - "column": "9", - "line": "177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC5_SSEL3_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@11282@macro@BOARD_FC5_SSEL3_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC5_SSEL3_SIGNAL", - "location": { - "column": "9", - "line": "178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC5_SSEL3_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@11398@macro@BOARD_FC5_SSEL3_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC5_SSEL3_PIN_NAME", - "location": { - "column": "9", - "line": "179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC5_SSEL3_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@11499@macro@BOARD_FC5_SSEL3_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC5_SSEL3_LABEL", - "location": { - "column": "9", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC5_SSEL3_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@11597@macro@BOARD_FC5_SSEL3_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_FC5_SSEL3_NAME", - "location": { - "column": "9", - "line": "181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_FC5_SSEL3_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitSPI_FLASHPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitSPI_FLASHPins(void)", - "location": { - "column": "6", - "line": "187", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitSPI_FLASHPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitSPI_FLASHPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitSPI_FLASHPins(void)", - "location": { - "column": "6", - "line": "187", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitSPI_FLASHPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@11940@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_GPIO", - "location": { - "column": "9", - "line": "190", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@12055@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_PORT", - "location": { - "column": "9", - "line": "191", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@12168@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_GPIO_PIN", - "location": { - "column": "9", - "line": "192", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@12278@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_PIN_NAME", - "location": { - "column": "9", - "line": "193", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@12379@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_LABEL", - "location": { - "column": "9", - "line": "194", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@12494@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_NAME", - "location": { - "column": "9", - "line": "195", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_INTR_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@12658@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_PERIPHERAL", - "location": { - "column": "9", - "line": "198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@12773@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_SIGNAL", - "location": { - "column": "9", - "line": "199", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@12887@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_PIN_NAME", - "location": { - "column": "9", - "line": "200", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@12988@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_LABEL", - "location": { - "column": "9", - "line": "201", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@13092@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_NAME", - "location": { - "column": "9", - "line": "202", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@13200@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_DIRECTION", - "location": { - "column": "9", - "line": "203", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SCK_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@13375@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_PERIPHERAL", - "location": { - "column": "9", - "line": "206", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@13490@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_SIGNAL", - "location": { - "column": "9", - "line": "207", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@13613@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_PIN_NAME", - "location": { - "column": "9", - "line": "208", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@13714@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_LABEL", - "location": { - "column": "9", - "line": "209", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@13820@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_NAME", - "location": { - "column": "9", - "line": "210", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@13928@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_DIRECTION", - "location": { - "column": "9", - "line": "211", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MOSI_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@14104@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_PERIPHERAL", - "location": { - "column": "9", - "line": "214", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@14219@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_SIGNAL", - "location": { - "column": "9", - "line": "215", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@14342@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_PIN_NAME", - "location": { - "column": "9", - "line": "216", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@14443@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_LABEL", - "location": { - "column": "9", - "line": "217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@14549@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_NAME", - "location": { - "column": "9", - "line": "218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@14657@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_DIRECTION", - "location": { - "column": "9", - "line": "219", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_MISO_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@14850@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_PERIPHERAL", - "location": { - "column": "9", - "line": "222", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@14965@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_SIGNAL", - "location": { - "column": "9", - "line": "223", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@15089@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_PIN_NAME", - "location": { - "column": "9", - "line": "224", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@15190@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_LABEL", - "location": { - "column": "9", - "line": "225", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@15313@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_NAME", - "location": { - "column": "9", - "line": "226", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@15421@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_DIRECTION", - "location": { - "column": "9", - "line": "227", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_T_SSEL_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@15585@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_GPIO", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_GPIO", - "location": { - "column": "9", - "line": "230", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_GPIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@15700@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_PORT", - "location": { - "column": "9", - "line": "231", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_PORT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@15813@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_GPIO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_GPIO_PIN", - "location": { - "column": "9", - "line": "232", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_GPIO_PIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@15924@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_PIN_NAME", - "location": { - "column": "9", - "line": "233", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@16025@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_LABEL", - "location": { - "column": "9", - "line": "234", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@16126@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_NAME", - "location": { - "column": "9", - "line": "235", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_GPIO_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@16319@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_PERIPHERAL", - "location": { - "column": "9", - "line": "238", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@16434@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_SIGNAL", - "location": { - "column": "9", - "line": "239", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@16558@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_PIN_NAME", - "location": { - "column": "9", - "line": "240", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@16659@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_LABEL", - "location": { - "column": "9", - "line": "241", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@16781@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_NAME", - "location": { - "column": "9", - "line": "242", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SCL_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@16986@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_PERIPHERAL", - "location": { - "column": "9", - "line": "245", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@17101@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_SIGNAL", - "location": { - "column": "9", - "line": "246", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@17225@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_PIN_NAME", - "location": { - "column": "9", - "line": "247", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@17330@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_LABEL", - "location": { - "column": "9", - "line": "248", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@17471@macro@BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_NAME", - "location": { - "column": "9", - "line": "249", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_INITPMOD_SPI_I2C_BRIDGEPINS_BRIDGE_SDA_WAKEUP_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitPMod_SPI_I2C_BRIDGEPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitPMod_SPI_I2C_BRIDGEPins(void)", - "location": { - "column": "6", - "line": "255", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitPMod_SPI_I2C_BRIDGEPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitPMod_SPI_I2C_BRIDGEPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitPMod_SPI_I2C_BRIDGEPins(void)", - "location": { - "column": "6", - "line": "255", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitPMod_SPI_I2C_BRIDGEPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@17809@macro@BOARD_USB_DP_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_DP_PERIPHERAL", - "location": { - "column": "9", - "line": "258", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_DP_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@17919@macro@BOARD_USB_DP_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_DP_SIGNAL", - "location": { - "column": "9", - "line": "259", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_DP_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@18031@macro@BOARD_USB_DP_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_DP_PIN_NAME", - "location": { - "column": "9", - "line": "260", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_DP_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@18132@macro@BOARD_USB_DP_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_DP_LABEL", - "location": { - "column": "9", - "line": "261", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_DP_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@18230@macro@BOARD_USB_DP_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_DP_NAME", - "location": { - "column": "9", - "line": "262", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_DP_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@18386@macro@BOARD_USB_DM_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_DM_PERIPHERAL", - "location": { - "column": "9", - "line": "265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_DM_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@18496@macro@BOARD_USB_DM_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_DM_SIGNAL", - "location": { - "column": "9", - "line": "266", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_DM_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@18608@macro@BOARD_USB_DM_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_DM_PIN_NAME", - "location": { - "column": "9", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_DM_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@18709@macro@BOARD_USB_DM_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_DM_LABEL", - "location": { - "column": "9", - "line": "268", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_DM_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@18807@macro@BOARD_USB_DM_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_DM_NAME", - "location": { - "column": "9", - "line": "269", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_DM_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@18990@macro@BOARD_USB_VBUS_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_VBUS_PERIPHERAL", - "location": { - "column": "9", - "line": "272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_VBUS_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@19100@macro@BOARD_USB_VBUS_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_VBUS_SIGNAL", - "location": { - "column": "9", - "line": "273", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_VBUS_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@19214@macro@BOARD_USB_VBUS_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_VBUS_PIN_NAME", - "location": { - "column": "9", - "line": "274", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_VBUS_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@19315@macro@BOARD_USB_VBUS_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_VBUS_LABEL", - "location": { - "column": "9", - "line": "275", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_VBUS_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@19413@macro@BOARD_USB_VBUS_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USB_VBUS_NAME", - "location": { - "column": "9", - "line": "276", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_USB_VBUS_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitUSBPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitUSBPins(void)", - "location": { - "column": "6", - "line": "282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitUSBPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitUSBPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitUSBPins(void)", - "location": { - "column": "6", - "line": "282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitUSBPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@19749@macro@BOARD_DEBUG_UART_TX_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_TX_PERIPHERAL", - "location": { - "column": "9", - "line": "285", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_UART_TX_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@19864@macro@BOARD_DEBUG_UART_TX_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_TX_SIGNAL", - "location": { - "column": "9", - "line": "286", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_UART_TX_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@19987@macro@BOARD_DEBUG_UART_TX_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_TX_PIN_NAME", - "location": { - "column": "9", - "line": "287", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_UART_TX_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@20088@macro@BOARD_DEBUG_UART_TX_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_TX_LABEL", - "location": { - "column": "9", - "line": "288", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_UART_TX_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@20186@macro@BOARD_DEBUG_UART_TX_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_TX_NAME", - "location": { - "column": "9", - "line": "289", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_UART_TX_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@20294@macro@BOARD_DEBUG_UART_TX_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_TX_DIRECTION", - "location": { - "column": "9", - "line": "290", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_UART_TX_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@20461@macro@BOARD_DEBUG_UART_RX_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_RX_PERIPHERAL", - "location": { - "column": "9", - "line": "293", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_UART_RX_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@20576@macro@BOARD_DEBUG_UART_RX_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_RX_SIGNAL", - "location": { - "column": "9", - "line": "294", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_UART_RX_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@20699@macro@BOARD_DEBUG_UART_RX_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_RX_PIN_NAME", - "location": { - "column": "9", - "line": "295", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_UART_RX_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@20800@macro@BOARD_DEBUG_UART_RX_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_RX_LABEL", - "location": { - "column": "9", - "line": "296", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_UART_RX_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@20898@macro@BOARD_DEBUG_UART_RX_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_RX_NAME", - "location": { - "column": "9", - "line": "297", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_UART_RX_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@21006@macro@BOARD_DEBUG_UART_RX_DIRECTION", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_UART_RX_DIRECTION", - "location": { - "column": "9", - "line": "298", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_UART_RX_DIRECTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitDEBUG_UARTPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitDEBUG_UARTPins(void)", - "location": { - "column": "6", - "line": "304", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitDEBUG_UARTPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitDEBUG_UARTPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitDEBUG_UARTPins(void)", - "location": { - "column": "6", - "line": "304", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitDEBUG_UARTPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@21355@macro@BOARD_DEBUG_SWD_SWDIO_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_SWD_SWDIO_PERIPHERAL", - "location": { - "column": "9", - "line": "307", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_SWD_SWDIO_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@21464@macro@BOARD_DEBUG_SWD_SWDIO_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_SWD_SWDIO_SIGNAL", - "location": { - "column": "9", - "line": "308", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_SWD_SWDIO_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@21574@macro@BOARD_DEBUG_SWD_SWDIO_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_SWD_SWDIO_PIN_NAME", - "location": { - "column": "9", - "line": "309", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_SWD_SWDIO_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@21675@macro@BOARD_DEBUG_SWD_SWDIO_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_SWD_SWDIO_LABEL", - "location": { - "column": "9", - "line": "310", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_SWD_SWDIO_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@21776@macro@BOARD_DEBUG_SWD_SWDIO_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_SWD_SWDIO_NAME", - "location": { - "column": "9", - "line": "311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_SWD_SWDIO_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@21955@macro@BOARD_DEBUG_SWD_SWDCLK_PERIPHERAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_SWD_SWDCLK_PERIPHERAL", - "location": { - "column": "9", - "line": "314", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_SWD_SWDCLK_PERIPHERAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@22064@macro@BOARD_DEBUG_SWD_SWDCLK_SIGNAL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_SWD_SWDCLK_SIGNAL", - "location": { - "column": "9", - "line": "315", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_SWD_SWDCLK_SIGNAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@22174@macro@BOARD_DEBUG_SWD_SWDCLK_PIN_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_SWD_SWDCLK_PIN_NAME", - "location": { - "column": "9", - "line": "316", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_SWD_SWDCLK_PIN_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@22275@macro@BOARD_DEBUG_SWD_SWDCLK_LABEL", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_SWD_SWDCLK_LABEL", - "location": { - "column": "9", - "line": "317", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_SWD_SWDCLK_LABEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:pin_mux.h@22373@macro@BOARD_DEBUG_SWD_SWDCLK_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_DEBUG_SWD_SWDCLK_NAME", - "location": { - "column": "9", - "line": "318", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_DEBUG_SWD_SWDCLK_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitSWD_DEBUGPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitSWD_DEBUGPins(void)", - "location": { - "column": "6", - "line": "324", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitSWD_DEBUGPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitSWD_DEBUGPins", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitSWD_DEBUGPins(void)", - "location": { - "column": "6", - "line": "324", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.h" - }, - "name": "BOARD_InitSWD_DEBUGPins", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@147@macro@__SERIAL_MANAGER_H__", - "What": "MacroDef", - "defdec": "Def", - "display": "__SERIAL_MANAGER_H__", - "location": { - "column": "9", - "line": "10", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "__SERIAL_MANAGER_H__", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@640@macro@SERIAL_MANAGER_NON_BLOCKING_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_MANAGER_NON_BLOCKING_MODE", - "location": { - "column": "9", - "line": "25", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SERIAL_MANAGER_NON_BLOCKING_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@805@macro@SERIAL_PORT_TYPE_UART", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_PORT_TYPE_UART", - "location": { - "column": "9", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SERIAL_PORT_TYPE_UART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@956@macro@SERIAL_PORT_TYPE_USBCDC", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_PORT_TYPE_USBCDC", - "location": { - "column": "9", - "line": "36", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SERIAL_PORT_TYPE_USBCDC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@1102@macro@SERIAL_PORT_TYPE_SWO", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_PORT_TYPE_SWO", - "location": { - "column": "9", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SERIAL_PORT_TYPE_SWO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@1268@macro@SERIAL_PORT_TYPE_USBCDC_VIRTUAL", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_PORT_TYPE_USBCDC_VIRTUAL", - "location": { - "column": "9", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SERIAL_PORT_TYPE_USBCDC_VIRTUAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@1570@macro@SERIAL_MANAGER_WRITE_HANDLE_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_MANAGER_WRITE_HANDLE_SIZE", - "location": { - "column": "9", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SERIAL_MANAGER_WRITE_HANDLE_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@1617@macro@SERIAL_MANAGER_READ_HANDLE_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_MANAGER_READ_HANDLE_SIZE", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SERIAL_MANAGER_READ_HANDLE_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@2502@macro@SERIAL_MANAGER_HANDLE_SIZE_TEMP", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_MANAGER_HANDLE_SIZE_TEMP", - "location": { - "column": "9", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SERIAL_MANAGER_HANDLE_SIZE_TEMP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@2728@macro@SERIAL_MANAGER_HANDLE_SIZE_TEMP", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_MANAGER_HANDLE_SIZE_TEMP", - "location": { - "column": "9", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SERIAL_MANAGER_HANDLE_SIZE_TEMP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@4216@macro@SERIAL_MANAGER_HANDLE_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_MANAGER_HANDLE_SIZE", - "location": { - "column": "9", - "line": "130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SERIAL_MANAGER_HANDLE_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@4302@macro@SERIAL_MANAGER_USE_COMMON_TASK", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_MANAGER_USE_COMMON_TASK", - "location": { - "column": "9", - "line": "133", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SERIAL_MANAGER_USE_COMMON_TASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@4347@macro@SERIAL_MANAGER_TASK_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_MANAGER_TASK_PRIORITY", - "location": { - "column": "9", - "line": "134", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SERIAL_MANAGER_TASK_PRIORITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@4390@macro@SERIAL_MANAGER_TASK_STACK_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_MANAGER_TASK_STACK_SIZE", - "location": { - "column": "9", - "line": "135", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SERIAL_MANAGER_TASK_STACK_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@T@serial_handle_t", - "What": "Typedef", - "defdec": "Def", - "display": "void *", - "location": { - "column": "15", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "serial_handle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@T@serial_write_handle_t", - "What": "Typedef", - "defdec": "Def", - "display": "void *", - "location": { - "column": "15", - "line": "138", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "serial_write_handle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@T@serial_read_handle_t", - "What": "Typedef", - "defdec": "Def", - "display": "void *", - "location": { - "column": "15", - "line": "139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "serial_read_handle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_port_type", - "What": "Enum", - "defdec": "Def", - "display": "_serial_port_type", - "fields": [ - { - "ID": "c:@E@_serial_port_type@kSerialPort_Uart", - "What": "Enumerator", - "defdec": "Def", - "display": "kSerialPort_Uart", - "location": { - "column": "5", - "line": "144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "kSerialPort_Uart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_port_type@kSerialPort_UsbCdc", - "What": "Enumerator", - "defdec": "Def", - "display": "kSerialPort_UsbCdc", - "location": { - "column": "5", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "kSerialPort_UsbCdc", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_port_type@kSerialPort_Swo", - "What": "Enumerator", - "defdec": "Def", - "display": "kSerialPort_Swo", - "location": { - "column": "5", - "line": "146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "kSerialPort_Swo", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_port_type@kSerialPort_UsbCdcVirtual", - "What": "Enumerator", - "defdec": "Def", - "display": "kSerialPort_UsbCdcVirtual", - "location": { - "column": "5", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "kSerialPort_UsbCdcVirtual", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "142", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "_serial_port_type", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@T@serial_port_type_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _serial_port_type", - "location": { - "column": "3", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "serial_port_type_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_serial_manager_config", - "What": "Struct", - "defdec": "Def", - "display": "_serial_manager_config", - "location": { - "column": "16", - "line": "151", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "members": [ - { - "ID": "c:@S@_serial_manager_config@FI@ringBuffer", - "What": "FieldDecl", - "defdec": "Def", - "display": "ringBuffer", - "location": { - "column": "14", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "ringBuffer", - "origin": "user_include", - "scope": "_serial_manager_config" - }, - { - "ID": "c:@S@_serial_manager_config@FI@ringBufferSize", - "What": "FieldDecl", - "defdec": "Def", - "display": "ringBufferSize", - "location": { - "column": "14", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "ringBufferSize", - "origin": "user_include", - "scope": "_serial_manager_config" - }, - { - "ID": "c:@S@_serial_manager_config@FI@type", - "What": "FieldDecl", - "defdec": "Def", - "display": "type", - "location": { - "column": "24", - "line": "157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "type", - "origin": "user_include", - "scope": "_serial_manager_config" - }, - { - "ID": "c:@S@_serial_manager_config@FI@portConfig", - "What": "FieldDecl", - "defdec": "Def", - "display": "portConfig", - "location": { - "column": "11", - "line": "158", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "portConfig", - "origin": "user_include", - "scope": "_serial_manager_config" - } - ], - "name": "_serial_manager_config", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@T@serial_manager_config_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _serial_manager_config", - "location": { - "column": "3", - "line": "159", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "serial_manager_config_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_manager_status", - "What": "Enum", - "defdec": "Def", - "display": "_serial_manager_status", - "fields": [ - { - "ID": "c:@E@_serial_manager_status@kStatus_SerialManager_Success", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_SerialManager_Success", - "location": { - "column": "5", - "line": "164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "kStatus_SerialManager_Success", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_manager_status@kStatus_SerialManager_Error", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_SerialManager_Error", - "location": { - "column": "5", - "line": "165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "kStatus_SerialManager_Error", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_manager_status@kStatus_SerialManager_Busy", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_SerialManager_Busy", - "location": { - "column": "5", - "line": "166", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "kStatus_SerialManager_Busy", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_manager_status@kStatus_SerialManager_Notify", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_SerialManager_Notify", - "location": { - "column": "5", - "line": "167", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "kStatus_SerialManager_Notify", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_manager_status@kStatus_SerialManager_Canceled", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_SerialManager_Canceled", - "location": { - "column": "5", - "line": "168", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "kStatus_SerialManager_Canceled", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_manager_status@kStatus_SerialManager_HandleConflict", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_SerialManager_HandleConflict", - "location": { - "column": "5", - "line": "170", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "kStatus_SerialManager_HandleConflict", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_manager_status@kStatus_SerialManager_RingBufferOverflow", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_SerialManager_RingBufferOverflow", - "location": { - "column": "5", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "kStatus_SerialManager_RingBufferOverflow", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "_serial_manager_status", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@T@serial_manager_status_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _serial_manager_status", - "location": { - "column": "3", - "line": "173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "serial_manager_status_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_serial_manager_callback_message", - "What": "Struct", - "defdec": "Def", - "display": "_serial_manager_callback_message", - "location": { - "column": "16", - "line": "176", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "members": [ - { - "ID": "c:@S@_serial_manager_callback_message@FI@buffer", - "What": "FieldDecl", - "defdec": "Def", - "display": "buffer", - "location": { - "column": "14", - "line": "178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "buffer", - "origin": "user_include", - "scope": "_serial_manager_callback_message" - }, - { - "ID": "c:@S@_serial_manager_callback_message@FI@length", - "What": "FieldDecl", - "defdec": "Def", - "display": "length", - "location": { - "column": "14", - "line": "179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "length", - "origin": "user_include", - "scope": "_serial_manager_callback_message" - } - ], - "name": "_serial_manager_callback_message", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@T@serial_manager_callback_message_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _serial_manager_callback_message", - "location": { - "column": "3", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "serial_manager_callback_message_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_manager.h@T@serial_manager_callback_t", - "What": "Typedef", - "defdec": "Def", - "display": "void (*)(void *, serial_manager_callback_message_t *, serial_manager_status_t)", - "location": { - "column": "16", - "line": "183", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "serial_manager_callback_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_Init", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_Init(serial_handle_t, serial_manager_config_t *)", - "location": { - "column": "25", - "line": "252", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_Init", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_Init(serial_handle_t, serial_manager_config_t *)", - "location": { - "column": "25", - "line": "252", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_Deinit", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_Deinit(serial_handle_t)", - "location": { - "column": "25", - "line": "264", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_Deinit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_Deinit", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_Deinit(serial_handle_t)", - "location": { - "column": "25", - "line": "264", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_Deinit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_OpenWriteHandle", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_OpenWriteHandle(serial_handle_t, serial_write_handle_t)", - "location": { - "column": "25", - "line": "301", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_OpenWriteHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_OpenWriteHandle", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_OpenWriteHandle(serial_handle_t, serial_write_handle_t)", - "location": { - "column": "25", - "line": "301", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_OpenWriteHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_CloseWriteHandle", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_CloseWriteHandle(serial_write_handle_t)", - "location": { - "column": "25", - "line": "311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_CloseWriteHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_CloseWriteHandle", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_CloseWriteHandle(serial_write_handle_t)", - "location": { - "column": "25", - "line": "311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_CloseWriteHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_OpenReadHandle", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_OpenReadHandle(serial_handle_t, serial_read_handle_t)", - "location": { - "column": "25", - "line": "337", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_OpenReadHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_OpenReadHandle", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_OpenReadHandle(serial_handle_t, serial_read_handle_t)", - "location": { - "column": "25", - "line": "337", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_OpenReadHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_CloseReadHandle", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_CloseReadHandle(serial_read_handle_t)", - "location": { - "column": "25", - "line": "347", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_CloseReadHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_CloseReadHandle", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_CloseReadHandle(serial_read_handle_t)", - "location": { - "column": "25", - "line": "347", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_CloseReadHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_WriteBlocking", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_WriteBlocking(serial_write_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "25", - "line": "367", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_WriteBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_WriteBlocking", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_WriteBlocking(serial_write_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "25", - "line": "367", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_WriteBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_ReadBlocking", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_ReadBlocking(serial_read_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "25", - "line": "389", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_ReadBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_ReadBlocking", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_ReadBlocking(serial_read_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "25", - "line": "389", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_ReadBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_EnterLowpower", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_EnterLowpower(serial_handle_t)", - "location": { - "column": "25", - "line": "532", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_EnterLowpower", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_EnterLowpower", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_EnterLowpower(serial_handle_t)", - "location": { - "column": "25", - "line": "532", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_EnterLowpower", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_ExitLowpower", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_ExitLowpower(serial_handle_t)", - "location": { - "column": "25", - "line": "542", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_ExitLowpower", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SerialManager_ExitLowpower", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t SerialManager_ExitLowpower(serial_handle_t)", - "location": { - "column": "25", - "line": "542", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.h" - }, - "name": "SerialManager_ExitLowpower", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@1331@macro@TIMERS_H", - "What": "MacroDef", - "defdec": "Def", - "display": "TIMERS_H", - "location": { - "column": "9", - "line": "30", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "TIMERS_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@2216@macro@tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR", - "location": { - "column": "9", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@2285@macro@tmrCOMMAND_EXECUTE_CALLBACK", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrCOMMAND_EXECUTE_CALLBACK", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "tmrCOMMAND_EXECUTE_CALLBACK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@2347@macro@tmrCOMMAND_START_DONT_TRACE", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrCOMMAND_START_DONT_TRACE", - "location": { - "column": "9", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "tmrCOMMAND_START_DONT_TRACE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@2408@macro@tmrCOMMAND_START", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrCOMMAND_START", - "location": { - "column": "9", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "tmrCOMMAND_START", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@2463@macro@tmrCOMMAND_RESET", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrCOMMAND_RESET", - "location": { - "column": "9", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "tmrCOMMAND_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@2515@macro@tmrCOMMAND_STOP", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrCOMMAND_STOP", - "location": { - "column": "9", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "tmrCOMMAND_STOP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@2567@macro@tmrCOMMAND_CHANGE_PERIOD", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrCOMMAND_CHANGE_PERIOD", - "location": { - "column": "9", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "tmrCOMMAND_CHANGE_PERIOD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@2625@macro@tmrCOMMAND_DELETE", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrCOMMAND_DELETE", - "location": { - "column": "9", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "tmrCOMMAND_DELETE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@2680@macro@tmrFIRST_FROM_ISR_COMMAND", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrFIRST_FROM_ISR_COMMAND", - "location": { - "column": "9", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "tmrFIRST_FROM_ISR_COMMAND", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@2739@macro@tmrCOMMAND_START_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrCOMMAND_START_FROM_ISR", - "location": { - "column": "9", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "tmrCOMMAND_START_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@2798@macro@tmrCOMMAND_RESET_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrCOMMAND_RESET_FROM_ISR", - "location": { - "column": "9", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "tmrCOMMAND_RESET_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@2857@macro@tmrCOMMAND_STOP_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrCOMMAND_STOP_FROM_ISR", - "location": { - "column": "9", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "tmrCOMMAND_STOP_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@2915@macro@tmrCOMMAND_CHANGE_PERIOD_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrCOMMAND_CHANGE_PERIOD_FROM_ISR", - "location": { - "column": "9", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "tmrCOMMAND_CHANGE_PERIOD_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@tmrTimerControl", - "What": "Struct", - "defdec": "Dec", - "display": "tmrTimerControl", - "location": { - "column": "8", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "members": [ - { - "ID": "c:@S@tmrTimerControl", - "What": "Struct", - "defdec": "Dec", - "display": "tmrTimerControl", - "location": { - "column": "8", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "members": [], - "name": "tmrTimerControl", - "origin": "user_include", - "scope": "tmrTimerControl" - } - ], - "name": "tmrTimerControl", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@T@TimerHandle_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct tmrTimerControl *", - "location": { - "column": "34", - "line": "77", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "TimerHandle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@T@TimerCallbackFunction_t", - "What": "Typedef", - "defdec": "Def", - "display": "void (*)(TimerHandle_t)", - "location": { - "column": "16", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "TimerCallbackFunction_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@T@PendedFunction_t", - "What": "Typedef", - "defdec": "Def", - "display": "void (*)(void *, uint32_t)", - "location": { - "column": "16", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "PendedFunction_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerCreate", - "What": "Function", - "defdec": "Dec", - "display": "TimerHandle_t xTimerCreate(const char *const, const TickType_t, const UBaseType_t, void *const, TimerCallbackFunction_t)", - "location": { - "column": "16", - "line": "228", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerCreate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerCreate", - "What": "Function", - "defdec": "Dec", - "display": "TimerHandle_t xTimerCreate(const char *const, const TickType_t, const UBaseType_t, void *const, TimerCallbackFunction_t)", - "location": { - "column": "16", - "line": "228", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerCreate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pvTimerGetTimerID", - "What": "Function", - "defdec": "Dec", - "display": "void * pvTimerGetTimerID(const TimerHandle_t)", - "location": { - "column": "7", - "line": "386", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "pvTimerGetTimerID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pvTimerGetTimerID", - "What": "Function", - "defdec": "Dec", - "display": "void * pvTimerGetTimerID(const TimerHandle_t)", - "location": { - "column": "7", - "line": "386", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "pvTimerGetTimerID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTimerSetTimerID", - "What": "Function", - "defdec": "Dec", - "display": "void vTimerSetTimerID(TimerHandle_t, void *)", - "location": { - "column": "6", - "line": "407", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "vTimerSetTimerID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTimerSetTimerID", - "What": "Function", - "defdec": "Dec", - "display": "void vTimerSetTimerID(TimerHandle_t, void *)", - "location": { - "column": "6", - "line": "407", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "vTimerSetTimerID", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerIsTimerActive", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTimerIsTimerActive(TimerHandle_t)", - "location": { - "column": "12", - "line": "444", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerIsTimerActive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerIsTimerActive", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTimerIsTimerActive(TimerHandle_t)", - "location": { - "column": "12", - "line": "444", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerIsTimerActive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerGetTimerDaemonTaskHandle", - "What": "Function", - "defdec": "Dec", - "display": "TaskHandle_t xTimerGetTimerDaemonTaskHandle(void)", - "location": { - "column": "14", - "line": "452", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerGetTimerDaemonTaskHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerGetTimerDaemonTaskHandle", - "What": "Function", - "defdec": "Dec", - "display": "TaskHandle_t xTimerGetTimerDaemonTaskHandle(void)", - "location": { - "column": "14", - "line": "452", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerGetTimerDaemonTaskHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@22366@macro@xTimerStart", - "What": "MacroDef", - "defdec": "Def", - "display": "xTimerStart", - "location": { - "column": "9", - "line": "504", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerStart", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@24475@macro@xTimerStop", - "What": "MacroDef", - "defdec": "Def", - "display": "xTimerStop", - "location": { - "column": "9", - "line": "546", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerStop", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@28344@macro@xTimerChangePeriod", - "What": "MacroDef", - "defdec": "Def", - "display": "xTimerChangePeriod", - "location": { - "column": "10", - "line": "626", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerChangePeriod", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@30288@macro@xTimerDelete", - "What": "MacroDef", - "defdec": "Def", - "display": "xTimerDelete", - "location": { - "column": "9", - "line": "664", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerDelete", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@36065@macro@xTimerReset", - "What": "MacroDef", - "defdec": "Def", - "display": "xTimerReset", - "location": { - "column": "9", - "line": "788", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@40341@macro@xTimerStartFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "xTimerStartFromISR", - "location": { - "column": "9", - "line": "874", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerStartFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@43544@macro@xTimerStopFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "xTimerStopFromISR", - "location": { - "column": "9", - "line": "937", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerStopFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@47415@macro@xTimerChangePeriodFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "xTimerChangePeriodFromISR", - "location": { - "column": "9", - "line": "1010", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerChangePeriodFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.h@51766@macro@xTimerResetFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "xTimerResetFromISR", - "location": { - "column": "9", - "line": "1096", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerResetFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerPendFunctionCallFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTimerPendFunctionCallFromISR(PendedFunction_t, void *, uint32_t, BaseType_t *)", - "location": { - "column": "12", - "line": "1187", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerPendFunctionCallFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerPendFunctionCall", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTimerPendFunctionCall(PendedFunction_t, void *, uint32_t, TickType_t)", - "location": { - "column": "12", - "line": "1221", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerPendFunctionCall", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pcTimerGetName", - "What": "Function", - "defdec": "Dec", - "display": "const char * pcTimerGetName(TimerHandle_t)", - "location": { - "column": "14", - "line": "1232", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "pcTimerGetName", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pcTimerGetName", - "What": "Function", - "defdec": "Dec", - "display": "const char * pcTimerGetName(TimerHandle_t)", - "location": { - "column": "14", - "line": "1232", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "pcTimerGetName", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTimerSetReloadMode", - "What": "Function", - "defdec": "Dec", - "display": "void vTimerSetReloadMode(TimerHandle_t, const UBaseType_t)", - "location": { - "column": "6", - "line": "1249", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "vTimerSetReloadMode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTimerSetReloadMode", - "What": "Function", - "defdec": "Dec", - "display": "void vTimerSetReloadMode(TimerHandle_t, const UBaseType_t)", - "location": { - "column": "6", - "line": "1249", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "vTimerSetReloadMode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerGetPeriod", - "What": "Function", - "defdec": "Dec", - "display": "TickType_t xTimerGetPeriod(TimerHandle_t)", - "location": { - "column": "12", - "line": "1260", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerGetPeriod", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerGetPeriod", - "What": "Function", - "defdec": "Dec", - "display": "TickType_t xTimerGetPeriod(TimerHandle_t)", - "location": { - "column": "12", - "line": "1260", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerGetPeriod", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerGetExpiryTime", - "What": "Function", - "defdec": "Dec", - "display": "TickType_t xTimerGetExpiryTime(TimerHandle_t)", - "location": { - "column": "12", - "line": "1275", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerGetExpiryTime", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerGetExpiryTime", - "What": "Function", - "defdec": "Dec", - "display": "TickType_t xTimerGetExpiryTime(TimerHandle_t)", - "location": { - "column": "12", - "line": "1275", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerGetExpiryTime", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerCreateTimerTask", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTimerCreateTimerTask(void)", - "location": { - "column": "12", - "line": "1281", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerCreateTimerTask", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerCreateTimerTask", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTimerCreateTimerTask(void)", - "location": { - "column": "12", - "line": "1281", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerCreateTimerTask", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerGenericCommand", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTimerGenericCommand(TimerHandle_t, const BaseType_t, const TickType_t, BaseType_t *const, const TickType_t)", - "location": { - "column": "12", - "line": "1282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerGenericCommand", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimerGenericCommand", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xTimerGenericCommand(TimerHandle_t, const BaseType_t, const TickType_t, BaseType_t *const, const TickType_t)", - "location": { - "column": "12", - "line": "1282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "xTimerGenericCommand", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTimerSetTimerNumber", - "What": "Function", - "defdec": "Dec", - "display": "void vTimerSetTimerNumber(TimerHandle_t, UBaseType_t)", - "location": { - "column": "7", - "line": "1285", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "vTimerSetTimerNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vTimerSetTimerNumber", - "What": "Function", - "defdec": "Dec", - "display": "void vTimerSetTimerNumber(TimerHandle_t, UBaseType_t)", - "location": { - "column": "7", - "line": "1285", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "vTimerSetTimerNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTimerGetTimerNumber", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxTimerGetTimerNumber(TimerHandle_t)", - "location": { - "column": "14", - "line": "1286", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "uxTimerGetTimerNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxTimerGetTimerNumber", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxTimerGetTimerNumber(TimerHandle_t)", - "location": { - "column": "14", - "line": "1286", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\timers.h" - }, - "name": "uxTimerGetTimerNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:DLib_Product_stdlib.h@251@macro@_DLIB_PRODUCTS_STDLIB_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRODUCTS_STDLIB_H_", - "location": { - "column": "9", - "line": "10", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "_DLIB_PRODUCTS_STDLIB_H_", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__aeabi_idivmod", - "What": "Function", - "defdec": "Dec", - "display": "div_t __aeabi_idivmod(int, int)", - "location": { - "column": "7", - "line": "23", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "__aeabi_idivmod", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__aeabi_ldivmod", - "What": "Function", - "defdec": "Dec", - "display": "lldiv_t __aeabi_ldivmod(long long, long long)", - "location": { - "column": "11", - "line": "27", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "__aeabi_ldivmod", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@div", - "What": "Function", - "defdec": "Def", - "display": "div_t div(int, int)", - "location": { - "column": "7", - "line": "32", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "div", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@ldiv", - "What": "Function", - "defdec": "Def", - "display": "ldiv_t ldiv(long, long)", - "location": { - "column": "8", - "line": "48", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "ldiv", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_stdlib.h@1083@F@ldiv@d", - "What": "Variable", - "defdec": "Def", - "display": "d", - "location": { - "column": "9", - "line": "57", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "d", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_stdlib.h@1119@F@ldiv@ld", - "What": "Variable", - "defdec": "Def", - "display": "ld", - "location": { - "column": "10", - "line": "58", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "ld", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@lldiv", - "What": "Function", - "defdec": "Def", - "display": "lldiv_t lldiv(long long, long long)", - "location": { - "column": "11", - "line": "68", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "lldiv", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@75@macro@_DLIB_PRODUCTS_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRODUCTS_H_", - "location": { - "column": "9", - "line": "4", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_PRODUCTS_H_", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@524@macro@_DLIB_WIDE_CHARACTERS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_WIDE_CHARACTERS", - "location": { - "column": "9", - "line": "21", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_WIDE_CHARACTERS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@680@macro@_DLIB_PRODUCT_STRING", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRODUCT_STRING", - "location": { - "column": "9", - "line": "25", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_PRODUCT_STRING", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@831@macro@_DLIB_PRODUCT_FENV", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRODUCT_FENV", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_PRODUCT_FENV", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@984@macro@_DLIB_PRODUCT_STDLIB", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRODUCT_STDLIB", - "location": { - "column": "9", - "line": "33", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_PRODUCT_STDLIB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@1095@macro@_DLIB_QSORT_BUF_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_QSORT_BUF_SIZE", - "location": { - "column": "9", - "line": "37", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_QSORT_BUF_SIZE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@1270@macro@_DLIB_SUPPORT_FOR_AEABI", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_SUPPORT_FOR_AEABI", - "location": { - "column": "9", - "line": "46", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_SUPPORT_FOR_AEABI", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@1353@macro@_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", - "location": { - "column": "9", - "line": "49", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@1479@macro@_DLIB_STRTOD_HEX_FLOAT", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_STRTOD_HEX_FLOAT", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_STRTOD_HEX_FLOAT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@1929@macro@__SOFTFP", - "What": "MacroDef", - "defdec": "Def", - "display": "__SOFTFP", - "location": { - "column": "9", - "line": "69", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "__SOFTFP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2045@macro@__NO_SCRATCH", - "What": "MacroDef", - "defdec": "Def", - "display": "__NO_SCRATCH", - "location": { - "column": "9", - "line": "72", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "__NO_SCRATCH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2169@macro@_DLIB_SPEEDY_FLOATS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_SPEEDY_FLOATS", - "location": { - "column": "9", - "line": "75", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_SPEEDY_FLOATS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2246@macro@_DLIB_ELF_INIT_STATIC_BASE_DECLARATION", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_STATIC_BASE_DECLARATION", - "location": { - "column": "9", - "line": "78", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_STATIC_BASE_DECLARATION", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2327@macro@_DLIB_ELF_INIT_STATIC_BASE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_STATIC_BASE", - "location": { - "column": "9", - "line": "79", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_STATIC_BASE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2372@macro@_DLIB_ELF_INIT_FUNCTION_ATTRIBUTES", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_FUNCTION_ATTRIBUTES", - "location": { - "column": "9", - "line": "80", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_FUNCTION_ATTRIBUTES", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2467@macro@_DLIB_ELF_INIT_TABLE_MEMORY", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_TABLE_MEMORY", - "location": { - "column": "9", - "line": "82", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_TABLE_MEMORY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2517@macro@_DLIB_ELF_INIT_SOURCE_MEMORY", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_SOURCE_MEMORY", - "location": { - "column": "9", - "line": "83", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_SOURCE_MEMORY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2567@macro@_DLIB_ELF_INIT_DESTINATION_MEMORY", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_DESTINATION_MEMORY", - "location": { - "column": "9", - "line": "84", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_DESTINATION_MEMORY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2617@macro@_DLIB_ELF_INIT_USE_RELATIVE_ROM_ADDRESSES", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_USE_RELATIVE_ROM_ADDRESSES", - "location": { - "column": "9", - "line": "85", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_USE_RELATIVE_ROM_ADDRESSES", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@2670@macro@_DLIB_ELF_INIT_REGION_COUNT_TYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_REGION_COUNT_TYPE", - "location": { - "column": "9", - "line": "86", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_REGION_COUNT_TYPE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@3098@macro@_DLIB_ELF_INIT_MODULE_ATTRIBUTES", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_MODULE_ATTRIBUTES", - "location": { - "column": "9", - "line": "96", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_MODULE_ATTRIBUTES", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@3510@macro@_DLIB_ELF_INIT_INTERFACE_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_ELF_INIT_INTERFACE_VERSION", - "location": { - "column": "9", - "line": "105", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_ELF_INIT_INTERFACE_VERSION", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@3556@macro@_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", - "location": { - "column": "9", - "line": "107", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_DLIB_USE_RTMODEL_JMP_BUF_NUM_ELEMENTS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@3608@macro@_XMATHWRAPPERS_DEF", - "What": "MacroDef", - "defdec": "Def", - "display": "_XMATHWRAPPERS_DEF", - "location": { - "column": "9", - "line": "109", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_XMATHWRAPPERS_DEF", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product.h@3657@macro@_CPPINIT_ATTR", - "What": "MacroDef", - "defdec": "Def", - "display": "_CPPINIT_ATTR", - "location": { - "column": "9", - "line": "111", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Product.h" - }, - "name": "_CPPINIT_ATTR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@195@macro@_FSL_RESET_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_FSL_RESET_H_", - "location": { - "column": "9", - "line": "11", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "_FSL_RESET_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@651@macro@FSL_RESET_DRIVER_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_RESET_DRIVER_VERSION", - "location": { - "column": "9", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "FSL_RESET_DRIVER_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn", - "What": "Enum", - "defdec": "Def", - "display": "_SYSCON_RSTn", - "fields": [ - { - "ID": "c:@E@_SYSCON_RSTn@kFLASH_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kFLASH_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kFLASH_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kFMC_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kFMC_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "42", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kFMC_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kMUX_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kMUX_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "43", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kMUX_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kIOCON_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kIOCON_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kIOCON_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kGPIO0_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kGPIO0_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kGPIO0_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kGPIO1_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kGPIO1_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kGPIO1_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kPINT_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kPINT_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kGINT_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kGINT_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kGINT_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kDMA_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kDMA_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kDMA_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kCRC_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kCRC_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kCRC_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kWWDT_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kWWDT_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kWWDT_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kADC0_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kADC0_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kADC0_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kMRT_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kMRT_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kMRT_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kSCT0_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kSCT0_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kSCT0_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kUTICK_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kUTICK_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kUTICK_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kFC0_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kFC0_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kFC0_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kFC1_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kFC1_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kFC1_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kFC2_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kFC2_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kFC2_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kFC3_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kFC3_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kFC3_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kFC4_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kFC4_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kFC4_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kFC5_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kFC5_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kFC5_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kFC6_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kFC6_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "62", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kFC6_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kFC7_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kFC7_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kFC7_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kUSB_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSB_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kUSB_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kCTIMER0_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER0_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kCTIMER0_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kCTIMER1_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER1_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kCTIMER1_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_SYSCON_RSTn@kCTIMER3_RST_SHIFT_RSTn", - "What": "Enumerator", - "defdec": "Def", - "display": "kCTIMER3_RST_SHIFT_RSTn", - "location": { - "column": "5", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "kCTIMER3_RST_SHIFT_RSTn", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "39", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "_SYSCON_RSTn", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@T@SYSCON_RSTn_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _SYSCON_RSTn", - "location": { - "column": "3", - "line": "68", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "SYSCON_RSTn_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@3231@macro@ADC_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "ADC_RSTS", - "location": { - "column": "9", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "ADC_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@3370@macro@CRC_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "CRC_RSTS", - "location": { - "column": "9", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "CRC_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@3506@macro@DMA_RSTS_N", - "What": "MacroDef", - "defdec": "Def", - "display": "DMA_RSTS_N", - "location": { - "column": "9", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "DMA_RSTS_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@3644@macro@FLEXCOMM_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "FLEXCOMM_RSTS", - "location": { - "column": "9", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "FLEXCOMM_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@4156@macro@GINT_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "GINT_RSTS", - "location": { - "column": "9", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "GINT_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@4393@macro@GPIO_RSTS_N", - "What": "MacroDef", - "defdec": "Def", - "display": "GPIO_RSTS_N", - "location": { - "column": "9", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "GPIO_RSTS_N", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@4607@macro@INPUTMUX_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "INPUTMUX_RSTS", - "location": { - "column": "9", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "INPUTMUX_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@4748@macro@IOCON_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "IOCON_RSTS", - "location": { - "column": "9", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "IOCON_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@4892@macro@FLASH_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_RSTS", - "location": { - "column": "9", - "line": "104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "FLASH_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@5099@macro@MRT_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "MRT_RSTS", - "location": { - "column": "9", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "MRT_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@5235@macro@PINT_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_RSTS", - "location": { - "column": "9", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "PINT_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@5375@macro@SCT_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "SCT_RSTS", - "location": { - "column": "9", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "SCT_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@5514@macro@CTIMER_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "CTIMER_RSTS", - "location": { - "column": "9", - "line": "120", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "CTIMER_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@5883@macro@USB_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "USB_RSTS", - "location": { - "column": "9", - "line": "124", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "USB_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@6019@macro@UTICK_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "UTICK_RSTS", - "location": { - "column": "9", - "line": "128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "UTICK_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@6163@macro@WWDT_RSTS", - "What": "MacroDef", - "defdec": "Def", - "display": "WWDT_RSTS", - "location": { - "column": "9", - "line": "132", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "WWDT_RSTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_reset.h@T@reset_ip_name_t", - "What": "Typedef", - "defdec": "Def", - "display": "SYSCON_RSTn_t", - "location": { - "column": "23", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "reset_ip_name_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@RESET_SetPeripheralReset", - "What": "Function", - "defdec": "Dec", - "display": "void RESET_SetPeripheralReset(reset_ip_name_t)", - "location": { - "column": "6", - "line": "154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "RESET_SetPeripheralReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@RESET_SetPeripheralReset", - "What": "Function", - "defdec": "Dec", - "display": "void RESET_SetPeripheralReset(reset_ip_name_t)", - "location": { - "column": "6", - "line": "154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "RESET_SetPeripheralReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@RESET_ClearPeripheralReset", - "What": "Function", - "defdec": "Dec", - "display": "void RESET_ClearPeripheralReset(reset_ip_name_t)", - "location": { - "column": "6", - "line": "164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "RESET_ClearPeripheralReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@RESET_ClearPeripheralReset", - "What": "Function", - "defdec": "Dec", - "display": "void RESET_ClearPeripheralReset(reset_ip_name_t)", - "location": { - "column": "6", - "line": "164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "RESET_ClearPeripheralReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@RESET_PeripheralReset", - "What": "Function", - "defdec": "Dec", - "display": "void RESET_PeripheralReset(reset_ip_name_t)", - "location": { - "column": "6", - "line": "174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "RESET_PeripheralReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@RESET_PeripheralReset", - "What": "Function", - "defdec": "Dec", - "display": "void RESET_PeripheralReset(reset_ip_name_t)", - "location": { - "column": "6", - "line": "174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.h" - }, - "name": "RESET_PeripheralReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_gpio.h@194@macro@_LPC_GPIO_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_LPC_GPIO_H_", - "location": { - "column": "9", - "line": "10", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "_LPC_GPIO_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_gpio.h@570@macro@FSL_GPIO_DRIVER_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_GPIO_DRIVER_VERSION", - "location": { - "column": "9", - "line": "28", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "FSL_GPIO_DRIVER_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_gpio_pin_direction", - "What": "Enum", - "defdec": "Def", - "display": "_gpio_pin_direction", - "fields": [ - { - "ID": "c:@E@_gpio_pin_direction@kGPIO_DigitalInput", - "What": "Enumerator", - "defdec": "Def", - "display": "kGPIO_DigitalInput", - "location": { - "column": "5", - "line": "34", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "kGPIO_DigitalInput", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_gpio_pin_direction@kGPIO_DigitalOutput", - "What": "Enumerator", - "defdec": "Def", - "display": "kGPIO_DigitalOutput", - "location": { - "column": "5", - "line": "35", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "kGPIO_DigitalOutput", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "_gpio_pin_direction", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_gpio.h@T@gpio_pin_direction_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _gpio_pin_direction", - "location": { - "column": "3", - "line": "36", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "gpio_pin_direction_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_gpio_pin_config", - "What": "Struct", - "defdec": "Def", - "display": "_gpio_pin_config", - "location": { - "column": "16", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "members": [ - { - "ID": "c:@S@_gpio_pin_config@FI@pinDirection", - "What": "FieldDecl", - "defdec": "Def", - "display": "pinDirection", - "location": { - "column": "26", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "pinDirection", - "origin": "user_include", - "scope": "_gpio_pin_config" - }, - { - "ID": "c:@S@_gpio_pin_config@FI@outputLogic", - "What": "FieldDecl", - "defdec": "Def", - "display": "outputLogic", - "location": { - "column": "13", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "outputLogic", - "origin": "user_include", - "scope": "_gpio_pin_config" - } - ], - "name": "_gpio_pin_config", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_gpio.h@T@gpio_pin_config_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _gpio_pin_config", - "location": { - "column": "3", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "gpio_pin_config_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@GPIO_PortInit", - "What": "Function", - "defdec": "Dec", - "display": "void GPIO_PortInit(GPIO_Type *, uint32_t)", - "location": { - "column": "6", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "GPIO_PortInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@GPIO_PortInit", - "What": "Function", - "defdec": "Dec", - "display": "void GPIO_PortInit(GPIO_Type *, uint32_t)", - "location": { - "column": "6", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "GPIO_PortInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@GPIO_PinInit", - "What": "Function", - "defdec": "Dec", - "display": "void GPIO_PinInit(GPIO_Type *, uint32_t, uint32_t, const gpio_pin_config_t *)", - "location": { - "column": "6", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "GPIO_PinInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@GPIO_PinInit", - "What": "Function", - "defdec": "Dec", - "display": "void GPIO_PinInit(GPIO_Type *, uint32_t, uint32_t, const gpio_pin_config_t *)", - "location": { - "column": "6", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "GPIO_PinInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_gpio.h@F@GPIO_PinWrite", - "What": "Function", - "defdec": "Def", - "display": "void GPIO_PinWrite(GPIO_Type *, uint32_t, uint32_t, uint8_t)", - "location": { - "column": "20", - "line": "154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "GPIO_PinWrite", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_gpio.h@F@GPIO_PinRead", - "What": "Function", - "defdec": "Def", - "display": "uint32_t GPIO_PinRead(GPIO_Type *, uint32_t, uint32_t)", - "location": { - "column": "24", - "line": "173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "GPIO_PinRead", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_gpio.h@F@GPIO_PortSet", - "What": "Function", - "defdec": "Def", - "display": "void GPIO_PortSet(GPIO_Type *, uint32_t, uint32_t)", - "location": { - "column": "20", - "line": "187", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "GPIO_PortSet", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_gpio.h@F@GPIO_PortClear", - "What": "Function", - "defdec": "Def", - "display": "void GPIO_PortClear(GPIO_Type *, uint32_t, uint32_t)", - "location": { - "column": "20", - "line": "199", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "GPIO_PortClear", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_gpio.h@F@GPIO_PortToggle", - "What": "Function", - "defdec": "Def", - "display": "void GPIO_PortToggle(GPIO_Type *, uint32_t, uint32_t)", - "location": { - "column": "20", - "line": "211", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "GPIO_PortToggle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_gpio.h@F@GPIO_PortRead", - "What": "Function", - "defdec": "Def", - "display": "uint32_t GPIO_PortRead(GPIO_Type *, uint32_t)", - "location": { - "column": "24", - "line": "224", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "GPIO_PortRead", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_gpio.h@F@GPIO_PortMaskedSet", - "What": "Function", - "defdec": "Def", - "display": "void GPIO_PortMaskedSet(GPIO_Type *, uint32_t, uint32_t)", - "location": { - "column": "20", - "line": "240", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "GPIO_PortMaskedSet", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_gpio.h@F@GPIO_PortMaskedWrite", - "What": "Function", - "defdec": "Def", - "display": "void GPIO_PortMaskedWrite(GPIO_Type *, uint32_t, uint32_t)", - "location": { - "column": "20", - "line": "252", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "GPIO_PortMaskedWrite", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_gpio.h@F@GPIO_PortMaskedRead", - "What": "Function", - "defdec": "Def", - "display": "uint32_t GPIO_PortMaskedRead(GPIO_Type *, uint32_t)", - "location": { - "column": "24", - "line": "265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.h" - }, - "name": "GPIO_PortMaskedRead", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:main.c@2144@macro@mainCREATE_SIMPLE_BLINKY_DEMO_ONLY", - "What": "MacroDef", - "defdec": "Def", - "display": "mainCREATE_SIMPLE_BLINKY_DEMO_ONLY", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "mainCREATE_SIMPLE_BLINKY_DEMO_ONLY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@LED_STATE", - "What": "Enum", - "defdec": "Def", - "display": "LED_STATE", - "fields": [ - { - "ID": "c:@E@LED_STATE@LED_RED_BLINK_ON", - "What": "Enumerator", - "defdec": "Def", - "display": "LED_RED_BLINK_ON", - "location": { - "column": "2", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "LED_RED_BLINK_ON", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@LED_STATE@LED_RED_BLINK_OFF", - "What": "Enumerator", - "defdec": "Def", - "display": "LED_RED_BLINK_OFF", - "location": { - "column": "2", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "LED_RED_BLINK_OFF", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@LED_STATE@LED_GREEN_BLINK_ON", - "What": "Enumerator", - "defdec": "Def", - "display": "LED_GREEN_BLINK_ON", - "location": { - "column": "2", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "LED_GREEN_BLINK_ON", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@LED_STATE@LED_GREEN_BLINK_OFF", - "What": "Enumerator", - "defdec": "Def", - "display": "LED_GREEN_BLINK_OFF", - "location": { - "column": "2", - "line": "62", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "LED_GREEN_BLINK_OFF", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@LED_STATE@LED_BLUE_BLINK_ON", - "What": "Enumerator", - "defdec": "Def", - "display": "LED_BLUE_BLINK_ON", - "location": { - "column": "2", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "LED_BLUE_BLINK_ON", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@LED_STATE@LED_BLUE_BLINK_OFF", - "What": "Enumerator", - "defdec": "Def", - "display": "LED_BLUE_BLINK_OFF", - "location": { - "column": "2", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "LED_BLUE_BLINK_OFF", - "origin": "project_file", - "scope": null - } - ], - "location": { - "column": "14", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "LED_STATE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main.c@T@E_LED_STATE", - "What": "Typedef", - "defdec": "Def", - "display": "enum LED_STATE", - "location": { - "column": "3", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "E_LED_STATE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main.c@eLedState", - "What": "Variable", - "defdec": "Def", - "display": "eLedState", - "location": { - "column": "20", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "eLedState", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main.c@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "12", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main.c@uTickInterruptCounter", - "What": "Variable", - "defdec": "Def", - "display": "uTickInterruptCounter", - "location": { - "column": "21", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "uTickInterruptCounter", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main.c@F@prvSetupHardware", - "What": "Function", - "defdec": "Dec", - "display": "void prvSetupHardware(void)", - "location": { - "column": "13", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "prvSetupHardware", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main.c@F@prvInitializeHeap", - "What": "Function", - "defdec": "Dec", - "display": "void prvInitializeHeap(void)", - "location": { - "column": "13", - "line": "91", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "prvInitializeHeap", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vMainToggleLED", - "What": "Function", - "defdec": "Dec", - "display": "void vMainToggleLED(void)", - "location": { - "column": "6", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "vMainToggleLED", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@main_blinky", - "What": "Function", - "defdec": "Dec", - "display": "void main_blinky(void)", - "location": { - "column": "6", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "main_blinky", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@main_full", - "What": "Function", - "defdec": "Dec", - "display": "void main_full(void)", - "location": { - "column": "6", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "main_full", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@main", - "What": "Function", - "defdec": "Def", - "display": "int main(void)", - "location": { - "column": "5", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "main", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vMainToggleLED", - "What": "Function", - "defdec": "Def", - "display": "void vMainToggleLED(void)", - "location": { - "column": "6", - "line": "136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "vMainToggleLED", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main.c@F@prvSetupHardware", - "What": "Function", - "defdec": "Def", - "display": "void prvSetupHardware(void)", - "location": { - "column": "13", - "line": "177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "prvSetupHardware", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main.c@F@prvInitializeHeap", - "What": "Function", - "defdec": "Def", - "display": "void prvInitializeHeap(void)", - "location": { - "column": "13", - "line": "201", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "prvInitializeHeap", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main.c@5840@F@prvInitializeHeap@ucHeap1", - "What": "Variable", - "defdec": "Def", - "display": "ucHeap1", - "location": { - "column": "17", - "line": "204", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "ucHeap1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main.c@5970@F@prvInitializeHeap@ucHeap2", - "What": "Variable", - "defdec": "Def", - "display": "ucHeap2", - "location": { - "column": "17", - "line": "207", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "ucHeap2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main.c@6134@F@prvInitializeHeap@xHeapRegions", - "What": "Variable", - "defdec": "Def", - "display": "xHeapRegions", - "location": { - "column": "22", - "line": "210", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "xHeapRegions", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vApplicationMallocFailedHook", - "What": "Function", - "defdec": "Def", - "display": "void vApplicationMallocFailedHook(void)", - "location": { - "column": "6", - "line": "224", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "vApplicationMallocFailedHook", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vApplicationIdleHook", - "What": "Function", - "defdec": "Def", - "display": "void vApplicationIdleHook(void)", - "location": { - "column": "6", - "line": "242", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "vApplicationIdleHook", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vApplicationStackOverflowHook", - "What": "Function", - "defdec": "Def", - "display": "void vApplicationStackOverflowHook(TaskHandle_t, char *)", - "location": { - "column": "6", - "line": "257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "vApplicationStackOverflowHook", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vApplicationTickHook", - "What": "Function", - "defdec": "Def", - "display": "void vApplicationTickHook(void)", - "location": { - "column": "6", - "line": "271", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main.c" - }, - "name": "vApplicationTickHook", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@3663@macro@mainQUEUE_RECEIVE_TASK_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "mainQUEUE_RECEIVE_TASK_PRIORITY", - "location": { - "column": "9", - "line": "74", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "mainQUEUE_RECEIVE_TASK_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@3730@macro@mainQUEUE_SEND_TASK_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "mainQUEUE_SEND_TASK_PRIORITY", - "location": { - "column": "9", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "mainQUEUE_SEND_TASK_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@3927@macro@mainQUEUE_SEND_FREQUENCY_MS", - "What": "MacroDef", - "defdec": "Def", - "display": "mainQUEUE_SEND_FREQUENCY_MS", - "location": { - "column": "9", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "mainQUEUE_SEND_FREQUENCY_MS", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@4172@macro@mainQUEUE_LENGTH", - "What": "MacroDef", - "defdec": "Def", - "display": "mainQUEUE_LENGTH", - "location": { - "column": "9", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "mainQUEUE_LENGTH", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@4297@macro@mainQUEUE_SEND_PARAMETER", - "What": "MacroDef", - "defdec": "Def", - "display": "mainQUEUE_SEND_PARAMETER", - "location": { - "column": "9", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "mainQUEUE_SEND_PARAMETER", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@4346@macro@mainQUEUE_RECEIVE_PARAMETER", - "What": "MacroDef", - "defdec": "Def", - "display": "mainQUEUE_RECEIVE_PARAMETER", - "location": { - "column": "9", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "mainQUEUE_RECEIVE_PARAMETER", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@F@prvQueueReceiveTask", - "What": "Function", - "defdec": "Dec", - "display": "void prvQueueReceiveTask(void *)", - "location": { - "column": "13", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "prvQueueReceiveTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@F@prvQueueSendTask", - "What": "Function", - "defdec": "Dec", - "display": "void prvQueueSendTask(void *)", - "location": { - "column": "13", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "prvQueueSendTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@main_blinky", - "What": "Function", - "defdec": "Dec", - "display": "void main_blinky(void)", - "location": { - "column": "6", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "main_blinky", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vMainToggleLED", - "What": "Function", - "defdec": "Dec", - "display": "void vMainToggleLED(void)", - "location": { - "column": "13", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "vMainToggleLED", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@xQueue", - "What": "Variable", - "defdec": "Def", - "display": "xQueue", - "location": { - "column": "22", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "xQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@main_blinky", - "What": "Function", - "defdec": "Def", - "display": "void main_blinky(void)", - "location": { - "column": "6", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "main_blinky", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@F@prvQueueSendTask", - "What": "Function", - "defdec": "Def", - "display": "void prvQueueSendTask(void *)", - "location": { - "column": "13", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "prvQueueSendTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@6622@F@prvQueueSendTask@xNextWakeTime", - "What": "Variable", - "defdec": "Def", - "display": "xNextWakeTime", - "location": { - "column": "12", - "line": "149", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "xNextWakeTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@6649@F@prvQueueSendTask@ulValueToSend", - "What": "Variable", - "defdec": "Def", - "display": "ulValueToSend", - "location": { - "column": "21", - "line": "150", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "ulValueToSend", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@F@prvQueueReceiveTask", - "What": "Function", - "defdec": "Def", - "display": "void prvQueueReceiveTask(void *)", - "location": { - "column": "13", - "line": "175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "prvQueueReceiveTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_blinky.c@7693@F@prvQueueReceiveTask@ulReceivedValue", - "What": "Variable", - "defdec": "Def", - "display": "ulReceivedValue", - "location": { - "column": "15", - "line": "177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_blinky.c" - }, - "name": "ulReceivedValue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_full.c@4734@macro@mainCHECK_TIMER_PERIOD_MS", - "What": "MacroDef", - "defdec": "Def", - "display": "mainCHECK_TIMER_PERIOD_MS", - "location": { - "column": "9", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "mainCHECK_TIMER_PERIOD_MS", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_full.c@5011@macro@mainERROR_CHECK_TIMER_PERIOD_MS", - "What": "MacroDef", - "defdec": "Def", - "display": "mainERROR_CHECK_TIMER_PERIOD_MS", - "location": { - "column": "9", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "mainERROR_CHECK_TIMER_PERIOD_MS", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_full.c@5142@macro@mainDONT_BLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "mainDONT_BLOCK", - "location": { - "column": "9", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "mainDONT_BLOCK", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_full.c@5450@macro@mainNO_TASK_NO_CHECK", - "What": "MacroDef", - "defdec": "Def", - "display": "mainNO_TASK_NO_CHECK", - "location": { - "column": "9", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "mainNO_TASK_NO_CHECK", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vRegTest1Task", - "What": "Function", - "defdec": "Dec", - "display": "void vRegTest1Task(void *)", - "location": { - "column": "13", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "vRegTest1Task", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vRegTest2Task", - "What": "Function", - "defdec": "Dec", - "display": "void vRegTest2Task(void *)", - "location": { - "column": "13", - "line": "115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "vRegTest2Task", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vMainToggleLED", - "What": "Function", - "defdec": "Dec", - "display": "void vMainToggleLED(void)", - "location": { - "column": "13", - "line": "120", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "vMainToggleLED", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_full.c@F@prvCheckTimerCallback", - "What": "Function", - "defdec": "Dec", - "display": "void prvCheckTimerCallback(TimerHandle_t)", - "location": { - "column": "13", - "line": "125", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "prvCheckTimerCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@main_full", - "What": "Function", - "defdec": "Dec", - "display": "void main_full(void)", - "location": { - "column": "6", - "line": "131", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "main_full", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@ulRegTest1LoopCounter", - "What": "Variable", - "defdec": "Def", - "display": "ulRegTest1LoopCounter", - "location": { - "column": "24", - "line": "139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "ulRegTest1LoopCounter", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@ulRegTest2LoopCounter", - "What": "Variable", - "defdec": "Def", - "display": "ulRegTest2LoopCounter", - "location": { - "column": "53", - "line": "139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "ulRegTest2LoopCounter", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@main_full", - "What": "Function", - "defdec": "Def", - "display": "void main_full(void)", - "location": { - "column": "6", - "line": "143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "main_full", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_full.c@6765@F@main_full@xCheckTimer", - "What": "Variable", - "defdec": "Def", - "display": "xCheckTimer", - "location": { - "column": "15", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "xCheckTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_full.c@F@prvCheckTimerCallback", - "What": "Function", - "defdec": "Def", - "display": "void prvCheckTimerCallback(TimerHandle_t)", - "location": { - "column": "13", - "line": "212", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "prvCheckTimerCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_full.c@10023@F@prvCheckTimerCallback@lChangedTimerPeriodAlready", - "What": "Variable", - "defdec": "Def", - "display": "lChangedTimerPeriodAlready", - "location": { - "column": "13", - "line": "214", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "lChangedTimerPeriodAlready", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:main_full.c@10074@F@prvCheckTimerCallback@ulErrorFound", - "What": "Variable", - "defdec": "Def", - "display": "ulErrorFound", - "location": { - "column": "15", - "line": "215", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\main_full.c" - }, - "name": "ulErrorFound", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:list.h@2679@macro@LIST_H", - "What": "MacroDef", - "defdec": "Def", - "display": "LIST_H", - "location": { - "column": "9", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "LIST_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@4613@macro@configLIST_VOLATILE", - "What": "MacroDef", - "defdec": "Def", - "display": "configLIST_VOLATILE", - "location": { - "column": "10", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "configLIST_VOLATILE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@5177@macro@listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE", - "location": { - "column": "10", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@5229@macro@listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE", - "location": { - "column": "10", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@5282@macro@listFIRST_LIST_INTEGRITY_CHECK_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "listFIRST_LIST_INTEGRITY_CHECK_VALUE", - "location": { - "column": "10", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listFIRST_LIST_INTEGRITY_CHECK_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@5329@macro@listSECOND_LIST_INTEGRITY_CHECK_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "listSECOND_LIST_INTEGRITY_CHECK_VALUE", - "location": { - "column": "10", - "line": "109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listSECOND_LIST_INTEGRITY_CHECK_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@5377@macro@listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE", - "location": { - "column": "10", - "line": "110", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@5443@macro@listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE", - "location": { - "column": "10", - "line": "111", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@5510@macro@listSET_LIST_INTEGRITY_CHECK_1_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "listSET_LIST_INTEGRITY_CHECK_1_VALUE", - "location": { - "column": "10", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listSET_LIST_INTEGRITY_CHECK_1_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@5567@macro@listSET_LIST_INTEGRITY_CHECK_2_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "listSET_LIST_INTEGRITY_CHECK_2_VALUE", - "location": { - "column": "10", - "line": "113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listSET_LIST_INTEGRITY_CHECK_2_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@5624@macro@listTEST_LIST_ITEM_INTEGRITY", - "What": "MacroDef", - "defdec": "Def", - "display": "listTEST_LIST_ITEM_INTEGRITY", - "location": { - "column": "10", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listTEST_LIST_ITEM_INTEGRITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@5673@macro@listTEST_LIST_INTEGRITY", - "What": "MacroDef", - "defdec": "Def", - "display": "listTEST_LIST_INTEGRITY", - "location": { - "column": "10", - "line": "115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listTEST_LIST_INTEGRITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xLIST", - "What": "Struct", - "defdec": "Dec", - "display": "xLIST", - "location": { - "column": "8", - "line": "139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "members": [], - "name": "xLIST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xLIST_ITEM", - "What": "Struct", - "defdec": "Def", - "display": "xLIST_ITEM", - "location": { - "column": "8", - "line": "140", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "members": [ - { - "ID": "c:@S@xLIST_ITEM@FI@xItemValue", - "What": "FieldDecl", - "defdec": "Def", - "display": "xItemValue", - "location": { - "column": "33", - "line": "143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "xItemValue", - "origin": "user_include", - "scope": "xLIST_ITEM" - }, - { - "ID": "c:@S@xLIST_ITEM@FI@pxNext", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxNext", - "location": { - "column": "42", - "line": "144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "pxNext", - "origin": "user_include", - "scope": "xLIST_ITEM" - }, - { - "ID": "c:@S@xLIST_ITEM@FI@pxPrevious", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxPrevious", - "location": { - "column": "42", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "pxPrevious", - "origin": "user_include", - "scope": "xLIST_ITEM" - }, - { - "ID": "c:@S@xLIST_ITEM@FI@pvOwner", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvOwner", - "location": { - "column": "9", - "line": "146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "pvOwner", - "origin": "user_include", - "scope": "xLIST_ITEM" - }, - { - "ID": "c:@S@xLIST_ITEM@FI@pvContainer", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvContainer", - "location": { - "column": "37", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "pvContainer", - "origin": "user_include", - "scope": "xLIST_ITEM" - } - ], - "name": "xLIST_ITEM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@T@ListItem_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xLIST_ITEM", - "location": { - "column": "27", - "line": "150", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "ListItem_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xMINI_LIST_ITEM", - "What": "Struct", - "defdec": "Def", - "display": "xMINI_LIST_ITEM", - "location": { - "column": "8", - "line": "152", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "members": [ - { - "ID": "c:@S@xMINI_LIST_ITEM@FI@xItemValue", - "What": "FieldDecl", - "defdec": "Def", - "display": "xItemValue", - "location": { - "column": "33", - "line": "155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "xItemValue", - "origin": "user_include", - "scope": "xMINI_LIST_ITEM" - }, - { - "ID": "c:@S@xMINI_LIST_ITEM@FI@pxNext", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxNext", - "location": { - "column": "42", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "pxNext", - "origin": "user_include", - "scope": "xMINI_LIST_ITEM" - }, - { - "ID": "c:@S@xMINI_LIST_ITEM@FI@pxPrevious", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxPrevious", - "location": { - "column": "42", - "line": "157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "pxPrevious", - "origin": "user_include", - "scope": "xMINI_LIST_ITEM" - } - ], - "name": "xMINI_LIST_ITEM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@T@MiniListItem_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xMINI_LIST_ITEM", - "location": { - "column": "32", - "line": "159", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "MiniListItem_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xLIST", - "What": "Struct", - "defdec": "Def", - "display": "xLIST", - "location": { - "column": "16", - "line": "164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "members": [ - { - "ID": "c:@S@xLIST@FI@uxNumberOfItems", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxNumberOfItems", - "location": { - "column": "23", - "line": "167", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "uxNumberOfItems", - "origin": "user_include", - "scope": "xLIST" - }, - { - "ID": "c:@S@xLIST@FI@pxIndex", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxIndex", - "location": { - "column": "35", - "line": "168", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "pxIndex", - "origin": "user_include", - "scope": "xLIST" - }, - { - "ID": "c:@S@xLIST@FI@xListEnd", - "What": "FieldDecl", - "defdec": "Def", - "display": "xListEnd", - "location": { - "column": "17", - "line": "169", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "xListEnd", - "origin": "user_include", - "scope": "xLIST" - } - ], - "name": "xLIST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@T@List_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xLIST", - "location": { - "column": "3", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "List_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@9801@macro@listSET_LIST_ITEM_OWNER", - "What": "MacroDef", - "defdec": "Def", - "display": "listSET_LIST_ITEM_OWNER", - "location": { - "column": "9", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listSET_LIST_ITEM_OWNER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@10147@macro@listGET_LIST_ITEM_OWNER", - "What": "MacroDef", - "defdec": "Def", - "display": "listGET_LIST_ITEM_OWNER", - "location": { - "column": "9", - "line": "189", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listGET_LIST_ITEM_OWNER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@10446@macro@listSET_LIST_ITEM_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "listSET_LIST_ITEM_VALUE", - "location": { - "column": "9", - "line": "198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listSET_LIST_ITEM_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@10828@macro@listGET_LIST_ITEM_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "listGET_LIST_ITEM_VALUE", - "location": { - "column": "9", - "line": "208", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listGET_LIST_ITEM_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@11092@macro@listGET_ITEM_VALUE_OF_HEAD_ENTRY", - "What": "MacroDef", - "defdec": "Def", - "display": "listGET_ITEM_VALUE_OF_HEAD_ENTRY", - "location": { - "column": "9", - "line": "217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listGET_ITEM_VALUE_OF_HEAD_ENTRY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@11329@macro@listGET_HEAD_ENTRY", - "What": "MacroDef", - "defdec": "Def", - "display": "listGET_HEAD_ENTRY", - "location": { - "column": "9", - "line": "225", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listGET_HEAD_ENTRY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@11509@macro@listGET_NEXT", - "What": "MacroDef", - "defdec": "Def", - "display": "listGET_NEXT", - "location": { - "column": "9", - "line": "233", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listGET_NEXT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@11715@macro@listGET_END_MARKER", - "What": "MacroDef", - "defdec": "Def", - "display": "listGET_END_MARKER", - "location": { - "column": "9", - "line": "241", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listGET_END_MARKER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@12022@macro@listLIST_IS_EMPTY", - "What": "MacroDef", - "defdec": "Def", - "display": "listLIST_IS_EMPTY", - "location": { - "column": "9", - "line": "250", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listLIST_IS_EMPTY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@12206@macro@listCURRENT_LIST_LENGTH", - "What": "MacroDef", - "defdec": "Def", - "display": "listCURRENT_LIST_LENGTH", - "location": { - "column": "9", - "line": "255", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listCURRENT_LIST_LENGTH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@13198@macro@listGET_OWNER_OF_NEXT_ENTRY", - "What": "MacroDef", - "defdec": "Def", - "display": "listGET_OWNER_OF_NEXT_ENTRY", - "location": { - "column": "9", - "line": "277", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listGET_OWNER_OF_NEXT_ENTRY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@14517@macro@listGET_OWNER_OF_HEAD_ENTRY", - "What": "MacroDef", - "defdec": "Def", - "display": "listGET_OWNER_OF_HEAD_ENTRY", - "location": { - "column": "9", - "line": "307", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listGET_OWNER_OF_HEAD_ENTRY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@15055@macro@listIS_CONTAINED_WITHIN", - "What": "MacroDef", - "defdec": "Def", - "display": "listIS_CONTAINED_WITHIN", - "location": { - "column": "9", - "line": "318", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listIS_CONTAINED_WITHIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@15398@macro@listLIST_ITEM_CONTAINER", - "What": "MacroDef", - "defdec": "Def", - "display": "listLIST_ITEM_CONTAINER", - "location": { - "column": "9", - "line": "326", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listLIST_ITEM_CONTAINER", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:list.h@15661@macro@listLIST_IS_INITIALISED", - "What": "MacroDef", - "defdec": "Def", - "display": "listLIST_IS_INITIALISED", - "location": { - "column": "9", - "line": "333", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "listLIST_IS_INITIALISED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vListInitialise", - "What": "Function", - "defdec": "Dec", - "display": "void vListInitialise(List_t *const)", - "location": { - "column": "6", - "line": "345", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "vListInitialise", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vListInitialise", - "What": "Function", - "defdec": "Dec", - "display": "void vListInitialise(List_t *const)", - "location": { - "column": "6", - "line": "345", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "vListInitialise", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vListInitialiseItem", - "What": "Function", - "defdec": "Dec", - "display": "void vListInitialiseItem(ListItem_t *const)", - "location": { - "column": "6", - "line": "356", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "vListInitialiseItem", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vListInitialiseItem", - "What": "Function", - "defdec": "Dec", - "display": "void vListInitialiseItem(ListItem_t *const)", - "location": { - "column": "6", - "line": "356", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "vListInitialiseItem", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vListInsert", - "What": "Function", - "defdec": "Dec", - "display": "void vListInsert(List_t *const, ListItem_t *const)", - "location": { - "column": "6", - "line": "369", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "vListInsert", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vListInsert", - "What": "Function", - "defdec": "Dec", - "display": "void vListInsert(List_t *const, ListItem_t *const)", - "location": { - "column": "6", - "line": "369", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "vListInsert", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vListInsertEnd", - "What": "Function", - "defdec": "Dec", - "display": "void vListInsertEnd(List_t *const, ListItem_t *const)", - "location": { - "column": "6", - "line": "390", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "vListInsertEnd", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vListInsertEnd", - "What": "Function", - "defdec": "Dec", - "display": "void vListInsertEnd(List_t *const, ListItem_t *const)", - "location": { - "column": "6", - "line": "390", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "vListInsertEnd", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxListRemove", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxListRemove(ListItem_t *const)", - "location": { - "column": "13", - "line": "405", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "uxListRemove", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxListRemove", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxListRemove(ListItem_t *const)", - "location": { - "column": "13", - "line": "405", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\list.h" - }, - "name": "uxListRemove", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@1331@macro@PROJDEFS_H", - "What": "MacroDef", - "defdec": "Def", - "display": "PROJDEFS_H", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "PROJDEFS_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@T@TaskFunction_t", - "What": "Typedef", - "defdec": "Def", - "display": "void (*)(void *)", - "location": { - "column": "16", - "line": "35", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "TaskFunction_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@1793@macro@pdMS_TO_TICKS", - "What": "MacroDef", - "defdec": "Def", - "display": "pdMS_TO_TICKS", - "location": { - "column": "10", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdMS_TO_TICKS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@1953@macro@pdFALSE", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFALSE", - "location": { - "column": "9", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFALSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@1993@macro@pdTRUE", - "What": "MacroDef", - "defdec": "Def", - "display": "pdTRUE", - "location": { - "column": "9", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdTRUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2034@macro@pdPASS", - "What": "MacroDef", - "defdec": "Def", - "display": "pdPASS", - "location": { - "column": "9", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdPASS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2063@macro@pdFAIL", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFAIL", - "location": { - "column": "9", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFAIL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2093@macro@errQUEUE_EMPTY", - "What": "MacroDef", - "defdec": "Def", - "display": "errQUEUE_EMPTY", - "location": { - "column": "9", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "errQUEUE_EMPTY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2138@macro@errQUEUE_FULL", - "What": "MacroDef", - "defdec": "Def", - "display": "errQUEUE_FULL", - "location": { - "column": "9", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "errQUEUE_FULL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2219@macro@errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY", - "What": "MacroDef", - "defdec": "Def", - "display": "errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2273@macro@errQUEUE_BLOCKED", - "What": "MacroDef", - "defdec": "Def", - "display": "errQUEUE_BLOCKED", - "location": { - "column": "9", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "errQUEUE_BLOCKED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2311@macro@errQUEUE_YIELD", - "What": "MacroDef", - "defdec": "Def", - "display": "errQUEUE_YIELD", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "errQUEUE_YIELD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2455@macro@configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "What": "MacroDef", - "defdec": "Def", - "display": "configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "location": { - "column": "10", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2603@macro@pdINTEGRITY_CHECK_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "pdINTEGRITY_CHECK_VALUE", - "location": { - "column": "10", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdINTEGRITY_CHECK_VALUE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2749@macro@pdFREERTOS_ERRNO_NONE", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_NONE", - "location": { - "column": "9", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2800@macro@pdFREERTOS_ERRNO_ENOENT", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ENOENT", - "location": { - "column": "9", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ENOENT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2869@macro@pdFREERTOS_ERRNO_EINTR", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EINTR", - "location": { - "column": "9", - "line": "72", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EINTR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2935@macro@pdFREERTOS_ERRNO_EIO", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EIO", - "location": { - "column": "9", - "line": "73", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@2985@macro@pdFREERTOS_ERRNO_ENXIO", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ENXIO", - "location": { - "column": "9", - "line": "74", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ENXIO", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3053@macro@pdFREERTOS_ERRNO_EBADF", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EBADF", - "location": { - "column": "9", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EBADF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3111@macro@pdFREERTOS_ERRNO_EAGAIN", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EAGAIN", - "location": { - "column": "9", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EAGAIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3173@macro@pdFREERTOS_ERRNO_EWOULDBLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EWOULDBLOCK", - "location": { - "column": "9", - "line": "77", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EWOULDBLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3242@macro@pdFREERTOS_ERRNO_ENOMEM", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ENOMEM", - "location": { - "column": "9", - "line": "78", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ENOMEM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3304@macro@pdFREERTOS_ERRNO_EACCES", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EACCES", - "location": { - "column": "9", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EACCES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3366@macro@pdFREERTOS_ERRNO_EFAULT", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EFAULT", - "location": { - "column": "9", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EFAULT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3422@macro@pdFREERTOS_ERRNO_EBUSY", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EBUSY", - "location": { - "column": "9", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EBUSY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3483@macro@pdFREERTOS_ERRNO_EEXIST", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EEXIST", - "location": { - "column": "9", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EEXIST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3539@macro@pdFREERTOS_ERRNO_EXDEV", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EXDEV", - "location": { - "column": "9", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EXDEV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3600@macro@pdFREERTOS_ERRNO_ENODEV", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ENODEV", - "location": { - "column": "9", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ENODEV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3659@macro@pdFREERTOS_ERRNO_ENOTDIR", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ENOTDIR", - "location": { - "column": "9", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ENOTDIR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3719@macro@pdFREERTOS_ERRNO_EISDIR", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EISDIR", - "location": { - "column": "9", - "line": "86", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EISDIR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3778@macro@pdFREERTOS_ERRNO_EINVAL", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EINVAL", - "location": { - "column": "9", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EINVAL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3839@macro@pdFREERTOS_ERRNO_ENOSPC", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ENOSPC", - "location": { - "column": "9", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ENOSPC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3907@macro@pdFREERTOS_ERRNO_ESPIPE", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ESPIPE", - "location": { - "column": "9", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ESPIPE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@3964@macro@pdFREERTOS_ERRNO_EROFS", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EROFS", - "location": { - "column": "9", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EROFS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4029@macro@pdFREERTOS_ERRNO_EUNATCH", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EUNATCH", - "location": { - "column": "9", - "line": "91", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EUNATCH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4102@macro@pdFREERTOS_ERRNO_EBADE", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EBADE", - "location": { - "column": "9", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EBADE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4162@macro@pdFREERTOS_ERRNO_EFTYPE", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EFTYPE", - "location": { - "column": "9", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EFTYPE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4240@macro@pdFREERTOS_ERRNO_ENMFILE", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ENMFILE", - "location": { - "column": "9", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ENMFILE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4298@macro@pdFREERTOS_ERRNO_ENOTEMPTY", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ENOTEMPTY", - "location": { - "column": "9", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ENOTEMPTY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4364@macro@pdFREERTOS_ERRNO_ENAMETOOLONG", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ENAMETOOLONG", - "location": { - "column": "9", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ENAMETOOLONG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4440@macro@pdFREERTOS_ERRNO_EOPNOTSUPP", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EOPNOTSUPP", - "location": { - "column": "9", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EOPNOTSUPP", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4533@macro@pdFREERTOS_ERRNO_ENOBUFS", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ENOBUFS", - "location": { - "column": "9", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ENOBUFS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4604@macro@pdFREERTOS_ERRNO_ENOPROTOOPT", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ENOPROTOOPT", - "location": { - "column": "9", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ENOPROTOOPT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4675@macro@pdFREERTOS_ERRNO_EADDRINUSE", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EADDRINUSE", - "location": { - "column": "9", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EADDRINUSE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4746@macro@pdFREERTOS_ERRNO_ETIMEDOUT", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ETIMEDOUT", - "location": { - "column": "9", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ETIMEDOUT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4814@macro@pdFREERTOS_ERRNO_EINPROGRESS", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EINPROGRESS", - "location": { - "column": "9", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EINPROGRESS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4893@macro@pdFREERTOS_ERRNO_EALREADY", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EALREADY", - "location": { - "column": "9", - "line": "103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EALREADY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@4964@macro@pdFREERTOS_ERRNO_EADDRNOTAVAIL", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EADDRNOTAVAIL", - "location": { - "column": "9", - "line": "104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EADDRNOTAVAIL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@5037@macro@pdFREERTOS_ERRNO_EISCONN", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EISCONN", - "location": { - "column": "9", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EISCONN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@5110@macro@pdFREERTOS_ERRNO_ENOTCONN", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ENOTCONN", - "location": { - "column": "9", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ENOTCONN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@5180@macro@pdFREERTOS_ERRNO_ENOMEDIUM", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ENOMEDIUM", - "location": { - "column": "9", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ENOMEDIUM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@5246@macro@pdFREERTOS_ERRNO_EILSEQ", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_EILSEQ", - "location": { - "column": "9", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_EILSEQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@5335@macro@pdFREERTOS_ERRNO_ECANCELED", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_ERRNO_ECANCELED", - "location": { - "column": "9", - "line": "109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_ERRNO_ECANCELED", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@5495@macro@pdFREERTOS_LITTLE_ENDIAN", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_LITTLE_ENDIAN", - "location": { - "column": "9", - "line": "113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_LITTLE_ENDIAN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@5532@macro@pdFREERTOS_BIG_ENDIAN", - "What": "MacroDef", - "defdec": "Def", - "display": "pdFREERTOS_BIG_ENDIAN", - "location": { - "column": "9", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdFREERTOS_BIG_ENDIAN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@5622@macro@pdLITTLE_ENDIAN", - "What": "MacroDef", - "defdec": "Def", - "display": "pdLITTLE_ENDIAN", - "location": { - "column": "9", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdLITTLE_ENDIAN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:projdefs.h@5676@macro@pdBIG_ENDIAN", - "What": "MacroDef", - "defdec": "Def", - "display": "pdBIG_ENDIAN", - "location": { - "column": "9", - "line": "118", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\projdefs.h" - }, - "name": "pdBIG_ENDIAN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:ysizet.h@111@macro@_YSIZET_H", - "What": "MacroDef", - "defdec": "Def", - "display": "_YSIZET_H", - "location": { - "column": "9", - "line": "5", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\ysizet.h" - }, - "name": "_YSIZET_H", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:ysizet.h@277@macro@_SIZE_T", - "What": "MacroDef", - "defdec": "Def", - "display": "_SIZE_T", - "location": { - "column": "11", - "line": "16", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\ysizet.h" - }, - "name": "_SIZE_T", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:ysizet.h@296@macro@_STD_USING_SIZE_T", - "What": "MacroDef", - "defdec": "Def", - "display": "_STD_USING_SIZE_T", - "location": { - "column": "11", - "line": "17", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\ysizet.h" - }, - "name": "_STD_USING_SIZE_T", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:ysizet.h@T@size_t", - "What": "Typedef", - "defdec": "Def", - "display": "_Sizet", - "location": { - "column": "18", - "line": "18", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\ysizet.h" - }, - "name": "size_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:ysizet.h@359@macro@__DATA_PTR_MEM_HELPER1__", - "What": "MacroDef", - "defdec": "Def", - "display": "__DATA_PTR_MEM_HELPER1__", - "location": { - "column": "9", - "line": "21", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\ysizet.h" - }, - "name": "__DATA_PTR_MEM_HELPER1__", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:ysizet.h@T@__data_size_t", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "1", - "line": "23", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\ysizet.h" - }, - "name": "__data_size_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:portable.h@1530@macro@PORTABLE_H", - "What": "MacroDef", - "defdec": "Def", - "display": "PORTABLE_H", - "location": { - "column": "9", - "line": "33", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "PORTABLE_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portable.h@2840@macro@portBYTE_ALIGNMENT_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "portBYTE_ALIGNMENT_MASK", - "location": { - "column": "10", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "portBYTE_ALIGNMENT_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portable.h@3277@macro@portNUM_CONFIGURABLE_REGIONS", - "What": "MacroDef", - "defdec": "Def", - "display": "portNUM_CONFIGURABLE_REGIONS", - "location": { - "column": "10", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "portNUM_CONFIGURABLE_REGIONS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portable.h@3369@macro@portHAS_STACK_OVERFLOW_CHECKING", - "What": "MacroDef", - "defdec": "Def", - "display": "portHAS_STACK_OVERFLOW_CHECKING", - "location": { - "column": "10", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "portHAS_STACK_OVERFLOW_CHECKING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portable.h@3446@macro@portARCH_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "portARCH_NAME", - "location": { - "column": "10", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "portARCH_NAME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pxPortInitialiseStack", - "What": "Function", - "defdec": "Dec", - "display": "StackType_t * pxPortInitialiseStack(StackType_t *, TaskFunction_t, void *)", - "location": { - "column": "16", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "pxPortInitialiseStack", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pxPortInitialiseStack", - "What": "Function", - "defdec": "Dec", - "display": "StackType_t * pxPortInitialiseStack(StackType_t *, TaskFunction_t, void *)", - "location": { - "column": "16", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "pxPortInitialiseStack", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@HeapRegion", - "What": "Struct", - "defdec": "Def", - "display": "HeapRegion", - "location": { - "column": "16", - "line": "123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "members": [ - { - "ID": "c:@S@HeapRegion@FI@pucStartAddress", - "What": "FieldDecl", - "defdec": "Def", - "display": "pucStartAddress", - "location": { - "column": "11", - "line": "125", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "pucStartAddress", - "origin": "user_include", - "scope": "HeapRegion" - }, - { - "ID": "c:@S@HeapRegion@FI@xSizeInBytes", - "What": "FieldDecl", - "defdec": "Def", - "display": "xSizeInBytes", - "location": { - "column": "9", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xSizeInBytes", - "origin": "user_include", - "scope": "HeapRegion" - } - ], - "name": "HeapRegion", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portable.h@T@HeapRegion_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct HeapRegion", - "location": { - "column": "3", - "line": "127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "HeapRegion_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@xHeapStats", - "What": "Struct", - "defdec": "Def", - "display": "xHeapStats", - "location": { - "column": "16", - "line": "130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "members": [ - { - "ID": "c:@S@xHeapStats@FI@xAvailableHeapSpaceInBytes", - "What": "FieldDecl", - "defdec": "Def", - "display": "xAvailableHeapSpaceInBytes", - "location": { - "column": "9", - "line": "132", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xAvailableHeapSpaceInBytes", - "origin": "user_include", - "scope": "xHeapStats" - }, - { - "ID": "c:@S@xHeapStats@FI@xSizeOfLargestFreeBlockInBytes", - "What": "FieldDecl", - "defdec": "Def", - "display": "xSizeOfLargestFreeBlockInBytes", - "location": { - "column": "9", - "line": "133", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xSizeOfLargestFreeBlockInBytes", - "origin": "user_include", - "scope": "xHeapStats" - }, - { - "ID": "c:@S@xHeapStats@FI@xSizeOfSmallestFreeBlockInBytes", - "What": "FieldDecl", - "defdec": "Def", - "display": "xSizeOfSmallestFreeBlockInBytes", - "location": { - "column": "9", - "line": "134", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xSizeOfSmallestFreeBlockInBytes", - "origin": "user_include", - "scope": "xHeapStats" - }, - { - "ID": "c:@S@xHeapStats@FI@xNumberOfFreeBlocks", - "What": "FieldDecl", - "defdec": "Def", - "display": "xNumberOfFreeBlocks", - "location": { - "column": "9", - "line": "135", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xNumberOfFreeBlocks", - "origin": "user_include", - "scope": "xHeapStats" - }, - { - "ID": "c:@S@xHeapStats@FI@xMinimumEverFreeBytesRemaining", - "What": "FieldDecl", - "defdec": "Def", - "display": "xMinimumEverFreeBytesRemaining", - "location": { - "column": "9", - "line": "136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xMinimumEverFreeBytesRemaining", - "origin": "user_include", - "scope": "xHeapStats" - }, - { - "ID": "c:@S@xHeapStats@FI@xNumberOfSuccessfulAllocations", - "What": "FieldDecl", - "defdec": "Def", - "display": "xNumberOfSuccessfulAllocations", - "location": { - "column": "9", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xNumberOfSuccessfulAllocations", - "origin": "user_include", - "scope": "xHeapStats" - }, - { - "ID": "c:@S@xHeapStats@FI@xNumberOfSuccessfulFrees", - "What": "FieldDecl", - "defdec": "Def", - "display": "xNumberOfSuccessfulFrees", - "location": { - "column": "9", - "line": "138", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xNumberOfSuccessfulFrees", - "origin": "user_include", - "scope": "xHeapStats" - } - ], - "name": "xHeapStats", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:portable.h@T@HeapStats_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct xHeapStats", - "location": { - "column": "3", - "line": "139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "HeapStats_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortDefineHeapRegions", - "What": "Function", - "defdec": "Dec", - "display": "void vPortDefineHeapRegions(const HeapRegion_t *const)", - "location": { - "column": "6", - "line": "152", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "vPortDefineHeapRegions", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortDefineHeapRegions", - "What": "Function", - "defdec": "Dec", - "display": "void vPortDefineHeapRegions(const HeapRegion_t *const)", - "location": { - "column": "6", - "line": "152", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "vPortDefineHeapRegions", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortGetHeapStats", - "What": "Function", - "defdec": "Dec", - "display": "void vPortGetHeapStats(HeapStats_t *)", - "location": { - "column": "6", - "line": "158", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "vPortGetHeapStats", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortGetHeapStats", - "What": "Function", - "defdec": "Dec", - "display": "void vPortGetHeapStats(HeapStats_t *)", - "location": { - "column": "6", - "line": "158", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "vPortGetHeapStats", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pvPortMalloc", - "What": "Function", - "defdec": "Dec", - "display": "void * pvPortMalloc(size_t)", - "location": { - "column": "7", - "line": "163", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "pvPortMalloc", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@pvPortMalloc", - "What": "Function", - "defdec": "Dec", - "display": "void * pvPortMalloc(size_t)", - "location": { - "column": "7", - "line": "163", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "pvPortMalloc", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortFree", - "What": "Function", - "defdec": "Dec", - "display": "void vPortFree(void *)", - "location": { - "column": "6", - "line": "164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "vPortFree", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortFree", - "What": "Function", - "defdec": "Dec", - "display": "void vPortFree(void *)", - "location": { - "column": "6", - "line": "164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "vPortFree", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortInitialiseBlocks", - "What": "Function", - "defdec": "Dec", - "display": "void vPortInitialiseBlocks(void)", - "location": { - "column": "6", - "line": "165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "vPortInitialiseBlocks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xPortGetFreeHeapSize", - "What": "Function", - "defdec": "Dec", - "display": "size_t xPortGetFreeHeapSize(void)", - "location": { - "column": "8", - "line": "166", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xPortGetFreeHeapSize", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xPortGetFreeHeapSize", - "What": "Function", - "defdec": "Dec", - "display": "size_t xPortGetFreeHeapSize(void)", - "location": { - "column": "8", - "line": "166", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xPortGetFreeHeapSize", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xPortGetMinimumEverFreeHeapSize", - "What": "Function", - "defdec": "Dec", - "display": "size_t xPortGetMinimumEverFreeHeapSize(void)", - "location": { - "column": "8", - "line": "167", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xPortGetMinimumEverFreeHeapSize", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xPortGetMinimumEverFreeHeapSize", - "What": "Function", - "defdec": "Dec", - "display": "size_t xPortGetMinimumEverFreeHeapSize(void)", - "location": { - "column": "8", - "line": "167", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xPortGetMinimumEverFreeHeapSize", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xPortStartScheduler", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xPortStartScheduler(void)", - "location": { - "column": "12", - "line": "173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xPortStartScheduler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xPortStartScheduler", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xPortStartScheduler(void)", - "location": { - "column": "12", - "line": "173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "xPortStartScheduler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortEndScheduler", - "What": "Function", - "defdec": "Dec", - "display": "void vPortEndScheduler(void)", - "location": { - "column": "6", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "vPortEndScheduler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vPortEndScheduler", - "What": "Function", - "defdec": "Dec", - "display": "void vPortEndScheduler(void)", - "location": { - "column": "6", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\portable.h" - }, - "name": "vPortEndScheduler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:IntQueue.h@1338@macro@QUEUE_ACCESS_TEST", - "What": "MacroDef", - "defdec": "Def", - "display": "QUEUE_ACCESS_TEST", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\IntQueue.h" - }, - "name": "QUEUE_ACCESS_TEST", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vStartInterruptQueueTasks", - "What": "Function", - "defdec": "Dec", - "display": "void vStartInterruptQueueTasks(void)", - "location": { - "column": "6", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\IntQueue.h" - }, - "name": "vStartInterruptQueueTasks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vStartInterruptQueueTasks", - "What": "Function", - "defdec": "Dec", - "display": "void vStartInterruptQueueTasks(void)", - "location": { - "column": "6", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\IntQueue.h" - }, - "name": "vStartInterruptQueueTasks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xAreIntQueueTasksStillRunning", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xAreIntQueueTasksStillRunning(void)", - "location": { - "column": "12", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\IntQueue.h" - }, - "name": "xAreIntQueueTasksStillRunning", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xAreIntQueueTasksStillRunning", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xAreIntQueueTasksStillRunning(void)", - "location": { - "column": "12", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\IntQueue.h" - }, - "name": "xAreIntQueueTasksStillRunning", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xFirstTimerHandler", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xFirstTimerHandler(void)", - "location": { - "column": "12", - "line": "33", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\IntQueue.h" - }, - "name": "xFirstTimerHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xFirstTimerHandler", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xFirstTimerHandler(void)", - "location": { - "column": "12", - "line": "33", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\IntQueue.h" - }, - "name": "xFirstTimerHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xSecondTimerHandler", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xSecondTimerHandler(void)", - "location": { - "column": "12", - "line": "34", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\IntQueue.h" - }, - "name": "xSecondTimerHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xSecondTimerHandler", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xSecondTimerHandler(void)", - "location": { - "column": "12", - "line": "34", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\IntQueue.h" - }, - "name": "xSecondTimerHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:DLib_Config_Normal.h@105@macro@_DLIB_CONFIG_H", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_CONFIG_H", - "location": { - "column": "9", - "line": "5", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" - }, - "name": "_DLIB_CONFIG_H", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console.h@958@macro@_FSL_DEBUGCONSOLE_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_FSL_DEBUGCONSOLE_H_", - "location": { - "column": "9", - "line": "23", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "_FSL_DEBUGCONSOLE_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@g_serialHandle", - "What": "Variable", - "defdec": "Dec", - "display": "g_serialHandle", - "location": { - "column": "24", - "line": "37", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "g_serialHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console.h@1430@macro@DEBUGCONSOLE_REDIRECT_TO_TOOLCHAIN", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUGCONSOLE_REDIRECT_TO_TOOLCHAIN", - "location": { - "column": "9", - "line": "40", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DEBUGCONSOLE_REDIRECT_TO_TOOLCHAIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console.h@1520@macro@DEBUGCONSOLE_REDIRECT_TO_SDK", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUGCONSOLE_REDIRECT_TO_SDK", - "location": { - "column": "9", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DEBUGCONSOLE_REDIRECT_TO_SDK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console.h@1609@macro@DEBUGCONSOLE_DISABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUGCONSOLE_DISABLE", - "location": { - "column": "9", - "line": "42", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DEBUGCONSOLE_DISABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console.h@1856@macro@SDK_DEBUGCONSOLE", - "What": "MacroDef", - "defdec": "Def", - "display": "SDK_DEBUGCONSOLE", - "location": { - "column": "9", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "SDK_DEBUGCONSOLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console.h@2096@macro@SDK_DEBUGCONSOLE_UART", - "What": "MacroDef", - "defdec": "Def", - "display": "SDK_DEBUGCONSOLE_UART", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "SDK_DEBUGCONSOLE_UART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console.h@2829@macro@PRINTF", - "What": "MacroDef", - "defdec": "Def", - "display": "PRINTF", - "location": { - "column": "9", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "PRINTF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console.h@2863@macro@SCANF", - "What": "MacroDef", - "defdec": "Def", - "display": "SCANF", - "location": { - "column": "9", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "SCANF", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console.h@2895@macro@PUTCHAR", - "What": "MacroDef", - "defdec": "Def", - "display": "PUTCHAR", - "location": { - "column": "9", - "line": "77", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "PUTCHAR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console.h@2931@macro@GETCHAR", - "What": "MacroDef", - "defdec": "Def", - "display": "GETCHAR", - "location": { - "column": "9", - "line": "78", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "GETCHAR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Init", - "What": "Function", - "defdec": "Dec", - "display": "status_t DbgConsole_Init(uint8_t, uint32_t, serial_port_type_t, uint32_t)", - "location": { - "column": "10", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Init", - "What": "Function", - "defdec": "Dec", - "display": "status_t DbgConsole_Init(uint8_t, uint32_t, serial_port_type_t, uint32_t)", - "location": { - "column": "10", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Deinit", - "What": "Function", - "defdec": "Dec", - "display": "status_t DbgConsole_Deinit(void)", - "location": { - "column": "10", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Deinit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Deinit", - "What": "Function", - "defdec": "Dec", - "display": "status_t DbgConsole_Deinit(void)", - "location": { - "column": "10", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Deinit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Printf", - "What": "Function", - "defdec": "Dec", - "display": "int DbgConsole_Printf(const char *, ...)", - "location": { - "column": "5", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Printf", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Printf", - "What": "Function", - "defdec": "Dec", - "display": "int DbgConsole_Printf(const char *, ...)", - "location": { - "column": "5", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Printf", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Putchar", - "What": "Function", - "defdec": "Dec", - "display": "int DbgConsole_Putchar(int)", - "location": { - "column": "5", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Putchar", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Putchar", - "What": "Function", - "defdec": "Dec", - "display": "int DbgConsole_Putchar(int)", - "location": { - "column": "5", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Putchar", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Scanf", - "What": "Function", - "defdec": "Dec", - "display": "int DbgConsole_Scanf(char *, ...)", - "location": { - "column": "5", - "line": "163", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Scanf", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Scanf", - "What": "Function", - "defdec": "Dec", - "display": "int DbgConsole_Scanf(char *, ...)", - "location": { - "column": "5", - "line": "163", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Scanf", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Getchar", - "What": "Function", - "defdec": "Dec", - "display": "int DbgConsole_Getchar(void)", - "location": { - "column": "5", - "line": "178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Getchar", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Getchar", - "What": "Function", - "defdec": "Dec", - "display": "int DbgConsole_Getchar(void)", - "location": { - "column": "5", - "line": "178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Getchar", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Flush", - "What": "Function", - "defdec": "Dec", - "display": "status_t DbgConsole_Flush(void)", - "location": { - "column": "10", - "line": "190", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Flush", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Flush", - "What": "Function", - "defdec": "Dec", - "display": "status_t DbgConsole_Flush(void)", - "location": { - "column": "10", - "line": "190", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.h" - }, - "name": "DbgConsole_Flush", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_port_uart.h@149@macro@__SERIAL_PORT_UART_H__", - "What": "MacroDef", - "defdec": "Def", - "display": "__SERIAL_PORT_UART_H__", - "location": { - "column": "9", - "line": "10", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "__SERIAL_PORT_UART_H__", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_port_uart.h@602@macro@SERIAL_PORT_UART_HANDLE_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_PORT_UART_HANDLE_SIZE", - "location": { - "column": "9", - "line": "24", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "SERIAL_PORT_UART_HANDLE_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_port_uart_parity_mode", - "What": "Enum", - "defdec": "Def", - "display": "_serial_port_uart_parity_mode", - "fields": [ - { - "ID": "c:@E@_serial_port_uart_parity_mode@kSerialManager_UartParityDisabled", - "What": "Enumerator", - "defdec": "Def", - "display": "kSerialManager_UartParityDisabled", - "location": { - "column": "5", - "line": "30", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "kSerialManager_UartParityDisabled", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_port_uart_parity_mode@kSerialManager_UartParityEven", - "What": "Enumerator", - "defdec": "Def", - "display": "kSerialManager_UartParityEven", - "location": { - "column": "5", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "kSerialManager_UartParityEven", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_port_uart_parity_mode@kSerialManager_UartParityOdd", - "What": "Enumerator", - "defdec": "Def", - "display": "kSerialManager_UartParityOdd", - "location": { - "column": "5", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "kSerialManager_UartParityOdd", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "28", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "_serial_port_uart_parity_mode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_port_uart.h@T@serial_port_uart_parity_mode_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _serial_port_uart_parity_mode", - "location": { - "column": "3", - "line": "33", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "serial_port_uart_parity_mode_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_port_uart_stop_bit_count", - "What": "Enum", - "defdec": "Def", - "display": "_serial_port_uart_stop_bit_count", - "fields": [ - { - "ID": "c:@E@_serial_port_uart_stop_bit_count@kSerialManager_UartOneStopBit", - "What": "Enumerator", - "defdec": "Def", - "display": "kSerialManager_UartOneStopBit", - "location": { - "column": "5", - "line": "38", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "kSerialManager_UartOneStopBit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_serial_port_uart_stop_bit_count@kSerialManager_UartTwoStopBit", - "What": "Enumerator", - "defdec": "Def", - "display": "kSerialManager_UartTwoStopBit", - "location": { - "column": "5", - "line": "39", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "kSerialManager_UartTwoStopBit", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "36", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "_serial_port_uart_stop_bit_count", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_port_uart.h@T@serial_port_uart_stop_bit_count_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _serial_port_uart_stop_bit_count", - "location": { - "column": "3", - "line": "40", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "serial_port_uart_stop_bit_count_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_serial_port_uart_config", - "What": "Struct", - "defdec": "Def", - "display": "_serial_port_uart_config", - "location": { - "column": "16", - "line": "43", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "members": [ - { - "ID": "c:@S@_serial_port_uart_config@FI@clockRate", - "What": "FieldDecl", - "defdec": "Def", - "display": "clockRate", - "location": { - "column": "14", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "clockRate", - "origin": "user_include", - "scope": "_serial_port_uart_config" - }, - { - "ID": "c:@S@_serial_port_uart_config@FI@baudRate", - "What": "FieldDecl", - "defdec": "Def", - "display": "baudRate", - "location": { - "column": "14", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "baudRate", - "origin": "user_include", - "scope": "_serial_port_uart_config" - }, - { - "ID": "c:@S@_serial_port_uart_config@FI@parityMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "parityMode", - "location": { - "column": "36", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "parityMode", - "origin": "user_include", - "scope": "_serial_port_uart_config" - }, - { - "ID": "c:@S@_serial_port_uart_config@FI@stopBitCount", - "What": "FieldDecl", - "defdec": "Def", - "display": "stopBitCount", - "location": { - "column": "39", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "stopBitCount", - "origin": "user_include", - "scope": "_serial_port_uart_config" - }, - { - "ID": "c:@S@_serial_port_uart_config@FI@instance", - "What": "FieldDecl", - "defdec": "Def", - "display": "instance", - "location": { - "column": "13", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "instance", - "origin": "user_include", - "scope": "_serial_port_uart_config" - }, - { - "ID": "c:@S@_serial_port_uart_config@FI@enableRx", - "What": "FieldDecl", - "defdec": "Def", - "display": "enableRx", - "location": { - "column": "13", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "enableRx", - "origin": "user_include", - "scope": "_serial_port_uart_config" - }, - { - "ID": "c:@S@_serial_port_uart_config@FI@enableTx", - "What": "FieldDecl", - "defdec": "Def", - "display": "enableTx", - "location": { - "column": "13", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "enableTx", - "origin": "user_include", - "scope": "_serial_port_uart_config" - } - ], - "name": "_serial_port_uart_config", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:serial_port_uart.h@T@serial_port_uart_config_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _serial_port_uart_config", - "location": { - "column": "3", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.h" - }, - "name": "serial_port_uart_config_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@ExtClockIn", - "What": "Variable", - "defdec": "Def", - "display": "ExtClockIn", - "location": { - "column": "16", - "line": "19", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.c" - }, - "name": "ExtClockIn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitDebugConsole", - "What": "Function", - "defdec": "Def", - "display": "status_t BOARD_InitDebugConsole(void)", - "location": { - "column": "10", - "line": "25", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.c" - }, - "name": "BOARD_InitDebugConsole", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:board.c@755@F@BOARD_InitDebugConsole@result", - "What": "Variable", - "defdec": "Def", - "display": "result", - "location": { - "column": "14", - "line": "27", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\board.c" - }, - "name": "result", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:assert.h@1249@macro@static_assert", - "What": "MacroDef", - "defdec": "Def", - "display": "static_assert", - "location": { - "column": "11", - "line": "38", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\assert.h" - }, - "name": "static_assert", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__aeabi_assert", - "What": "Function", - "defdec": "Dec", - "display": "void __aeabi_assert(const char *, const char *, int)", - "location": { - "column": "23", - "line": "44", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\assert.h" - }, - "name": "__aeabi_assert", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__aeabi_assert", - "What": "Function", - "defdec": "Dec", - "display": "void __aeabi_assert(const char *, const char *, int)", - "location": { - "column": "23", - "line": "44", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\assert.h" - }, - "name": "__aeabi_assert", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_ReportAssert", - "What": "Function", - "defdec": "Dec", - "display": "int __iar_ReportAssert(const char *, const char *, const char *, const char *)", - "location": { - "column": "21", - "line": "50", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\assert.h" - }, - "name": "__iar_ReportAssert", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_EmptyStepPoint", - "What": "Function", - "defdec": "Dec", - "display": "void __iar_EmptyStepPoint(void)", - "location": { - "column": "21", - "line": "53", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\assert.h" - }, - "name": "__iar_EmptyStepPoint", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:assert.h@2057@macro@_STEPPOINT", - "What": "MacroDef", - "defdec": "Def", - "display": "_STEPPOINT", - "location": { - "column": "13", - "line": "64", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\assert.h" - }, - "name": "_STEPPOINT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:assert.h@2171@macro@__FUNC", - "What": "MacroDef", - "defdec": "Def", - "display": "__FUNC", - "location": { - "column": "13", - "line": "70", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\assert.h" - }, - "name": "__FUNC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:assert.h@2233@macro@__CALL", - "What": "MacroDef", - "defdec": "Def", - "display": "__CALL", - "location": { - "column": "13", - "line": "74", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\assert.h" - }, - "name": "__CALL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:assert.h@2638@macro@assert", - "What": "MacroDef", - "defdec": "Def", - "display": "assert", - "location": { - "column": "13", - "line": "86", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\assert.h" - }, - "name": "assert", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:blocktim.h@1338@macro@BLOCK_TIME_TEST_H", - "What": "MacroDef", - "defdec": "Def", - "display": "BLOCK_TIME_TEST_H", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\blocktim.h" - }, - "name": "BLOCK_TIME_TEST_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vCreateBlockTimeTasks", - "What": "Function", - "defdec": "Dec", - "display": "void vCreateBlockTimeTasks(void)", - "location": { - "column": "6", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\blocktim.h" - }, - "name": "vCreateBlockTimeTasks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vCreateBlockTimeTasks", - "What": "Function", - "defdec": "Dec", - "display": "void vCreateBlockTimeTasks(void)", - "location": { - "column": "6", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\blocktim.h" - }, - "name": "vCreateBlockTimeTasks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xAreBlockTimeTestTasksStillRunning", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xAreBlockTimeTestTasksStillRunning(void)", - "location": { - "column": "12", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\blocktim.h" - }, - "name": "xAreBlockTimeTestTasksStillRunning", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xAreBlockTimeTestTasksStillRunning", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xAreBlockTimeTestTasksStillRunning(void)", - "location": { - "column": "12", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\blocktim.h" - }, - "name": "xAreBlockTimeTestTasksStillRunning", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_power.h@193@macro@_FSL_POWER_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_FSL_POWER_H_", - "location": { - "column": "9", - "line": "10", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "_FSL_POWER_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_power.h@562@macro@FSL_POWER_DRIVER_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_POWER_DRIVER_VERSION", - "location": { - "column": "9", - "line": "26", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "FSL_POWER_DRIVER_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_power.h@630@macro@MAKE_PD_BITS", - "What": "MacroDef", - "defdec": "Def", - "display": "MAKE_PD_BITS", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "MAKE_PD_BITS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_power.h@683@macro@PDRCFG0", - "What": "MacroDef", - "defdec": "Def", - "display": "PDRCFG0", - "location": { - "column": "9", - "line": "30", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "PDRCFG0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_power.h@705@macro@PDRCFG1", - "What": "MacroDef", - "defdec": "Def", - "display": "PDRCFG1", - "location": { - "column": "9", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "PDRCFG1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits", - "What": "Enum", - "defdec": "Def", - "display": "pd_bits", - "fields": [ - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_FRO_EN", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_FRO_EN", - "location": { - "column": "5", - "line": "35", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_FRO_EN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_FLASH", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_FLASH", - "location": { - "column": "5", - "line": "36", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_FLASH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_TEMPS", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_TEMPS", - "location": { - "column": "5", - "line": "37", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_TEMPS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_BOD_RESET", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_BOD_RESET", - "location": { - "column": "5", - "line": "38", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_BOD_RESET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_BOD_INTR", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_BOD_INTR", - "location": { - "column": "5", - "line": "39", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_BOD_INTR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_ADC0", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_ADC0", - "location": { - "column": "5", - "line": "40", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_ADC0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_VDDFLASH", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_VDDFLASH", - "location": { - "column": "5", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_VDDFLASH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_LP_VDDFLASH", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_LP_VDDFLASH", - "location": { - "column": "5", - "line": "42", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_LP_VDDFLASH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_RAM0", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_RAM0", - "location": { - "column": "5", - "line": "43", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_RAM0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_RAM1", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_RAM1", - "location": { - "column": "5", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_RAM1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_RAM2", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_RAM2", - "location": { - "column": "5", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_RAM2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_RAMX", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_RAMX", - "location": { - "column": "5", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_RAMX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_ROM", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_ROM", - "location": { - "column": "5", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_ROM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_VDDHV_ENA", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_VDDHV_ENA", - "location": { - "column": "5", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_VDDHV_ENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_VD7_ENA", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_VD7_ENA", - "location": { - "column": "5", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_VD7_ENA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_WDT_OSC", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_WDT_OSC", - "location": { - "column": "5", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_WDT_OSC", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_USB0_PHY", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_USB0_PHY", - "location": { - "column": "5", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_USB0_PHY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_SYS_PLL0", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_SYS_PLL0", - "location": { - "column": "5", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_SYS_PLL0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_VREFP_SW", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_VREFP_SW", - "location": { - "column": "5", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_VREFP_SW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_FLASH_BG", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_FLASH_BG", - "location": { - "column": "5", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_FLASH_BG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_PD_ALT_FLASH_IBG", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_PD_ALT_FLASH_IBG", - "location": { - "column": "5", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_PD_ALT_FLASH_IBG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_SEL_ALT_FLASH_IBG", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_SEL_ALT_FLASH_IBG", - "location": { - "column": "5", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_SEL_ALT_FLASH_IBG", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@pd_bits@kPDRUNCFG_ForceUnsigned", - "What": "Enumerator", - "defdec": "Def", - "display": "kPDRUNCFG_ForceUnsigned", - "location": { - "column": "5", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPDRUNCFG_ForceUnsigned", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "33", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "pd_bits", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_power.h@T@pd_bit_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum pd_bits", - "location": { - "column": "3", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "pd_bit_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_power_mode_config", - "What": "Enum", - "defdec": "Def", - "display": "_power_mode_config", - "fields": [ - { - "ID": "c:@E@_power_mode_config@kPmu_Sleep", - "What": "Enumerator", - "defdec": "Def", - "display": "kPmu_Sleep", - "location": { - "column": "5", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPmu_Sleep", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_power_mode_config@kPmu_Deep_Sleep", - "What": "Enumerator", - "defdec": "Def", - "display": "kPmu_Deep_Sleep", - "location": { - "column": "5", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPmu_Deep_Sleep", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_power_mode_config@kPmu_Deep_PowerDown", - "What": "Enumerator", - "defdec": "Def", - "display": "kPmu_Deep_PowerDown", - "location": { - "column": "5", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "kPmu_Deep_PowerDown", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "_power_mode_config", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_power.h@T@power_mode_cfg_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _power_mode_config", - "location": { - "column": "3", - "line": "68", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "power_mode_cfg_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_power.h@F@POWER_EnablePD", - "What": "Function", - "defdec": "Def", - "display": "void POWER_EnablePD(pd_bit_t)", - "location": { - "column": "20", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "POWER_EnablePD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_power.h@F@POWER_DisablePD", - "What": "Function", - "defdec": "Def", - "display": "void POWER_DisablePD(pd_bit_t)", - "location": { - "column": "20", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "POWER_DisablePD", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_power.h@F@POWER_EnableDeepSleep", - "What": "Function", - "defdec": "Def", - "display": "void POWER_EnableDeepSleep(void)", - "location": { - "column": "20", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "POWER_EnableDeepSleep", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_power.h@F@POWER_DisableDeepSleep", - "What": "Function", - "defdec": "Def", - "display": "void POWER_DisableDeepSleep(void)", - "location": { - "column": "20", - "line": "122", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "POWER_DisableDeepSleep", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_power.h@F@POWER_PowerDownFlash", - "What": "Function", - "defdec": "Def", - "display": "void POWER_PowerDownFlash(void)", - "location": { - "column": "20", - "line": "132", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "POWER_PowerDownFlash", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_power.h@F@POWER_PowerUpFlash", - "What": "Function", - "defdec": "Def", - "display": "void POWER_PowerUpFlash(void)", - "location": { - "column": "20", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "POWER_PowerUpFlash", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@POWER_EnterPowerMode", - "What": "Function", - "defdec": "Dec", - "display": "void POWER_EnterPowerMode(power_mode_cfg_t, uint64_t)", - "location": { - "column": "6", - "line": "165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "POWER_EnterPowerMode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@POWER_EnterSleep", - "What": "Function", - "defdec": "Dec", - "display": "void POWER_EnterSleep(void)", - "location": { - "column": "6", - "line": "172", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "POWER_EnterSleep", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@POWER_EnterDeepSleep", - "What": "Function", - "defdec": "Dec", - "display": "void POWER_EnterDeepSleep(uint64_t)", - "location": { - "column": "6", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "POWER_EnterDeepSleep", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@POWER_EnterDeepPowerDown", - "What": "Function", - "defdec": "Dec", - "display": "void POWER_EnterDeepPowerDown(uint64_t)", - "location": { - "column": "6", - "line": "189", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "POWER_EnterDeepPowerDown", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@POWER_SetVoltageForFreq", - "What": "Function", - "defdec": "Dec", - "display": "void POWER_SetVoltageForFreq(uint32_t)", - "location": { - "column": "6", - "line": "198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "POWER_SetVoltageForFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@POWER_SetLowPowerVoltageForFreq", - "What": "Function", - "defdec": "Dec", - "display": "void POWER_SetLowPowerVoltageForFreq(uint32_t)", - "location": { - "column": "6", - "line": "207", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "POWER_SetLowPowerVoltageForFreq", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@POWER_GetLibVersion", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t POWER_GetLibVersion(void)", - "location": { - "column": "10", - "line": "214", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.h" - }, - "name": "POWER_GetLibVersion", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stdbool.h@96@macro@_STDBOOL", - "What": "MacroDef", - "defdec": "Def", - "display": "_STDBOOL", - "location": { - "column": "9", - "line": "5", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdbool.h" - }, - "name": "_STDBOOL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdbool.h@200@macro@bool", - "What": "MacroDef", - "defdec": "Def", - "display": "bool", - "location": { - "column": "11", - "line": "13", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdbool.h" - }, - "name": "bool", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdbool.h@225@macro@true", - "What": "MacroDef", - "defdec": "Def", - "display": "true", - "location": { - "column": "11", - "line": "14", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdbool.h" - }, - "name": "true", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdbool.h@246@macro@false", - "What": "MacroDef", - "defdec": "Def", - "display": "false", - "location": { - "column": "11", - "line": "15", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdbool.h" - }, - "name": "false", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdbool.h@275@macro@__bool_true_false_are_defined", - "What": "MacroDef", - "defdec": "Def", - "display": "__bool_true_false_are_defined", - "location": { - "column": "9", - "line": "18", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdbool.h" - }, - "name": "__bool_true_false_are_defined", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stddef.h@100@macro@_STDDEF", - "What": "MacroDef", - "defdec": "Def", - "display": "_STDDEF", - "location": { - "column": "9", - "line": "4", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "_STDDEF", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stddef.h@272@macro@NULL", - "What": "MacroDef", - "defdec": "Def", - "display": "NULL", - "location": { - "column": "11", - "line": "16", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "NULL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stddef.h@324@macro@offsetof", - "What": "MacroDef", - "defdec": "Def", - "display": "offsetof", - "location": { - "column": "11", - "line": "20", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "offsetof", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stddef.h@450@macro@_PTRDIFF_T", - "What": "MacroDef", - "defdec": "Def", - "display": "_PTRDIFF_T", - "location": { - "column": "13", - "line": "25", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "_PTRDIFF_T", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stddef.h@474@macro@_STD_USING_PTRDIFF_T", - "What": "MacroDef", - "defdec": "Def", - "display": "_STD_USING_PTRDIFF_T", - "location": { - "column": "13", - "line": "26", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "_STD_USING_PTRDIFF_T", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stddef.h@T@ptrdiff_t", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "32", - "line": "27", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "ptrdiff_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stddef.h@578@macro@_WCHART", - "What": "MacroDef", - "defdec": "Def", - "display": "_WCHART", - "location": { - "column": "13", - "line": "31", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "_WCHART", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stddef.h@T@wchar_t", - "What": "Typedef", - "defdec": "Def", - "display": "_Wchart", - "location": { - "column": "21", - "line": "32", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "wchar_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stddef.h@813@macro@_MAX_ALIGN_T", - "What": "MacroDef", - "defdec": "Def", - "display": "_MAX_ALIGN_T", - "location": { - "column": "13", - "line": "41", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "_MAX_ALIGN_T", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@UA@_Max_align_t", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "13", - "line": "42", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "members": [ - { - "ID": "c:@UA@_Max_align_t@FI@_ll", - "What": "FieldDecl", - "defdec": "Def", - "display": "_ll", - "location": { - "column": "17", - "line": "44", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "_ll", - "origin": "system_include", - "scope": "_anonymous_stddef_h_42_13" - }, - { - "ID": "c:@UA@_Max_align_t@FI@_ld", - "What": "FieldDecl", - "defdec": "Def", - "display": "_ld", - "location": { - "column": "19", - "line": "45", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "_ld", - "origin": "system_include", - "scope": "_anonymous_stddef_h_42_13" - }, - { - "ID": "c:@UA@_Max_align_t@FI@_vp", - "What": "FieldDecl", - "defdec": "Def", - "display": "_vp", - "location": { - "column": "13", - "line": "46", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "_vp", - "origin": "system_include", - "scope": "_anonymous_stddef_h_42_13" - } - ], - "name": "", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@T@_Max_align_t", - "What": "Typedef", - "defdec": "Def", - "display": "union _Max_align_t", - "location": { - "column": "7", - "line": "47", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "_Max_align_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stddef.h@T@max_align_t", - "What": "Typedef", - "defdec": "Def", - "display": "_Max_align_t", - "location": { - "column": "26", - "line": "48", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stddef.h" - }, - "name": "max_align_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:system_LPC51U68.h@1607@macro@_SYSTEM_LPC51U68_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_SYSTEM_LPC51U68_H_", - "location": { - "column": "9", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.h" - }, - "name": "_SYSTEM_LPC51U68_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:system_LPC51U68.h@1773@macro@DEFAULT_SYSTEM_CLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "DEFAULT_SYSTEM_CLOCK", - "location": { - "column": "9", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.h" - }, - "name": "DEFAULT_SYSTEM_CLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:system_LPC51U68.h@1866@macro@CLK_RTC_32K_CLK", - "What": "MacroDef", - "defdec": "Def", - "display": "CLK_RTC_32K_CLK", - "location": { - "column": "9", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.h" - }, - "name": "CLK_RTC_32K_CLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:system_LPC51U68.h@1970@macro@CLK_FRO_12MHZ", - "What": "MacroDef", - "defdec": "Def", - "display": "CLK_FRO_12MHZ", - "location": { - "column": "9", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.h" - }, - "name": "CLK_FRO_12MHZ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:system_LPC51U68.h@2057@macro@CLK_FRO_48MHZ", - "What": "MacroDef", - "defdec": "Def", - "display": "CLK_FRO_48MHZ", - "location": { - "column": "9", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.h" - }, - "name": "CLK_FRO_48MHZ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:system_LPC51U68.h@2144@macro@CLK_FRO_96MHZ", - "What": "MacroDef", - "defdec": "Def", - "display": "CLK_FRO_96MHZ", - "location": { - "column": "9", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.h" - }, - "name": "CLK_FRO_96MHZ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:system_LPC51U68.h@2231@macro@CLK_CLK_IN", - "What": "MacroDef", - "defdec": "Def", - "display": "CLK_CLK_IN", - "location": { - "column": "9", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.h" - }, - "name": "CLK_CLK_IN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SystemCoreClock", - "What": "Variable", - "defdec": "Dec", - "display": "SystemCoreClock", - "location": { - "column": "17", - "line": "73", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.h" - }, - "name": "SystemCoreClock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SystemCoreClock", - "What": "Variable", - "defdec": "Dec", - "display": "SystemCoreClock", - "location": { - "column": "17", - "line": "73", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.h" - }, - "name": "SystemCoreClock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SystemInit", - "What": "Function", - "defdec": "Dec", - "display": "void SystemInit(void)", - "location": { - "column": "6", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.h" - }, - "name": "SystemInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SystemInit", - "What": "Function", - "defdec": "Dec", - "display": "void SystemInit(void)", - "location": { - "column": "6", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.h" - }, - "name": "SystemInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SystemCoreClockUpdate", - "What": "Function", - "defdec": "Dec", - "display": "void SystemCoreClockUpdate(void)", - "location": { - "column": "6", - "line": "91", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.h" - }, - "name": "SystemCoreClockUpdate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@SystemCoreClockUpdate", - "What": "Function", - "defdec": "Dec", - "display": "void SystemCoreClockUpdate(void)", - "location": { - "column": "6", - "line": "91", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.h" - }, - "name": "SystemCoreClockUpdate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:clock_config.h@140@macro@_CLOCK_CONFIG_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_CLOCK_CONFIG_H_", - "location": { - "column": "9", - "line": "9", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "_CLOCK_CONFIG_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:clock_config.h@375@macro@BOARD_XTAL0_CLK_HZ", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_XTAL0_CLK_HZ", - "location": { - "column": "9", - "line": "16", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_XTAL0_CLK_HZ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:clock_config.h@449@macro@BOARD_XTAL32K_CLK_HZ", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_XTAL32K_CLK_HZ", - "location": { - "column": "9", - "line": "17", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_XTAL32K_CLK_HZ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitBootClocks", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitBootClocks(void)", - "location": { - "column": "6", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_InitBootClocks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitBootClocks", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitBootClocks(void)", - "location": { - "column": "6", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_InitBootClocks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:clock_config.h@1478@macro@BOARD_BOOTCLOCKRUN_CORE_CLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_BOOTCLOCKRUN_CORE_CLOCK", - "location": { - "column": "9", - "line": "43", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_BOOTCLOCKRUN_CORE_CLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_BootClockRUN", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_BootClockRUN(void)", - "location": { - "column": "6", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_BootClockRUN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_BootClockRUN", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_BootClockRUN(void)", - "location": { - "column": "6", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_BootClockRUN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:clock_config.h@2475@macro@BOARD_BOOTCLOCKFRO12M_CORE_CLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_BOOTCLOCKFRO12M_CORE_CLOCK", - "location": { - "column": "9", - "line": "68", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_BOOTCLOCKFRO12M_CORE_CLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_BootClockFRO12M", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_BootClockFRO12M(void)", - "location": { - "column": "6", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_BootClockFRO12M", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_BootClockFRO12M", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_BootClockFRO12M(void)", - "location": { - "column": "6", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_BootClockFRO12M", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:clock_config.h@3483@macro@BOARD_BOOTCLOCKFROHF48M_CORE_CLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_BOOTCLOCKFROHF48M_CORE_CLOCK", - "location": { - "column": "9", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_BOOTCLOCKFROHF48M_CORE_CLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_BootClockFROHF48M", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_BootClockFROHF48M(void)", - "location": { - "column": "6", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_BootClockFROHF48M", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_BootClockFROHF48M", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_BootClockFROHF48M(void)", - "location": { - "column": "6", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_BootClockFROHF48M", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:clock_config.h@4497@macro@BOARD_BOOTCLOCKFROHF96M_CORE_CLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_BOOTCLOCKFROHF96M_CORE_CLOCK", - "location": { - "column": "9", - "line": "118", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_BOOTCLOCKFROHF96M_CORE_CLOCK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_BootClockFROHF96M", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_BootClockFROHF96M(void)", - "location": { - "column": "6", - "line": "131", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_BootClockFROHF96M", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_BootClockFROHF96M", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_BootClockFROHF96M(void)", - "location": { - "column": "6", - "line": "131", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.h" - }, - "name": "BOARD_BootClockFROHF96M", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@SystemCoreClock", - "What": "Variable", - "defdec": "Dec", - "display": "SystemCoreClock", - "location": { - "column": "17", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.c" - }, - "name": "SystemCoreClock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitBootClocks", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_InitBootClocks(void)", - "location": { - "column": "6", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.c" - }, - "name": "BOARD_InitBootClocks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_BootClockRUN", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_BootClockRUN(void)", - "location": { - "column": "6", - "line": "78", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.c" - }, - "name": "BOARD_BootClockRUN", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:clock_config.c@3648@F@BOARD_BootClockRUN@pllSetup", - "What": "Variable", - "defdec": "Def", - "display": "pllSetup", - "location": { - "column": "23", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.c" - }, - "name": "pllSetup", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_BootClockFRO12M", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_BootClockFRO12M(void)", - "location": { - "column": "6", - "line": "142", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.c" - }, - "name": "BOARD_BootClockFRO12M", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_BootClockFROHF48M", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_BootClockFROHF48M(void)", - "location": { - "column": "6", - "line": "184", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.c" - }, - "name": "BOARD_BootClockFROHF48M", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_BootClockFROHF96M", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_BootClockFROHF96M(void)", - "location": { - "column": "6", - "line": "230", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\clock_config.c" - }, - "name": "BOARD_BootClockFROHF96M", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_device_registers.h@187@macro@__FSL_DEVICE_REGISTERS_H__", - "What": "MacroDef", - "defdec": "Def", - "display": "__FSL_DEVICE_REGISTERS_H__", - "location": { - "column": "9", - "line": "10", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\fsl_device_registers.h" - }, - "name": "__FSL_DEVICE_REGISTERS_H__", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_device_registers.h@421@macro@LPC51U68_SERIES", - "What": "MacroDef", - "defdec": "Def", - "display": "LPC51U68_SERIES", - "location": { - "column": "9", - "line": "19", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\fsl_device_registers.h" - }, - "name": "LPC51U68_SERIES", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:recmutex.h@1343@macro@RECURSIVE_MUTEX_TEST_H", - "What": "MacroDef", - "defdec": "Def", - "display": "RECURSIVE_MUTEX_TEST_H", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\recmutex.h" - }, - "name": "RECURSIVE_MUTEX_TEST_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vStartRecursiveMutexTasks", - "What": "Function", - "defdec": "Dec", - "display": "void vStartRecursiveMutexTasks(void)", - "location": { - "column": "6", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\recmutex.h" - }, - "name": "vStartRecursiveMutexTasks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vStartRecursiveMutexTasks", - "What": "Function", - "defdec": "Dec", - "display": "void vStartRecursiveMutexTasks(void)", - "location": { - "column": "6", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\recmutex.h" - }, - "name": "vStartRecursiveMutexTasks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xAreRecursiveMutexTasksStillRunning", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xAreRecursiveMutexTasksStillRunning(void)", - "location": { - "column": "12", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\recmutex.h" - }, - "name": "xAreRecursiveMutexTasksStillRunning", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xAreRecursiveMutexTasksStillRunning", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xAreRecursiveMutexTasksStillRunning(void)", - "location": { - "column": "12", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\recmutex.h" - }, - "name": "xAreRecursiveMutexTasksStillRunning", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:ycheck.h@1402@macro@__AEABI_PORTABILITY_INTERNAL_LEVEL", - "What": "MacroDef", - "defdec": "Def", - "display": "__AEABI_PORTABILITY_INTERNAL_LEVEL", - "location": { - "column": "11", - "line": "42", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\ycheck.h" - }, - "name": "__AEABI_PORTABILITY_INTERNAL_LEVEL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:cmsis_compiler.h@1003@macro@__CMSIS_COMPILER_H", - "What": "MacroDef", - "defdec": "Def", - "display": "__CMSIS_COMPILER_H", - "location": { - "column": "9", - "line": "26", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_compiler.h" - }, - "name": "__CMSIS_COMPILER_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:IntQueueTimer.h@1338@macro@INT_QUEUE_TIMER_H", - "What": "MacroDef", - "defdec": "Def", - "display": "INT_QUEUE_TIMER_H", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.h" - }, - "name": "INT_QUEUE_TIMER_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vInitialiseTimerForIntQueueTest", - "What": "Function", - "defdec": "Dec", - "display": "void vInitialiseTimerForIntQueueTest(void)", - "location": { - "column": "6", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.h" - }, - "name": "vInitialiseTimerForIntQueueTest", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vInitialiseTimerForIntQueueTest", - "What": "Function", - "defdec": "Dec", - "display": "void vInitialiseTimerForIntQueueTest(void)", - "location": { - "column": "6", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.h" - }, - "name": "vInitialiseTimerForIntQueueTest", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimer0Handler", - "What": "Function", - "defdec": "Dec", - "display": "long xTimer0Handler(void)", - "location": { - "column": "15", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.h" - }, - "name": "xTimer0Handler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xTimer1Handler", - "What": "Function", - "defdec": "Dec", - "display": "long xTimer1Handler(void)", - "location": { - "column": "15", - "line": "33", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\app\\IntQueueTimer.h" - }, - "name": "xTimer1Handler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_version.h@1228@macro@__CMSIS_VERSION_H", - "What": "MacroDef", - "defdec": "Def", - "display": "__CMSIS_VERSION_H", - "location": { - "column": "9", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_version.h" - }, - "name": "__CMSIS_VERSION_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_version.h@1291@macro@__CM_CMSIS_VERSION_MAIN", - "What": "MacroDef", - "defdec": "Def", - "display": "__CM_CMSIS_VERSION_MAIN", - "location": { - "column": "9", - "line": "35", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_version.h" - }, - "name": "__CM_CMSIS_VERSION_MAIN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_version.h@1411@macro@__CM_CMSIS_VERSION_SUB", - "What": "MacroDef", - "defdec": "Def", - "display": "__CM_CMSIS_VERSION_SUB", - "location": { - "column": "9", - "line": "36", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_version.h" - }, - "name": "__CM_CMSIS_VERSION_SUB", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:cmsis_version.h@1530@macro@__CM_CMSIS_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "__CM_CMSIS_VERSION", - "location": { - "column": "9", - "line": "37", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\CMSIS\\cmsis_version.h" - }, - "name": "__CM_CMSIS_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:peripherals.h@195@macro@_PERIPHERALS_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_PERIPHERALS_H_", - "location": { - "column": "9", - "line": "9", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\peripherals.h" - }, - "name": "_PERIPHERALS_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitBootPeripherals", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitBootPeripherals(void)", - "location": { - "column": "6", - "line": "17", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\peripherals.h" - }, - "name": "BOARD_InitBootPeripherals", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitBootPeripherals", - "What": "Function", - "defdec": "Dec", - "display": "void BOARD_InitBootPeripherals(void)", - "location": { - "column": "6", - "line": "17", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\peripherals.h" - }, - "name": "BOARD_InitBootPeripherals", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:countsem.h@1343@macro@COUNT_SEMAPHORE_TEST_H", - "What": "MacroDef", - "defdec": "Def", - "display": "COUNT_SEMAPHORE_TEST_H", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\countsem.h" - }, - "name": "COUNT_SEMAPHORE_TEST_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vStartCountingSemaphoreTasks", - "What": "Function", - "defdec": "Dec", - "display": "void vStartCountingSemaphoreTasks(void)", - "location": { - "column": "6", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\countsem.h" - }, - "name": "vStartCountingSemaphoreTasks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vStartCountingSemaphoreTasks", - "What": "Function", - "defdec": "Dec", - "display": "void vStartCountingSemaphoreTasks(void)", - "location": { - "column": "6", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\countsem.h" - }, - "name": "vStartCountingSemaphoreTasks", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xAreCountingSemaphoreTasksStillRunning", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xAreCountingSemaphoreTasksStillRunning(void)", - "location": { - "column": "12", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\countsem.h" - }, - "name": "xAreCountingSemaphoreTasksStillRunning", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xAreCountingSemaphoreTasksStillRunning", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xAreCountingSemaphoreTasksStillRunning(void)", - "location": { - "column": "12", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\include\\countsem.h" - }, - "name": "xAreCountingSemaphoreTasksStillRunning", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:deprecated_definitions.h@1345@macro@DEPRECATED_DEFINITIONS_H", - "What": "MacroDef", - "defdec": "Def", - "display": "DEPRECATED_DEFINITIONS_H", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\deprecated_definitions.h" - }, - "name": "DEPRECATED_DEFINITIONS_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:compiler_attributes.h@1357@macro@COMPILER_ATTRIBUTE_PLACE_IN_2ND_MEMORY_BANK", - "What": "MacroDef", - "defdec": "Def", - "display": "COMPILER_ATTRIBUTE_PLACE_IN_2ND_MEMORY_BANK", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\IAR_specific\\compiler_attributes.h" - }, - "name": "COMPILER_ATTRIBUTE_PLACE_IN_2ND_MEMORY_BANK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:generic_list.c@F@LIST_Scan", - "What": "Function", - "defdec": "Def", - "display": "list_status_t LIST_Scan(list_handle_t, list_element_handle_t)", - "location": { - "column": "22", - "line": "17", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "LIST_Scan", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:generic_list.c@620@F@LIST_Scan@element", - "What": "Variable", - "defdec": "Def", - "display": "element", - "location": { - "column": "27", - "line": "19", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "element", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@LIST_Init", - "What": "Function", - "defdec": "Def", - "display": "void LIST_Init(list_handle_t, uint32_t)", - "location": { - "column": "6", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "LIST_Init", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@LIST_GetList", - "What": "Function", - "defdec": "Def", - "display": "list_handle_t LIST_GetList(list_element_handle_t)", - "location": { - "column": "15", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "LIST_GetList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@LIST_AddTail", - "What": "Function", - "defdec": "Def", - "display": "list_status_t LIST_AddTail(list_handle_t, list_element_handle_t)", - "location": { - "column": "15", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "LIST_AddTail", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:generic_list.c@2899@F@LIST_AddTail@regPrimask", - "What": "Variable", - "defdec": "Def", - "display": "regPrimask", - "location": { - "column": "14", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "regPrimask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@LIST_AddHead", - "What": "Function", - "defdec": "Def", - "display": "list_status_t LIST_AddHead(list_handle_t, list_element_handle_t)", - "location": { - "column": "15", - "line": "146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "LIST_AddHead", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:generic_list.c@4116@F@LIST_AddHead@regPrimask", - "What": "Variable", - "defdec": "Def", - "display": "regPrimask", - "location": { - "column": "14", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "regPrimask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@LIST_RemoveHead", - "What": "Function", - "defdec": "Def", - "display": "list_element_handle_t LIST_RemoveHead(list_handle_t)", - "location": { - "column": "23", - "line": "195", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "LIST_RemoveHead", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:generic_list.c@5292@F@LIST_RemoveHead@element", - "What": "Variable", - "defdec": "Def", - "display": "element", - "location": { - "column": "27", - "line": "197", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "element", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:generic_list.c@5330@F@LIST_RemoveHead@regPrimask", - "What": "Variable", - "defdec": "Def", - "display": "regPrimask", - "location": { - "column": "14", - "line": "199", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "regPrimask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@LIST_GetHead", - "What": "Function", - "defdec": "Def", - "display": "list_element_handle_t LIST_GetHead(list_handle_t)", - "location": { - "column": "23", - "line": "239", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "LIST_GetHead", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@LIST_GetNext", - "What": "Function", - "defdec": "Def", - "display": "list_element_handle_t LIST_GetNext(list_element_handle_t)", - "location": { - "column": "23", - "line": "259", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "LIST_GetNext", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@LIST_GetPrev", - "What": "Function", - "defdec": "Def", - "display": "list_element_handle_t LIST_GetPrev(list_element_handle_t)", - "location": { - "column": "23", - "line": "279", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "LIST_GetPrev", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@LIST_RemoveElement", - "What": "Function", - "defdec": "Def", - "display": "list_status_t LIST_RemoveElement(list_element_handle_t)", - "location": { - "column": "15", - "line": "299", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "LIST_RemoveElement", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:generic_list.c@7977@F@LIST_RemoveElement@regPrimask", - "What": "Variable", - "defdec": "Def", - "display": "regPrimask", - "location": { - "column": "14", - "line": "306", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "regPrimask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@LIST_AddPrevElement", - "What": "Function", - "defdec": "Def", - "display": "list_status_t LIST_AddPrevElement(list_element_handle_t, list_element_handle_t)", - "location": { - "column": "15", - "line": "349", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "LIST_AddPrevElement", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:generic_list.c@9516@F@LIST_AddPrevElement@regPrimask", - "What": "Variable", - "defdec": "Def", - "display": "regPrimask", - "location": { - "column": "14", - "line": "355", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "regPrimask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@LIST_GetSize", - "What": "Function", - "defdec": "Def", - "display": "uint32_t LIST_GetSize(list_handle_t)", - "location": { - "column": "10", - "line": "401", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "LIST_GetSize", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@LIST_GetAvailableSize", - "What": "Function", - "defdec": "Def", - "display": "uint32_t LIST_GetAvailableSize(list_handle_t)", - "location": { - "column": "10", - "line": "420", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.c" - }, - "name": "LIST_GetAvailableSize", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:generic_list.h@148@macro@_GENERIC_LIST_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_GENERIC_LIST_H_", - "location": { - "column": "9", - "line": "10", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "_GENERIC_LIST_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_list_status", - "What": "Enum", - "defdec": "Def", - "display": "_list_status", - "fields": [ - { - "ID": "c:@E@_list_status@kLIST_Ok", - "What": "Enumerator", - "defdec": "Def", - "display": "kLIST_Ok", - "location": { - "column": "5", - "line": "37", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "kLIST_Ok", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_list_status@kLIST_DuplicateError", - "What": "Enumerator", - "defdec": "Def", - "display": "kLIST_DuplicateError", - "location": { - "column": "5", - "line": "38", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "kLIST_DuplicateError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_list_status@kLIST_Full", - "What": "Enumerator", - "defdec": "Def", - "display": "kLIST_Full", - "location": { - "column": "5", - "line": "39", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "kLIST_Full", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_list_status@kLIST_Empty", - "What": "Enumerator", - "defdec": "Def", - "display": "kLIST_Empty", - "location": { - "column": "5", - "line": "40", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "kLIST_Empty", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_list_status@kLIST_OrphanElement", - "What": "Enumerator", - "defdec": "Def", - "display": "kLIST_OrphanElement", - "location": { - "column": "5", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "kLIST_OrphanElement", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "35", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "_list_status", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:generic_list.h@T@list_status_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _list_status", - "location": { - "column": "3", - "line": "42", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "list_status_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@list_tag", - "What": "Struct", - "defdec": "Def", - "display": "list_tag", - "location": { - "column": "16", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "members": [ - { - "ID": "c:@S@list_element_tag", - "What": "Struct", - "defdec": "Dec", - "display": "list_element_tag", - "location": { - "column": "12", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "members": [], - "name": "list_element_tag", - "origin": "user_include", - "scope": "list_tag" - }, - { - "ID": "c:@S@list_tag@FI@head", - "What": "FieldDecl", - "defdec": "Def", - "display": "head", - "location": { - "column": "30", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "head", - "origin": "user_include", - "scope": "list_tag" - }, - { - "ID": "c:@S@list_tag@FI@tail", - "What": "FieldDecl", - "defdec": "Def", - "display": "tail", - "location": { - "column": "30", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "tail", - "origin": "user_include", - "scope": "list_tag" - }, - { - "ID": "c:@S@list_tag@FI@size", - "What": "FieldDecl", - "defdec": "Def", - "display": "size", - "location": { - "column": "14", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "size", - "origin": "user_include", - "scope": "list_tag" - }, - { - "ID": "c:@S@list_tag@FI@max", - "What": "FieldDecl", - "defdec": "Def", - "display": "max", - "location": { - "column": "14", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "max", - "origin": "user_include", - "scope": "list_tag" - } - ], - "name": "list_tag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:generic_list.h@T@list_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct list_tag", - "location": { - "column": "3", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "list_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:generic_list.h@T@list_handle_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct list_tag *", - "location": { - "column": "12", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "list_handle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@list_element_tag", - "What": "Struct", - "defdec": "Def", - "display": "list_element_tag", - "location": { - "column": "16", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "members": [ - { - "ID": "c:@S@list_element_tag@FI@next", - "What": "FieldDecl", - "defdec": "Def", - "display": "next", - "location": { - "column": "30", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "next", - "origin": "user_include", - "scope": "list_element_tag" - }, - { - "ID": "c:@S@list_element_tag@FI@prev", - "What": "FieldDecl", - "defdec": "Def", - "display": "prev", - "location": { - "column": "30", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "prev", - "origin": "user_include", - "scope": "list_element_tag" - }, - { - "ID": "c:@S@list_element_tag@FI@list", - "What": "FieldDecl", - "defdec": "Def", - "display": "list", - "location": { - "column": "22", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "list", - "origin": "user_include", - "scope": "list_element_tag" - } - ], - "name": "list_element_tag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:generic_list.h@T@list_element_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct list_element_tag", - "location": { - "column": "3", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "list_element_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:generic_list.h@T@list_element_handle_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct list_element_tag *", - "location": { - "column": "20", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "list_element_handle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@LIST_Init", - "What": "Function", - "defdec": "Dec", - "display": "void LIST_Init(list_handle_t, uint32_t)", - "location": { - "column": "6", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "LIST_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@LIST_GetList", - "What": "Function", - "defdec": "Dec", - "display": "list_handle_t LIST_GetList(list_element_handle_t)", - "location": { - "column": "15", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "LIST_GetList", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@LIST_AddHead", - "What": "Function", - "defdec": "Dec", - "display": "list_status_t LIST_AddHead(list_handle_t, list_element_handle_t)", - "location": { - "column": "15", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "LIST_AddHead", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@LIST_AddTail", - "What": "Function", - "defdec": "Dec", - "display": "list_status_t LIST_AddTail(list_handle_t, list_element_handle_t)", - "location": { - "column": "15", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "LIST_AddTail", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@LIST_RemoveHead", - "What": "Function", - "defdec": "Dec", - "display": "list_element_handle_t LIST_RemoveHead(list_handle_t)", - "location": { - "column": "23", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "LIST_RemoveHead", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@LIST_GetHead", - "What": "Function", - "defdec": "Dec", - "display": "list_element_handle_t LIST_GetHead(list_handle_t)", - "location": { - "column": "23", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "LIST_GetHead", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@LIST_GetNext", - "What": "Function", - "defdec": "Dec", - "display": "list_element_handle_t LIST_GetNext(list_element_handle_t)", - "location": { - "column": "23", - "line": "135", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "LIST_GetNext", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@LIST_GetPrev", - "What": "Function", - "defdec": "Dec", - "display": "list_element_handle_t LIST_GetPrev(list_element_handle_t)", - "location": { - "column": "23", - "line": "144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "LIST_GetPrev", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@LIST_RemoveElement", - "What": "Function", - "defdec": "Dec", - "display": "list_status_t LIST_RemoveElement(list_element_handle_t)", - "location": { - "column": "15", - "line": "154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "LIST_RemoveElement", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@LIST_AddPrevElement", - "What": "Function", - "defdec": "Dec", - "display": "list_status_t LIST_AddPrevElement(list_element_handle_t, list_element_handle_t)", - "location": { - "column": "15", - "line": "165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "LIST_AddPrevElement", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@LIST_GetSize", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t LIST_GetSize(list_handle_t)", - "location": { - "column": "10", - "line": "174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "LIST_GetSize", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@LIST_GetAvailableSize", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t LIST_GetAvailableSize(list_handle_t)", - "location": { - "column": "10", - "line": "183", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\lists\\generic_list.h" - }, - "name": "LIST_GetAvailableSize", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitBootPins", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_InitBootPins(void)", - "location": { - "column": "6", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "BOARD_InitBootPins", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitPins", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_InitPins(void)", - "location": { - "column": "6", - "line": "113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "BOARD_InitPins", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@9428@macro@PIO023_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO023_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO023_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@9526@macro@PIO023_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO023_FUNC_ALT1", - "location": { - "column": "9", - "line": "118", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO023_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@9630@macro@PIO023_I2CSLEW_I2C_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO023_I2CSLEW_I2C_MODE", - "location": { - "column": "9", - "line": "119", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO023_I2CSLEW_I2C_MODE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@9727@macro@PIO024_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO024_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "120", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO024_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@9825@macro@PIO024_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO024_FUNC_ALT1", - "location": { - "column": "9", - "line": "121", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO024_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@9929@macro@PIO024_I2CSLEW_I2C_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO024_I2CSLEW_I2C_MODE", - "location": { - "column": "9", - "line": "122", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO024_I2CSLEW_I2C_MODE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitLink2MCUPins", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_InitLink2MCUPins(void)", - "location": { - "column": "6", - "line": "140", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "BOARD_InitLink2MCUPins", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@12114@macro@PIO024_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO024_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO024_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@12212@macro@PIO024_FUNC_ALT0", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO024_FUNC_ALT0", - "location": { - "column": "9", - "line": "157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO024_FUNC_ALT0", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@12316@macro@PIO031_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO031_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "158", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO031_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@12414@macro@PIO031_FUNC_ALT0", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO031_FUNC_ALT0", - "location": { - "column": "9", - "line": "159", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO031_FUNC_ALT0", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@12518@macro@PIO04_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO04_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "160", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO04_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@12616@macro@PIO04_FUNC_ALT0", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO04_FUNC_ALT0", - "location": { - "column": "9", - "line": "161", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO04_FUNC_ALT0", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitBUTTONsPins", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_InitBUTTONsPins(void)", - "location": { - "column": "6", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "BOARD_InitBUTTONsPins", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@15172@macro@PIO029_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO029_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "201", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO029_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@15270@macro@PIO029_FUNC_ALT0", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO029_FUNC_ALT0", - "location": { - "column": "9", - "line": "202", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO029_FUNC_ALT0", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@15374@macro@PIO110_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO110_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "203", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO110_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@15472@macro@PIO110_FUNC_ALT0", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO110_FUNC_ALT0", - "location": { - "column": "9", - "line": "204", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO110_FUNC_ALT0", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@15576@macro@PIO19_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO19_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "205", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO19_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@15674@macro@PIO19_FUNC_ALT0", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO19_FUNC_ALT0", - "location": { - "column": "9", - "line": "206", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO19_FUNC_ALT0", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitLEDsPins", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_InitLEDsPins(void)", - "location": { - "column": "6", - "line": "225", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "BOARD_InitLEDsPins", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@18230@macro@PIO025_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO025_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "246", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO025_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@18328@macro@PIO025_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO025_FUNC_ALT1", - "location": { - "column": "9", - "line": "247", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO025_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@18432@macro@PIO025_I2CSLEW_I2C_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO025_I2CSLEW_I2C_MODE", - "location": { - "column": "9", - "line": "248", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO025_I2CSLEW_I2C_MODE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@18529@macro@PIO026_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO026_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "249", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO026_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@18627@macro@PIO026_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO026_FUNC_ALT1", - "location": { - "column": "9", - "line": "250", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO026_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@18731@macro@PIO026_I2CSLEW_I2C_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO026_I2CSLEW_I2C_MODE", - "location": { - "column": "9", - "line": "251", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO026_I2CSLEW_I2C_MODE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitSecureMCUPins", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_InitSecureMCUPins(void)", - "location": { - "column": "6", - "line": "269", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "BOARD_InitSecureMCUPins", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@21014@macro@PIO018_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO018_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "287", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO018_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@21112@macro@PIO018_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO018_FUNC_ALT1", - "location": { - "column": "9", - "line": "288", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO018_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@21216@macro@PIO019_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO019_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "289", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO019_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@21314@macro@PIO019_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO019_FUNC_ALT1", - "location": { - "column": "9", - "line": "290", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO019_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@21418@macro@PIO020_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO020_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "291", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO020_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@21516@macro@PIO020_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO020_FUNC_ALT1", - "location": { - "column": "9", - "line": "292", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO020_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@21620@macro@PIO12_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO12_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "293", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO12_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@21718@macro@PIO12_FUNC_ALT4", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO12_FUNC_ALT4", - "location": { - "column": "9", - "line": "294", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO12_FUNC_ALT4", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitSPI_FLASHPins", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_InitSPI_FLASHPins(void)", - "location": { - "column": "6", - "line": "314", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "BOARD_InitSPI_FLASHPins", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@24751@macro@PIO011_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO011_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "340", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO011_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@24849@macro@PIO011_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO011_FUNC_ALT1", - "location": { - "column": "9", - "line": "341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO011_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@24953@macro@PIO012_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO012_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "342", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO012_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@25051@macro@PIO012_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO012_FUNC_ALT1", - "location": { - "column": "9", - "line": "343", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO012_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@25155@macro@PIO013_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO013_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "344", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO013_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@25253@macro@PIO013_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO013_FUNC_ALT1", - "location": { - "column": "9", - "line": "345", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO013_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@25357@macro@PIO014_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO014_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "346", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO014_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@25455@macro@PIO014_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO014_FUNC_ALT1", - "location": { - "column": "9", - "line": "347", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO014_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@25559@macro@PIO022_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO022_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "348", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO022_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@25657@macro@PIO022_FUNC_ALT0", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO022_FUNC_ALT0", - "location": { - "column": "9", - "line": "349", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO022_FUNC_ALT0", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@25761@macro@PIO023_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO023_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "350", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO023_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@25859@macro@PIO023_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO023_FUNC_ALT1", - "location": { - "column": "9", - "line": "351", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO023_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@25963@macro@PIO023_I2CSLEW_I2C_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO023_I2CSLEW_I2C_MODE", - "location": { - "column": "9", - "line": "352", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO023_I2CSLEW_I2C_MODE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@26060@macro@PIO024_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO024_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "353", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO024_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@26158@macro@PIO024_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO024_FUNC_ALT1", - "location": { - "column": "9", - "line": "354", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO024_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@26262@macro@PIO024_I2CSLEW_I2C_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO024_I2CSLEW_I2C_MODE", - "location": { - "column": "9", - "line": "355", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO024_I2CSLEW_I2C_MODE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@26359@macro@PIO04_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO04_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "356", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO04_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@26457@macro@PIO04_FUNC_ALT0", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO04_FUNC_ALT0", - "location": { - "column": "9", - "line": "357", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO04_FUNC_ALT0", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitPMod_SPI_I2C_BRIDGEPins", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_InitPMod_SPI_I2C_BRIDGEPins(void)", - "location": { - "column": "6", - "line": "381", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "BOARD_InitPMod_SPI_I2C_BRIDGEPins", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@32036@macro@PIO16_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO16_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "429", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO16_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@32134@macro@PIO16_FUNC_ALT7", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO16_FUNC_ALT7", - "location": { - "column": "9", - "line": "430", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO16_FUNC_ALT7", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitUSBPins", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_InitUSBPins(void)", - "location": { - "column": "6", - "line": "449", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "BOARD_InitUSBPins", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@33707@macro@PIO00_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO00_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "460", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO00_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@33805@macro@PIO00_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO00_FUNC_ALT1", - "location": { - "column": "9", - "line": "461", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO00_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@33909@macro@PIO01_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO01_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "462", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO01_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@34007@macro@PIO01_FUNC_ALT1", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO01_FUNC_ALT1", - "location": { - "column": "9", - "line": "463", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO01_FUNC_ALT1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitDEBUG_UARTPins", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_InitDEBUG_UARTPins(void)", - "location": { - "column": "6", - "line": "481", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "BOARD_InitDEBUG_UARTPins", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@36089@macro@PIO016_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO016_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "497", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO016_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@36187@macro@PIO016_FUNC_ALT5", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO016_FUNC_ALT5", - "location": { - "column": "9", - "line": "498", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO016_FUNC_ALT5", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@36291@macro@PIO017_DIGIMODE_DIGITAL", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO017_DIGIMODE_DIGITAL", - "location": { - "column": "9", - "line": "499", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO017_DIGIMODE_DIGITAL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:pin_mux.c@36389@macro@PIO017_FUNC_ALT5", - "What": "MacroDef", - "defdec": "Def", - "display": "PIO017_FUNC_ALT5", - "location": { - "column": "9", - "line": "500", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "PIO017_FUNC_ALT5", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitSWD_DEBUGPins", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_InitSWD_DEBUGPins(void)", - "location": { - "column": "6", - "line": "518", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\pin_mux.c" - }, - "name": "BOARD_InitSWD_DEBUGPins", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@1288@macro@SERIAL_EVENT_DATA_RECEIVED", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_EVENT_DATA_RECEIVED", - "location": { - "column": "9", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SERIAL_EVENT_DATA_RECEIVED", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@1334@macro@SERIAL_EVENT_DATA_SENT", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_EVENT_DATA_SENT", - "location": { - "column": "9", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SERIAL_EVENT_DATA_SENT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@1378@macro@SERIAL_MANAGER_WRITE_TAG", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_MANAGER_WRITE_TAG", - "location": { - "column": "9", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SERIAL_MANAGER_WRITE_TAG", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@1424@macro@SERIAL_MANAGER_READ_TAG", - "What": "MacroDef", - "defdec": "Def", - "display": "SERIAL_MANAGER_READ_TAG", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SERIAL_MANAGER_READ_TAG", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@_serial_manager_send_handle", - "What": "Struct", - "defdec": "Def", - "display": "_serial_manager_send_handle", - "location": { - "column": "16", - "line": "74", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "members": [ - { - "ID": "c:@S@_serial_manager_handle", - "What": "Struct", - "defdec": "Dec", - "display": "_serial_manager_handle", - "location": { - "column": "12", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "members": [], - "name": "_serial_manager_handle", - "origin": "project_file", - "scope": "_serial_manager_send_handle" - }, - { - "ID": "c:@S@_serial_manager_send_handle@FI@serialManagerHandle", - "What": "FieldDecl", - "defdec": "Def", - "display": "serialManagerHandle", - "location": { - "column": "36", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "serialManagerHandle", - "origin": "project_file", - "scope": "_serial_manager_send_handle" - } - ], - "name": "_serial_manager_send_handle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@T@serial_manager_write_handle_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _serial_manager_send_handle", - "location": { - "column": "3", - "line": "86", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "serial_manager_write_handle_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@T@serial_manager_read_handle_t", - "What": "Typedef", - "defdec": "Def", - "display": "serial_manager_write_handle_t", - "location": { - "column": "39", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "serial_manager_read_handle_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@_serial_manager_handle", - "What": "Struct", - "defdec": "Def", - "display": "_serial_manager_handle", - "location": { - "column": "16", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "members": [ - { - "ID": "c:@S@_serial_manager_handle@FI@openedReadHandleHead", - "What": "FieldDecl", - "defdec": "Def", - "display": "openedReadHandleHead", - "location": { - "column": "35", - "line": "111", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "openedReadHandleHead", - "origin": "project_file", - "scope": "_serial_manager_handle" - }, - { - "ID": "c:@S@_serial_manager_handle@FI@openedWriteHandleCount", - "What": "FieldDecl", - "defdec": "Def", - "display": "openedWriteHandleCount", - "location": { - "column": "14", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "openedWriteHandleCount", - "origin": "project_file", - "scope": "_serial_manager_handle" - }, - { - "ID": "c:@S@_serial_manager_handle@Ua", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "5", - "line": "113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "members": [ - { - "ID": "c:@S@_serial_manager_handle@Ua@FI@lowLevelhandleBuffer", - "What": "FieldDecl", - "defdec": "Def", - "display": "lowLevelhandleBuffer", - "location": { - "column": "17", - "line": "115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "lowLevelhandleBuffer", - "origin": "project_file", - "scope": "_serial_manager_handle::_anonymous_serial_manager_c_113_5" - }, - { - "ID": "c:@S@_serial_manager_handle@Ua@FI@uartHandleBuffer", - "What": "FieldDecl", - "defdec": "Def", - "display": "uartHandleBuffer", - "location": { - "column": "17", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "uartHandleBuffer", - "origin": "project_file", - "scope": "_serial_manager_handle::_anonymous_serial_manager_c_113_5" - } - ], - "name": "", - "origin": "project_file", - "scope": "_serial_manager_handle" - }, - { - "ID": "c:@S@_serial_manager_handle@FI@type", - "What": "FieldDecl", - "defdec": "Def", - "display": "type", - "location": { - "column": "24", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "type", - "origin": "project_file", - "scope": "_serial_manager_handle" - } - ], - "name": "_serial_manager_handle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@T@serial_manager_handle_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _serial_manager_handle", - "location": { - "column": "3", - "line": "149", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "serial_manager_handle_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@F@SerialManager_StartWriting", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_StartWriting(serial_manager_handle_t *, serial_manager_write_handle_t *, uint8_t *, uint32_t)", - "location": { - "column": "32", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_StartWriting", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@9866@F@SerialManager_StartWriting@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "29", - "line": "272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@F@SerialManager_StartReading", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_StartReading(serial_manager_handle_t *, serial_manager_read_handle_t *, uint8_t *, uint32_t)", - "location": { - "column": "32", - "line": "306", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_StartReading", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@11552@F@SerialManager_StartReading@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "29", - "line": "311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@F@SerialManager_Write", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_Write(serial_write_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "32", - "line": "769", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_Write", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@28762@F@SerialManager_Write@serialWriteHandle", - "What": "Variable", - "defdec": "Def", - "display": "serialWriteHandle", - "location": { - "column": "36", - "line": "771", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "serialWriteHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@28817@F@SerialManager_Write@handle", - "What": "Variable", - "defdec": "Def", - "display": "handle", - "location": { - "column": "30", - "line": "772", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "handle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@F@SerialManager_Read", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_Read(serial_read_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "32", - "line": "786", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_Read", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@29297@F@SerialManager_Read@serialReadHandle", - "What": "Variable", - "defdec": "Def", - "display": "serialReadHandle", - "location": { - "column": "35", - "line": "788", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "serialReadHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@29350@F@SerialManager_Read@handle", - "What": "Variable", - "defdec": "Def", - "display": "handle", - "location": { - "column": "30", - "line": "789", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "handle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SerialManager_Init", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_Init(serial_handle_t, serial_manager_config_t *)", - "location": { - "column": "25", - "line": "804", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_Init", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@29820@F@SerialManager_Init@handle", - "What": "Variable", - "defdec": "Def", - "display": "handle", - "location": { - "column": "30", - "line": "806", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "handle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@29858@F@SerialManager_Init@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "29", - "line": "807", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SerialManager_Deinit", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_Deinit(serial_handle_t)", - "location": { - "column": "25", - "line": "925", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_Deinit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@34988@F@SerialManager_Deinit@handle", - "What": "Variable", - "defdec": "Def", - "display": "handle", - "location": { - "column": "30", - "line": "927", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "handle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SerialManager_OpenWriteHandle", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_OpenWriteHandle(serial_handle_t, serial_write_handle_t)", - "location": { - "column": "25", - "line": "982", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_OpenWriteHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@36917@F@SerialManager_OpenWriteHandle@handle", - "What": "Variable", - "defdec": "Def", - "display": "handle", - "location": { - "column": "30", - "line": "984", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "handle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@36955@F@SerialManager_OpenWriteHandle@serialWriteHandle", - "What": "Variable", - "defdec": "Def", - "display": "serialWriteHandle", - "location": { - "column": "36", - "line": "985", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "serialWriteHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SerialManager_CloseWriteHandle", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_CloseWriteHandle(serial_write_handle_t)", - "location": { - "column": "25", - "line": "1006", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_CloseWriteHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@37760@F@SerialManager_CloseWriteHandle@handle", - "What": "Variable", - "defdec": "Def", - "display": "handle", - "location": { - "column": "30", - "line": "1008", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "handle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@37798@F@SerialManager_CloseWriteHandle@serialWriteHandle", - "What": "Variable", - "defdec": "Def", - "display": "serialWriteHandle", - "location": { - "column": "36", - "line": "1009", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "serialWriteHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SerialManager_OpenReadHandle", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_OpenReadHandle(serial_handle_t, serial_read_handle_t)", - "location": { - "column": "25", - "line": "1031", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_OpenReadHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@38677@F@SerialManager_OpenReadHandle@handle", - "What": "Variable", - "defdec": "Def", - "display": "handle", - "location": { - "column": "30", - "line": "1033", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "handle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@38715@F@SerialManager_OpenReadHandle@serialReadHandle", - "What": "Variable", - "defdec": "Def", - "display": "serialReadHandle", - "location": { - "column": "35", - "line": "1034", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "serialReadHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SerialManager_CloseReadHandle", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_CloseReadHandle(serial_read_handle_t)", - "location": { - "column": "25", - "line": "1059", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_CloseReadHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@39623@F@SerialManager_CloseReadHandle@handle", - "What": "Variable", - "defdec": "Def", - "display": "handle", - "location": { - "column": "30", - "line": "1061", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "handle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_manager.c@39661@F@SerialManager_CloseReadHandle@serialReadHandle", - "What": "Variable", - "defdec": "Def", - "display": "serialReadHandle", - "location": { - "column": "35", - "line": "1062", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "serialReadHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SerialManager_WriteBlocking", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_WriteBlocking(serial_write_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "25", - "line": "1084", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_WriteBlocking", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SerialManager_ReadBlocking", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_ReadBlocking(serial_read_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "25", - "line": "1093", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_ReadBlocking", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SerialManager_EnterLowpower", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_EnterLowpower(serial_handle_t)", - "location": { - "column": "25", - "line": "1287", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_EnterLowpower", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SerialManager_ExitLowpower", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t SerialManager_ExitLowpower(serial_handle_t)", - "location": { - "column": "25", - "line": "1294", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_manager.c" - }, - "name": "SerialManager_ExitLowpower", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_port_internal.h@153@macro@__SERIAL_PORT_INTERNAL_H__", - "What": "MacroDef", - "defdec": "Def", - "display": "__SERIAL_PORT_INTERNAL_H__", - "location": { - "column": "9", - "line": "10", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_internal.h" - }, - "name": "__SERIAL_PORT_INTERNAL_H__", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@Serial_UartInit", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t Serial_UartInit(serial_handle_t, void *)", - "location": { - "column": "25", - "line": "25", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_internal.h" - }, - "name": "Serial_UartInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@Serial_UartInit", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t Serial_UartInit(serial_handle_t, void *)", - "location": { - "column": "25", - "line": "25", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_internal.h" - }, - "name": "Serial_UartInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@Serial_UartDeinit", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t Serial_UartDeinit(serial_handle_t)", - "location": { - "column": "25", - "line": "26", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_internal.h" - }, - "name": "Serial_UartDeinit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@Serial_UartDeinit", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t Serial_UartDeinit(serial_handle_t)", - "location": { - "column": "25", - "line": "26", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_internal.h" - }, - "name": "Serial_UartDeinit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@Serial_UartWrite", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t Serial_UartWrite(serial_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "25", - "line": "27", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_internal.h" - }, - "name": "Serial_UartWrite", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@Serial_UartWrite", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t Serial_UartWrite(serial_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "25", - "line": "27", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_internal.h" - }, - "name": "Serial_UartWrite", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@Serial_UartRead", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t Serial_UartRead(serial_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "25", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_internal.h" - }, - "name": "Serial_UartRead", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@Serial_UartRead", - "What": "Function", - "defdec": "Dec", - "display": "serial_manager_status_t Serial_UartRead(serial_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "25", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_internal.h" - }, - "name": "Serial_UartRead", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@BOARD_InitBootPeripherals", - "What": "Function", - "defdec": "Def", - "display": "void BOARD_InitBootPeripherals(void)", - "location": { - "column": "6", - "line": "21", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\board\\boards\\peripherals.c" - }, - "name": "BOARD_InitBootPeripherals", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@_serial_uart_state", - "What": "Struct", - "defdec": "Def", - "display": "_serial_uart_state", - "location": { - "column": "16", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.c" - }, - "members": [ - { - "ID": "c:@S@_serial_uart_state@FI@usartHandleBuffer", - "What": "FieldDecl", - "defdec": "Def", - "display": "usartHandleBuffer", - "location": { - "column": "13", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.c" - }, - "name": "usartHandleBuffer", - "origin": "project_file", - "scope": "_serial_uart_state" - } - ], - "name": "_serial_uart_state", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_port_uart.c@T@serial_uart_state_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _serial_uart_state", - "location": { - "column": "3", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.c" - }, - "name": "serial_uart_state_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@Serial_UartInit", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t Serial_UartInit(serial_handle_t, void *)", - "location": { - "column": "25", - "line": "128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.c" - }, - "name": "Serial_UartInit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_port_uart.c@4308@F@Serial_UartInit@serialUartHandle", - "What": "Variable", - "defdec": "Def", - "display": "serialUartHandle", - "location": { - "column": "26", - "line": "130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.c" - }, - "name": "serialUartHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_port_uart.c@4352@F@Serial_UartInit@uartConfig", - "What": "Variable", - "defdec": "Def", - "display": "uartConfig", - "location": { - "column": "32", - "line": "131", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.c" - }, - "name": "uartConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_port_uart.c@4396@F@Serial_UartInit@config", - "What": "Variable", - "defdec": "Def", - "display": "config", - "location": { - "column": "23", - "line": "132", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.c" - }, - "name": "config", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@Serial_UartDeinit", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t Serial_UartDeinit(serial_handle_t)", - "location": { - "column": "25", - "line": "196", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.c" - }, - "name": "Serial_UartDeinit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_port_uart.c@7161@F@Serial_UartDeinit@serialUartHandle", - "What": "Variable", - "defdec": "Def", - "display": "serialUartHandle", - "location": { - "column": "26", - "line": "198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.c" - }, - "name": "serialUartHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@Serial_UartWrite", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t Serial_UartWrite(serial_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "25", - "line": "263", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.c" - }, - "name": "Serial_UartWrite", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_port_uart.c@9442@F@Serial_UartWrite@serialUartHandle", - "What": "Variable", - "defdec": "Def", - "display": "serialUartHandle", - "location": { - "column": "26", - "line": "265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.c" - }, - "name": "serialUartHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@Serial_UartRead", - "What": "Function", - "defdec": "Def", - "display": "serial_manager_status_t Serial_UartRead(serial_handle_t, uint8_t *, uint32_t)", - "location": { - "column": "25", - "line": "277", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.c" - }, - "name": "Serial_UartRead", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:serial_port_uart.c@9930@F@Serial_UartRead@serialUartHandle", - "What": "Variable", - "defdec": "Def", - "display": "serialUartHandle", - "location": { - "column": "26", - "line": "279", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\serial_manager\\serial_port_uart.c" - }, - "name": "serialUartHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:uart.h@149@macro@__HAL_UART_ADAPTER_H__", - "What": "MacroDef", - "defdec": "Def", - "display": "__HAL_UART_ADAPTER_H__", - "location": { - "column": "9", - "line": "10", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "__HAL_UART_ADAPTER_H__", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart.h@707@macro@UART_ADAPTER_NON_BLOCKING_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "UART_ADAPTER_NON_BLOCKING_MODE", - "location": { - "column": "9", - "line": "30", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "UART_ADAPTER_NON_BLOCKING_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart.h@759@macro@UART_ADAPTER_NON_BLOCKING_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "UART_ADAPTER_NON_BLOCKING_MODE", - "location": { - "column": "9", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "UART_ADAPTER_NON_BLOCKING_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart.h@1337@macro@HAL_UART_ISR_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_UART_ISR_PRIORITY", - "location": { - "column": "9", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "HAL_UART_ISR_PRIORITY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart.h@1522@macro@HAL_UART_HANDLE_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_UART_HANDLE_SIZE", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "HAL_UART_HANDLE_SIZE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart.h@1659@macro@HAL_UART_TRANSFER_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "HAL_UART_TRANSFER_MODE", - "location": { - "column": "9", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "HAL_UART_TRANSFER_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart.h@T@hal_uart_handle_t", - "What": "Typedef", - "defdec": "Def", - "display": "void *", - "location": { - "column": "15", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "hal_uart_handle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_hal_uart_status", - "What": "Enum", - "defdec": "Def", - "display": "_hal_uart_status", - "fields": [ - { - "ID": "c:@E@_hal_uart_status@kStatus_HAL_UartSuccess", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_HAL_UartSuccess", - "location": { - "column": "5", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "kStatus_HAL_UartSuccess", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_hal_uart_status@kStatus_HAL_UartTxBusy", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_HAL_UartTxBusy", - "location": { - "column": "5", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "kStatus_HAL_UartTxBusy", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_hal_uart_status@kStatus_HAL_UartRxBusy", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_HAL_UartRxBusy", - "location": { - "column": "5", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "kStatus_HAL_UartRxBusy", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_hal_uart_status@kStatus_HAL_UartTxIdle", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_HAL_UartTxIdle", - "location": { - "column": "5", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "kStatus_HAL_UartTxIdle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_hal_uart_status@kStatus_HAL_UartRxIdle", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_HAL_UartRxIdle", - "location": { - "column": "5", - "line": "68", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "kStatus_HAL_UartRxIdle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_hal_uart_status@kStatus_HAL_UartBaudrateNotSupport", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_HAL_UartBaudrateNotSupport", - "location": { - "column": "5", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "kStatus_HAL_UartBaudrateNotSupport", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_hal_uart_status@kStatus_HAL_UartProtocolError", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_HAL_UartProtocolError", - "location": { - "column": "5", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "kStatus_HAL_UartProtocolError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_hal_uart_status@kStatus_HAL_UartError", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_HAL_UartError", - "location": { - "column": "5", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "kStatus_HAL_UartError", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "62", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "_hal_uart_status", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart.h@T@hal_uart_status_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _hal_uart_status", - "location": { - "column": "3", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "hal_uart_status_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_hal_uart_parity_mode", - "What": "Enum", - "defdec": "Def", - "display": "_hal_uart_parity_mode", - "fields": [ - { - "ID": "c:@E@_hal_uart_parity_mode@kHAL_UartParityDisabled", - "What": "Enumerator", - "defdec": "Def", - "display": "kHAL_UartParityDisabled", - "location": { - "column": "5", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "kHAL_UartParityDisabled", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_hal_uart_parity_mode@kHAL_UartParityEven", - "What": "Enumerator", - "defdec": "Def", - "display": "kHAL_UartParityEven", - "location": { - "column": "5", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "kHAL_UartParityEven", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_hal_uart_parity_mode@kHAL_UartParityOdd", - "What": "Enumerator", - "defdec": "Def", - "display": "kHAL_UartParityOdd", - "location": { - "column": "5", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "kHAL_UartParityOdd", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "_hal_uart_parity_mode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart.h@T@hal_uart_parity_mode_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _hal_uart_parity_mode", - "location": { - "column": "3", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "hal_uart_parity_mode_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_hal_uart_stop_bit_count", - "What": "Enum", - "defdec": "Def", - "display": "_hal_uart_stop_bit_count", - "fields": [ - { - "ID": "c:@E@_hal_uart_stop_bit_count@kHAL_UartOneStopBit", - "What": "Enumerator", - "defdec": "Def", - "display": "kHAL_UartOneStopBit", - "location": { - "column": "5", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "kHAL_UartOneStopBit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_hal_uart_stop_bit_count@kHAL_UartTwoStopBit", - "What": "Enumerator", - "defdec": "Def", - "display": "kHAL_UartTwoStopBit", - "location": { - "column": "5", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "kHAL_UartTwoStopBit", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "_hal_uart_stop_bit_count", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart.h@T@hal_uart_stop_bit_count_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _hal_uart_stop_bit_count", - "location": { - "column": "3", - "line": "91", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "hal_uart_stop_bit_count_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_hal_uart_config", - "What": "Struct", - "defdec": "Def", - "display": "_hal_uart_config", - "location": { - "column": "16", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "members": [ - { - "ID": "c:@S@_hal_uart_config@FI@srcClock_Hz", - "What": "FieldDecl", - "defdec": "Def", - "display": "srcClock_Hz", - "location": { - "column": "14", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "srcClock_Hz", - "origin": "user_include", - "scope": "_hal_uart_config" - }, - { - "ID": "c:@S@_hal_uart_config@FI@baudRate_Bps", - "What": "FieldDecl", - "defdec": "Def", - "display": "baudRate_Bps", - "location": { - "column": "14", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "baudRate_Bps", - "origin": "user_include", - "scope": "_hal_uart_config" - }, - { - "ID": "c:@S@_hal_uart_config@FI@parityMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "parityMode", - "location": { - "column": "28", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "parityMode", - "origin": "user_include", - "scope": "_hal_uart_config" - }, - { - "ID": "c:@S@_hal_uart_config@FI@stopBitCount", - "What": "FieldDecl", - "defdec": "Def", - "display": "stopBitCount", - "location": { - "column": "31", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "stopBitCount", - "origin": "user_include", - "scope": "_hal_uart_config" - }, - { - "ID": "c:@S@_hal_uart_config@FI@enableRx", - "What": "FieldDecl", - "defdec": "Def", - "display": "enableRx", - "location": { - "column": "13", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "enableRx", - "origin": "user_include", - "scope": "_hal_uart_config" - }, - { - "ID": "c:@S@_hal_uart_config@FI@enableTx", - "What": "FieldDecl", - "defdec": "Def", - "display": "enableTx", - "location": { - "column": "13", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "enableTx", - "origin": "user_include", - "scope": "_hal_uart_config" - }, - { - "ID": "c:@S@_hal_uart_config@FI@instance", - "What": "FieldDecl", - "defdec": "Def", - "display": "instance", - "location": { - "column": "13", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "instance", - "origin": "user_include", - "scope": "_hal_uart_config" - } - ], - "name": "_hal_uart_config", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart.h@T@hal_uart_config_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _hal_uart_config", - "location": { - "column": "3", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "hal_uart_config_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart.h@T@hal_uart_transfer_callback_t", - "What": "Typedef", - "defdec": "Def", - "display": "void (*)(hal_uart_handle_t, hal_uart_status_t, void *)", - "location": { - "column": "16", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "hal_uart_transfer_callback_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_hal_uart_transfer", - "What": "Struct", - "defdec": "Def", - "display": "_hal_uart_transfer", - "location": { - "column": "16", - "line": "111", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "members": [ - { - "ID": "c:@S@_hal_uart_transfer@FI@data", - "What": "FieldDecl", - "defdec": "Def", - "display": "data", - "location": { - "column": "14", - "line": "113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "data", - "origin": "user_include", - "scope": "_hal_uart_transfer" - }, - { - "ID": "c:@S@_hal_uart_transfer@FI@dataSize", - "What": "FieldDecl", - "defdec": "Def", - "display": "dataSize", - "location": { - "column": "12", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "dataSize", - "origin": "user_include", - "scope": "_hal_uart_transfer" - } - ], - "name": "_hal_uart_transfer", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:uart.h@T@hal_uart_transfer_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _hal_uart_transfer", - "location": { - "column": "3", - "line": "115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "hal_uart_transfer_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UartInit", - "What": "Function", - "defdec": "Dec", - "display": "hal_uart_status_t HAL_UartInit(hal_uart_handle_t, hal_uart_config_t *)", - "location": { - "column": "19", - "line": "155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "HAL_UartInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UartInit", - "What": "Function", - "defdec": "Dec", - "display": "hal_uart_status_t HAL_UartInit(hal_uart_handle_t, hal_uart_config_t *)", - "location": { - "column": "19", - "line": "155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "HAL_UartInit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UartDeinit", - "What": "Function", - "defdec": "Dec", - "display": "hal_uart_status_t HAL_UartDeinit(hal_uart_handle_t)", - "location": { - "column": "19", - "line": "165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "HAL_UartDeinit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UartDeinit", - "What": "Function", - "defdec": "Dec", - "display": "hal_uart_status_t HAL_UartDeinit(hal_uart_handle_t)", - "location": { - "column": "19", - "line": "165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "HAL_UartDeinit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UartReceiveBlocking", - "What": "Function", - "defdec": "Dec", - "display": "hal_uart_status_t HAL_UartReceiveBlocking(hal_uart_handle_t, uint8_t *, size_t)", - "location": { - "column": "19", - "line": "191", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "HAL_UartReceiveBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UartReceiveBlocking", - "What": "Function", - "defdec": "Dec", - "display": "hal_uart_status_t HAL_UartReceiveBlocking(hal_uart_handle_t, uint8_t *, size_t)", - "location": { - "column": "19", - "line": "191", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "HAL_UartReceiveBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UartSendBlocking", - "What": "Function", - "defdec": "Dec", - "display": "hal_uart_status_t HAL_UartSendBlocking(hal_uart_handle_t, const uint8_t *, size_t)", - "location": { - "column": "19", - "line": "208", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "HAL_UartSendBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@HAL_UartSendBlocking", - "What": "Function", - "defdec": "Dec", - "display": "hal_uart_status_t HAL_UartSendBlocking(hal_uart_handle_t, const uint8_t *, size_t)", - "location": { - "column": "19", - "line": "208", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\uart.h" - }, - "name": "HAL_UartSendBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_hal_uart_state", - "What": "Struct", - "defdec": "Def", - "display": "_hal_uart_state", - "location": { - "column": "16", - "line": "43", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "members": [ - { - "ID": "c:@S@_hal_uart_state@FI@instance", - "What": "FieldDecl", - "defdec": "Def", - "display": "instance", - "location": { - "column": "13", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "instance", - "origin": "project_file", - "scope": "_hal_uart_state" - } - ], - "name": "_hal_uart_state", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:usart_adapter.c@T@hal_uart_state_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _hal_uart_state", - "location": { - "column": "3", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "hal_uart_state_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:usart_adapter.c@s_UsartAdapterBase", - "What": "Variable", - "defdec": "Def", - "display": "s_UsartAdapterBase", - "location": { - "column": "26", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "s_UsartAdapterBase", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:usart_adapter.c@F@HAL_UartGetStatus", - "What": "Function", - "defdec": "Def", - "display": "hal_uart_status_t HAL_UartGetStatus(status_t)", - "location": { - "column": "26", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "HAL_UartGetStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_UartInit", - "What": "Function", - "defdec": "Def", - "display": "hal_uart_status_t HAL_UartInit(hal_uart_handle_t, hal_uart_config_t *)", - "location": { - "column": "19", - "line": "215", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "HAL_UartInit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:usart_adapter.c@6874@F@HAL_UartInit@uartHandle", - "What": "Variable", - "defdec": "Def", - "display": "uartHandle", - "location": { - "column": "23", - "line": "217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "uartHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:usart_adapter.c@6909@F@HAL_UartInit@usartConfig", - "What": "Variable", - "defdec": "Def", - "display": "usartConfig", - "location": { - "column": "20", - "line": "218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "usartConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:usart_adapter.c@6942@F@HAL_UartInit@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "14", - "line": "219", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_UartDeinit", - "What": "Function", - "defdec": "Def", - "display": "hal_uart_status_t HAL_UartDeinit(hal_uart_handle_t)", - "location": { - "column": "19", - "line": "287", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "HAL_UartDeinit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:usart_adapter.c@9177@F@HAL_UartDeinit@uartHandle", - "What": "Variable", - "defdec": "Def", - "display": "uartHandle", - "location": { - "column": "23", - "line": "289", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "uartHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_UartReceiveBlocking", - "What": "Function", - "defdec": "Def", - "display": "hal_uart_status_t HAL_UartReceiveBlocking(hal_uart_handle_t, uint8_t *, size_t)", - "location": { - "column": "19", - "line": "300", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "HAL_UartReceiveBlocking", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:usart_adapter.c@9492@F@HAL_UartReceiveBlocking@uartHandle", - "What": "Variable", - "defdec": "Def", - "display": "uartHandle", - "location": { - "column": "23", - "line": "302", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "uartHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:usart_adapter.c@9527@F@HAL_UartReceiveBlocking@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "14", - "line": "303", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_UartSendBlocking", - "What": "Function", - "defdec": "Def", - "display": "hal_uart_status_t HAL_UartSendBlocking(hal_uart_handle_t, const uint8_t *, size_t)", - "location": { - "column": "19", - "line": "322", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "HAL_UartSendBlocking", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:usart_adapter.c@10085@F@HAL_UartSendBlocking@uartHandle", - "What": "Variable", - "defdec": "Def", - "display": "uartHandle", - "location": { - "column": "23", - "line": "324", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\component\\uart\\usart_adapter.c" - }, - "name": "uartHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.h@193@macro@_FSL_USART_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_FSL_USART_H_", - "location": { - "column": "9", - "line": "9", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "_FSL_USART_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@555@macro@FSL_USART_DRIVER_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_USART_DRIVER_VERSION", - "location": { - "column": "9", - "line": "25", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "FSL_USART_DRIVER_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@623@macro@USART_FIFOTRIG_TXLVL_GET", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_TXLVL_GET", - "location": { - "column": "9", - "line": "28", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_FIFOTRIG_TXLVL_GET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@742@macro@USART_FIFOTRIG_RXLVL_GET", - "What": "MacroDef", - "defdec": "Def", - "display": "USART_FIFOTRIG_RXLVL_GET", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_FIFOTRIG_RXLVL_GET", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_status", - "What": "Enum", - "defdec": "Def", - "display": "_usart_status", - "fields": [ - { - "ID": "c:@E@_usart_status@kStatus_USART_TxBusy", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_USART_TxBusy", - "location": { - "column": "5", - "line": "34", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kStatus_USART_TxBusy", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_status@kStatus_USART_RxBusy", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_USART_RxBusy", - "location": { - "column": "5", - "line": "35", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kStatus_USART_RxBusy", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_status@kStatus_USART_TxIdle", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_USART_TxIdle", - "location": { - "column": "5", - "line": "36", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kStatus_USART_TxIdle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_status@kStatus_USART_RxIdle", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_USART_RxIdle", - "location": { - "column": "5", - "line": "37", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kStatus_USART_RxIdle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_status@kStatus_USART_TxError", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_USART_TxError", - "location": { - "column": "5", - "line": "38", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kStatus_USART_TxError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_status@kStatus_USART_RxError", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_USART_RxError", - "location": { - "column": "5", - "line": "39", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kStatus_USART_RxError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_status@kStatus_USART_RxRingBufferOverrun", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_USART_RxRingBufferOverrun", - "location": { - "column": "5", - "line": "40", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kStatus_USART_RxRingBufferOverrun", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_status@kStatus_USART_NoiseError", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_USART_NoiseError", - "location": { - "column": "5", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kStatus_USART_NoiseError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_status@kStatus_USART_FramingError", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_USART_FramingError", - "location": { - "column": "5", - "line": "42", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kStatus_USART_FramingError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_status@kStatus_USART_ParityError", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_USART_ParityError", - "location": { - "column": "5", - "line": "43", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kStatus_USART_ParityError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_status@kStatus_USART_BaudrateNotSupport", - "What": "Enumerator", - "defdec": "Def", - "display": "kStatus_USART_BaudrateNotSupport", - "location": { - "column": "5", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kStatus_USART_BaudrateNotSupport", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "6", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "_usart_status", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_sync_mode", - "What": "Enum", - "defdec": "Def", - "display": "_usart_sync_mode", - "fields": [ - { - "ID": "c:@E@_usart_sync_mode@kUSART_SyncModeDisabled", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_SyncModeDisabled", - "location": { - "column": "5", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_SyncModeDisabled", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_sync_mode@kUSART_SyncModeSlave", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_SyncModeSlave", - "location": { - "column": "5", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_SyncModeSlave", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_sync_mode@kUSART_SyncModeMaster", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_SyncModeMaster", - "location": { - "column": "5", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_SyncModeMaster", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "_usart_sync_mode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@T@usart_sync_mode_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _usart_sync_mode", - "location": { - "column": "3", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "usart_sync_mode_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_parity_mode", - "What": "Enum", - "defdec": "Def", - "display": "_usart_parity_mode", - "fields": [ - { - "ID": "c:@E@_usart_parity_mode@kUSART_ParityDisabled", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_ParityDisabled", - "location": { - "column": "5", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_ParityDisabled", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_parity_mode@kUSART_ParityEven", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_ParityEven", - "location": { - "column": "5", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_ParityEven", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_parity_mode@kUSART_ParityOdd", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_ParityOdd", - "location": { - "column": "5", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_ParityOdd", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "_usart_parity_mode", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@T@usart_parity_mode_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _usart_parity_mode", - "location": { - "column": "3", - "line": "62", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "usart_parity_mode_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_stop_bit_count", - "What": "Enum", - "defdec": "Def", - "display": "_usart_stop_bit_count", - "fields": [ - { - "ID": "c:@E@_usart_stop_bit_count@kUSART_OneStopBit", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_OneStopBit", - "location": { - "column": "5", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_OneStopBit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_stop_bit_count@kUSART_TwoStopBit", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TwoStopBit", - "location": { - "column": "5", - "line": "68", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TwoStopBit", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "_usart_stop_bit_count", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@T@usart_stop_bit_count_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _usart_stop_bit_count", - "location": { - "column": "3", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "usart_stop_bit_count_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_data_len", - "What": "Enum", - "defdec": "Def", - "display": "_usart_data_len", - "fields": [ - { - "ID": "c:@E@_usart_data_len@kUSART_7BitsPerChar", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_7BitsPerChar", - "location": { - "column": "5", - "line": "74", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_7BitsPerChar", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_data_len@kUSART_8BitsPerChar", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_8BitsPerChar", - "location": { - "column": "5", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_8BitsPerChar", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "72", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "_usart_data_len", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@T@usart_data_len_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _usart_data_len", - "location": { - "column": "3", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "usart_data_len_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_clock_polarity", - "What": "Enum", - "defdec": "Def", - "display": "_usart_clock_polarity", - "fields": [ - { - "ID": "c:@E@_usart_clock_polarity@kUSART_RxSampleOnFallingEdge", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxSampleOnFallingEdge", - "location": { - "column": "5", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxSampleOnFallingEdge", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_clock_polarity@kUSART_RxSampleOnRisingEdge", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxSampleOnRisingEdge", - "location": { - "column": "5", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxSampleOnRisingEdge", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "_usart_clock_polarity", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@T@usart_clock_polarity_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _usart_clock_polarity", - "location": { - "column": "3", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "usart_clock_polarity_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_txfifo_watermark", - "What": "Enum", - "defdec": "Def", - "display": "_usart_txfifo_watermark", - "fields": [ - { - "ID": "c:@E@_usart_txfifo_watermark@kUSART_TxFifo0", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxFifo0", - "location": { - "column": "5", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TxFifo0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_txfifo_watermark@kUSART_TxFifo1", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxFifo1", - "location": { - "column": "5", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TxFifo1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_txfifo_watermark@kUSART_TxFifo2", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxFifo2", - "location": { - "column": "5", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TxFifo2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_txfifo_watermark@kUSART_TxFifo3", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxFifo3", - "location": { - "column": "5", - "line": "91", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TxFifo3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_txfifo_watermark@kUSART_TxFifo4", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxFifo4", - "location": { - "column": "5", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TxFifo4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_txfifo_watermark@kUSART_TxFifo5", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxFifo5", - "location": { - "column": "5", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TxFifo5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_txfifo_watermark@kUSART_TxFifo6", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxFifo6", - "location": { - "column": "5", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TxFifo6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_txfifo_watermark@kUSART_TxFifo7", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxFifo7", - "location": { - "column": "5", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TxFifo7", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "86", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "_usart_txfifo_watermark", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@T@usart_txfifo_watermark_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _usart_txfifo_watermark", - "location": { - "column": "3", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "usart_txfifo_watermark_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_rxfifo_watermark", - "What": "Enum", - "defdec": "Def", - "display": "_usart_rxfifo_watermark", - "fields": [ - { - "ID": "c:@E@_usart_rxfifo_watermark@kUSART_RxFifo1", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxFifo1", - "location": { - "column": "5", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxFifo1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_rxfifo_watermark@kUSART_RxFifo2", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxFifo2", - "location": { - "column": "5", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxFifo2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_rxfifo_watermark@kUSART_RxFifo3", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxFifo3", - "location": { - "column": "5", - "line": "103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxFifo3", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_rxfifo_watermark@kUSART_RxFifo4", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxFifo4", - "location": { - "column": "5", - "line": "104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxFifo4", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_rxfifo_watermark@kUSART_RxFifo5", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxFifo5", - "location": { - "column": "5", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxFifo5", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_rxfifo_watermark@kUSART_RxFifo6", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxFifo6", - "location": { - "column": "5", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxFifo6", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_rxfifo_watermark@kUSART_RxFifo7", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxFifo7", - "location": { - "column": "5", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxFifo7", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_rxfifo_watermark@kUSART_RxFifo8", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxFifo8", - "location": { - "column": "5", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxFifo8", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "_usart_rxfifo_watermark", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@T@usart_rxfifo_watermark_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _usart_rxfifo_watermark", - "location": { - "column": "3", - "line": "109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "usart_rxfifo_watermark_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_interrupt_enable", - "What": "Enum", - "defdec": "Def", - "display": "_usart_interrupt_enable", - "fields": [ - { - "ID": "c:@E@_usart_interrupt_enable@kUSART_TxErrorInterruptEnable", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxErrorInterruptEnable", - "location": { - "column": "5", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TxErrorInterruptEnable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_interrupt_enable@kUSART_RxErrorInterruptEnable", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxErrorInterruptEnable", - "location": { - "column": "5", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxErrorInterruptEnable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_interrupt_enable@kUSART_TxLevelInterruptEnable", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxLevelInterruptEnable", - "location": { - "column": "5", - "line": "118", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TxLevelInterruptEnable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_interrupt_enable@kUSART_RxLevelInterruptEnable", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxLevelInterruptEnable", - "location": { - "column": "5", - "line": "119", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxLevelInterruptEnable", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "6", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "_usart_interrupt_enable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_flags", - "What": "Enum", - "defdec": "Def", - "display": "_usart_flags", - "fields": [ - { - "ID": "c:@E@_usart_flags@kUSART_TxError", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxError", - "location": { - "column": "5", - "line": "129", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TxError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_flags@kUSART_RxError", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxError", - "location": { - "column": "5", - "line": "130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxError", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_flags@kUSART_TxFifoEmptyFlag", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxFifoEmptyFlag", - "location": { - "column": "5", - "line": "131", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TxFifoEmptyFlag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_flags@kUSART_TxFifoNotFullFlag", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxFifoNotFullFlag", - "location": { - "column": "5", - "line": "132", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_TxFifoNotFullFlag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_flags@kUSART_RxFifoNotEmptyFlag", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxFifoNotEmptyFlag", - "location": { - "column": "5", - "line": "133", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxFifoNotEmptyFlag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_usart_flags@kUSART_RxFifoFullFlag", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxFifoFullFlag", - "location": { - "column": "5", - "line": "134", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "kUSART_RxFifoFullFlag", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "6", - "line": "127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "_usart_flags", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_usart_config", - "What": "Struct", - "defdec": "Def", - "display": "_usart_config", - "location": { - "column": "16", - "line": "138", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "members": [ - { - "ID": "c:@S@_usart_config@FI@baudRate_Bps", - "What": "FieldDecl", - "defdec": "Def", - "display": "baudRate_Bps", - "location": { - "column": "14", - "line": "140", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "baudRate_Bps", - "origin": "user_include", - "scope": "_usart_config" - }, - { - "ID": "c:@S@_usart_config@FI@parityMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "parityMode", - "location": { - "column": "25", - "line": "141", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "parityMode", - "origin": "user_include", - "scope": "_usart_config" - }, - { - "ID": "c:@S@_usart_config@FI@stopBitCount", - "What": "FieldDecl", - "defdec": "Def", - "display": "stopBitCount", - "location": { - "column": "28", - "line": "142", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "stopBitCount", - "origin": "user_include", - "scope": "_usart_config" - }, - { - "ID": "c:@S@_usart_config@FI@bitCountPerChar", - "What": "FieldDecl", - "defdec": "Def", - "display": "bitCountPerChar", - "location": { - "column": "22", - "line": "143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "bitCountPerChar", - "origin": "user_include", - "scope": "_usart_config" - }, - { - "ID": "c:@S@_usart_config@FI@loopback", - "What": "FieldDecl", - "defdec": "Def", - "display": "loopback", - "location": { - "column": "10", - "line": "144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "loopback", - "origin": "user_include", - "scope": "_usart_config" - }, - { - "ID": "c:@S@_usart_config@FI@enableRx", - "What": "FieldDecl", - "defdec": "Def", - "display": "enableRx", - "location": { - "column": "10", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "enableRx", - "origin": "user_include", - "scope": "_usart_config" - }, - { - "ID": "c:@S@_usart_config@FI@enableTx", - "What": "FieldDecl", - "defdec": "Def", - "display": "enableTx", - "location": { - "column": "10", - "line": "146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "enableTx", - "origin": "user_include", - "scope": "_usart_config" - }, - { - "ID": "c:@S@_usart_config@FI@enableContinuousSCLK", - "What": "FieldDecl", - "defdec": "Def", - "display": "enableContinuousSCLK", - "location": { - "column": "10", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "enableContinuousSCLK", - "origin": "user_include", - "scope": "_usart_config" - }, - { - "ID": "c:@S@_usart_config@FI@txWatermark", - "What": "FieldDecl", - "defdec": "Def", - "display": "txWatermark", - "location": { - "column": "30", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "txWatermark", - "origin": "user_include", - "scope": "_usart_config" - }, - { - "ID": "c:@S@_usart_config@FI@rxWatermark", - "What": "FieldDecl", - "defdec": "Def", - "display": "rxWatermark", - "location": { - "column": "30", - "line": "149", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "rxWatermark", - "origin": "user_include", - "scope": "_usart_config" - }, - { - "ID": "c:@S@_usart_config@FI@syncMode", - "What": "FieldDecl", - "defdec": "Def", - "display": "syncMode", - "location": { - "column": "23", - "line": "150", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "syncMode", - "origin": "user_include", - "scope": "_usart_config" - }, - { - "ID": "c:@S@_usart_config@FI@clockPolarity", - "What": "FieldDecl", - "defdec": "Def", - "display": "clockPolarity", - "location": { - "column": "28", - "line": "151", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "clockPolarity", - "origin": "user_include", - "scope": "_usart_config" - } - ], - "name": "_usart_config", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@T@usart_config_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _usart_config", - "location": { - "column": "3", - "line": "152", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "usart_config_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_usart_transfer", - "What": "Struct", - "defdec": "Def", - "display": "_usart_transfer", - "location": { - "column": "16", - "line": "155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "members": [ - { - "ID": "c:@S@_usart_transfer@FI@data", - "What": "FieldDecl", - "defdec": "Def", - "display": "data", - "location": { - "column": "14", - "line": "157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "data", - "origin": "user_include", - "scope": "_usart_transfer" - }, - { - "ID": "c:@S@_usart_transfer@FI@dataSize", - "What": "FieldDecl", - "defdec": "Def", - "display": "dataSize", - "location": { - "column": "12", - "line": "158", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "dataSize", - "origin": "user_include", - "scope": "_usart_transfer" - } - ], - "name": "_usart_transfer", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@T@usart_transfer_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _usart_transfer", - "location": { - "column": "3", - "line": "159", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "usart_transfer_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_usart_handle", - "What": "Struct", - "defdec": "Dec", - "display": "_usart_handle", - "location": { - "column": "16", - "line": "162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "members": [], - "name": "_usart_handle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@T@usart_handle_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _usart_handle", - "location": { - "column": "30", - "line": "162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "usart_handle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@T@usart_transfer_callback_t", - "What": "Typedef", - "defdec": "Def", - "display": "void (*)(USART_Type *, usart_handle_t *, status_t, void *)", - "location": { - "column": "16", - "line": "165", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "usart_transfer_callback_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_usart_handle", - "What": "Struct", - "defdec": "Def", - "display": "_usart_handle", - "location": { - "column": "8", - "line": "168", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "members": [ - { - "ID": "c:@S@_usart_handle@FI@txData", - "What": "FieldDecl", - "defdec": "Def", - "display": "txData", - "location": { - "column": "23", - "line": "170", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "txData", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@txDataSize", - "What": "FieldDecl", - "defdec": "Def", - "display": "txDataSize", - "location": { - "column": "21", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "txDataSize", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@txDataSizeAll", - "What": "FieldDecl", - "defdec": "Def", - "display": "txDataSizeAll", - "location": { - "column": "12", - "line": "172", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "txDataSizeAll", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@rxData", - "What": "FieldDecl", - "defdec": "Def", - "display": "rxData", - "location": { - "column": "23", - "line": "173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "rxData", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@rxDataSize", - "What": "FieldDecl", - "defdec": "Def", - "display": "rxDataSize", - "location": { - "column": "21", - "line": "174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "rxDataSize", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@rxDataSizeAll", - "What": "FieldDecl", - "defdec": "Def", - "display": "rxDataSizeAll", - "location": { - "column": "12", - "line": "175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "rxDataSizeAll", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@rxRingBuffer", - "What": "FieldDecl", - "defdec": "Def", - "display": "rxRingBuffer", - "location": { - "column": "14", - "line": "177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "rxRingBuffer", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@rxRingBufferSize", - "What": "FieldDecl", - "defdec": "Def", - "display": "rxRingBufferSize", - "location": { - "column": "12", - "line": "178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "rxRingBufferSize", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@rxRingBufferHead", - "What": "FieldDecl", - "defdec": "Def", - "display": "rxRingBufferHead", - "location": { - "column": "23", - "line": "179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "rxRingBufferHead", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@rxRingBufferTail", - "What": "FieldDecl", - "defdec": "Def", - "display": "rxRingBufferTail", - "location": { - "column": "23", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "rxRingBufferTail", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@callback", - "What": "FieldDecl", - "defdec": "Def", - "display": "callback", - "location": { - "column": "31", - "line": "182", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "callback", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@userData", - "What": "FieldDecl", - "defdec": "Def", - "display": "userData", - "location": { - "column": "11", - "line": "183", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "userData", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@txState", - "What": "FieldDecl", - "defdec": "Def", - "display": "txState", - "location": { - "column": "22", - "line": "185", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "txState", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@rxState", - "What": "FieldDecl", - "defdec": "Def", - "display": "rxState", - "location": { - "column": "22", - "line": "186", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "rxState", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@txWatermark", - "What": "FieldDecl", - "defdec": "Def", - "display": "txWatermark", - "location": { - "column": "30", - "line": "188", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "txWatermark", - "origin": "user_include", - "scope": "_usart_handle" - }, - { - "ID": "c:@S@_usart_handle@FI@rxWatermark", - "What": "FieldDecl", - "defdec": "Def", - "display": "rxWatermark", - "location": { - "column": "30", - "line": "189", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "rxWatermark", - "origin": "user_include", - "scope": "_usart_handle" - } - ], - "name": "_usart_handle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_GetInstance", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t USART_GetInstance(USART_Type *)", - "location": { - "column": "10", - "line": "201", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_GetInstance", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_GetInstance", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t USART_GetInstance(USART_Type *)", - "location": { - "column": "10", - "line": "201", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_GetInstance", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_Init", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_Init(USART_Type *, const usart_config_t *, uint32_t)", - "location": { - "column": "10", - "line": "229", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_Init", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_Init(USART_Type *, const usart_config_t *, uint32_t)", - "location": { - "column": "10", - "line": "229", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_Deinit", - "What": "Function", - "defdec": "Dec", - "display": "void USART_Deinit(USART_Type *)", - "location": { - "column": "6", - "line": "238", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_Deinit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_Deinit", - "What": "Function", - "defdec": "Dec", - "display": "void USART_Deinit(USART_Type *)", - "location": { - "column": "6", - "line": "238", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_Deinit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_GetDefaultConfig", - "What": "Function", - "defdec": "Dec", - "display": "void USART_GetDefaultConfig(usart_config_t *)", - "location": { - "column": "6", - "line": "255", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_GetDefaultConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_GetDefaultConfig", - "What": "Function", - "defdec": "Dec", - "display": "void USART_GetDefaultConfig(usart_config_t *)", - "location": { - "column": "6", - "line": "255", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_GetDefaultConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_SetBaudRate", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_SetBaudRate(USART_Type *, uint32_t, uint32_t)", - "location": { - "column": "10", - "line": "273", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_SetBaudRate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_SetBaudRate", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_SetBaudRate(USART_Type *, uint32_t, uint32_t)", - "location": { - "column": "10", - "line": "273", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_SetBaudRate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@F@USART_GetStatusFlags", - "What": "Function", - "defdec": "Def", - "display": "uint32_t USART_GetStatusFlags(USART_Type *)", - "location": { - "column": "24", - "line": "299", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_GetStatusFlags", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@F@USART_ClearStatusFlags", - "What": "Function", - "defdec": "Def", - "display": "void USART_ClearStatusFlags(USART_Type *, uint32_t)", - "location": { - "column": "20", - "line": "319", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_ClearStatusFlags", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@F@USART_EnableInterrupts", - "What": "Function", - "defdec": "Def", - "display": "void USART_EnableInterrupts(USART_Type *, uint32_t)", - "location": { - "column": "20", - "line": "345", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_EnableInterrupts", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@F@USART_DisableInterrupts", - "What": "Function", - "defdec": "Def", - "display": "void USART_DisableInterrupts(USART_Type *, uint32_t)", - "location": { - "column": "20", - "line": "363", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_DisableInterrupts", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@F@USART_GetEnabledInterrupts", - "What": "Function", - "defdec": "Def", - "display": "uint32_t USART_GetEnabledInterrupts(USART_Type *)", - "location": { - "column": "24", - "line": "375", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_GetEnabledInterrupts", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@F@USART_EnableTxDMA", - "What": "Function", - "defdec": "Def", - "display": "void USART_EnableTxDMA(USART_Type *, bool)", - "location": { - "column": "20", - "line": "383", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_EnableTxDMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@F@USART_EnableRxDMA", - "What": "Function", - "defdec": "Def", - "display": "void USART_EnableRxDMA(USART_Type *, bool)", - "location": { - "column": "20", - "line": "398", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_EnableRxDMA", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@F@USART_EnableCTS", - "What": "Function", - "defdec": "Def", - "display": "void USART_EnableCTS(USART_Type *, bool)", - "location": { - "column": "20", - "line": "417", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_EnableCTS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@F@USART_EnableContinuousSCLK", - "What": "Function", - "defdec": "Def", - "display": "void USART_EnableContinuousSCLK(USART_Type *, bool)", - "location": { - "column": "20", - "line": "438", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_EnableContinuousSCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@F@USART_EnableAutoClearSCLK", - "What": "Function", - "defdec": "Def", - "display": "void USART_EnableAutoClearSCLK(USART_Type *, bool)", - "location": { - "column": "20", - "line": "458", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_EnableAutoClearSCLK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@F@USART_WriteByte", - "What": "Function", - "defdec": "Def", - "display": "void USART_WriteByte(USART_Type *, uint8_t)", - "location": { - "column": "20", - "line": "485", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_WriteByte", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_usart.h@F@USART_ReadByte", - "What": "Function", - "defdec": "Def", - "display": "uint8_t USART_ReadByte(USART_Type *)", - "location": { - "column": "23", - "line": "499", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_ReadByte", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_WriteBlocking", - "What": "Function", - "defdec": "Dec", - "display": "void USART_WriteBlocking(USART_Type *, const uint8_t *, size_t)", - "location": { - "column": "6", - "line": "514", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_WriteBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_WriteBlocking", - "What": "Function", - "defdec": "Dec", - "display": "void USART_WriteBlocking(USART_Type *, const uint8_t *, size_t)", - "location": { - "column": "6", - "line": "514", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_WriteBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_ReadBlocking", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_ReadBlocking(USART_Type *, uint8_t *, size_t)", - "location": { - "column": "10", - "line": "531", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_ReadBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_ReadBlocking", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_ReadBlocking(USART_Type *, uint8_t *, size_t)", - "location": { - "column": "10", - "line": "531", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_ReadBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferCreateHandle", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_TransferCreateHandle(USART_Type *, usart_handle_t *, usart_transfer_callback_t, void *)", - "location": { - "column": "10", - "line": "552", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferCreateHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferCreateHandle", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_TransferCreateHandle(USART_Type *, usart_handle_t *, usart_transfer_callback_t, void *)", - "location": { - "column": "10", - "line": "552", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferCreateHandle", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferSendNonBlocking", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_TransferSendNonBlocking(USART_Type *, usart_handle_t *, usart_transfer_t *)", - "location": { - "column": "10", - "line": "576", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferSendNonBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferSendNonBlocking", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_TransferSendNonBlocking(USART_Type *, usart_handle_t *, usart_transfer_t *)", - "location": { - "column": "10", - "line": "576", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferSendNonBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferStartRingBuffer", - "What": "Function", - "defdec": "Dec", - "display": "void USART_TransferStartRingBuffer(USART_Type *, usart_handle_t *, uint8_t *, size_t)", - "location": { - "column": "6", - "line": "595", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferStartRingBuffer", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferStartRingBuffer", - "What": "Function", - "defdec": "Dec", - "display": "void USART_TransferStartRingBuffer(USART_Type *, usart_handle_t *, uint8_t *, size_t)", - "location": { - "column": "6", - "line": "595", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferStartRingBuffer", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferStopRingBuffer", - "What": "Function", - "defdec": "Dec", - "display": "void USART_TransferStopRingBuffer(USART_Type *, usart_handle_t *)", - "location": { - "column": "6", - "line": "608", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferStopRingBuffer", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferStopRingBuffer", - "What": "Function", - "defdec": "Dec", - "display": "void USART_TransferStopRingBuffer(USART_Type *, usart_handle_t *)", - "location": { - "column": "6", - "line": "608", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferStopRingBuffer", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferGetRxRingBufferLength", - "What": "Function", - "defdec": "Dec", - "display": "size_t USART_TransferGetRxRingBufferLength(usart_handle_t *)", - "location": { - "column": "8", - "line": "616", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferGetRxRingBufferLength", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferGetRxRingBufferLength", - "What": "Function", - "defdec": "Dec", - "display": "size_t USART_TransferGetRxRingBufferLength(usart_handle_t *)", - "location": { - "column": "8", - "line": "616", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferGetRxRingBufferLength", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferAbortSend", - "What": "Function", - "defdec": "Dec", - "display": "void USART_TransferAbortSend(USART_Type *, usart_handle_t *)", - "location": { - "column": "6", - "line": "627", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferAbortSend", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferAbortSend", - "What": "Function", - "defdec": "Dec", - "display": "void USART_TransferAbortSend(USART_Type *, usart_handle_t *)", - "location": { - "column": "6", - "line": "627", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferAbortSend", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferGetSendCount", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_TransferGetSendCount(USART_Type *, usart_handle_t *, uint32_t *)", - "location": { - "column": "10", - "line": "642", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferGetSendCount", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferGetSendCount", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_TransferGetSendCount(USART_Type *, usart_handle_t *, uint32_t *)", - "location": { - "column": "10", - "line": "642", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferGetSendCount", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferReceiveNonBlocking", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_TransferReceiveNonBlocking(USART_Type *, usart_handle_t *, usart_transfer_t *, size_t *)", - "location": { - "column": "10", - "line": "670", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferReceiveNonBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferReceiveNonBlocking", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_TransferReceiveNonBlocking(USART_Type *, usart_handle_t *, usart_transfer_t *, size_t *)", - "location": { - "column": "10", - "line": "670", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferReceiveNonBlocking", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferAbortReceive", - "What": "Function", - "defdec": "Dec", - "display": "void USART_TransferAbortReceive(USART_Type *, usart_handle_t *)", - "location": { - "column": "6", - "line": "684", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferAbortReceive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferAbortReceive", - "What": "Function", - "defdec": "Dec", - "display": "void USART_TransferAbortReceive(USART_Type *, usart_handle_t *)", - "location": { - "column": "6", - "line": "684", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferAbortReceive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferGetReceiveCount", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_TransferGetReceiveCount(USART_Type *, usart_handle_t *, uint32_t *)", - "location": { - "column": "10", - "line": "698", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferGetReceiveCount", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferGetReceiveCount", - "What": "Function", - "defdec": "Dec", - "display": "status_t USART_TransferGetReceiveCount(USART_Type *, usart_handle_t *, uint32_t *)", - "location": { - "column": "10", - "line": "698", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferGetReceiveCount", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferHandleIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void USART_TransferHandleIRQ(USART_Type *, usart_handle_t *)", - "location": { - "column": "6", - "line": "708", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferHandleIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@USART_TransferHandleIRQ", - "What": "Function", - "defdec": "Dec", - "display": "void USART_TransferHandleIRQ(USART_Type *, usart_handle_t *)", - "location": { - "column": "6", - "line": "708", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.h" - }, - "name": "USART_TransferHandleIRQ", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.h@196@macro@_FSL_FLEXCOMM_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_FSL_FLEXCOMM_H_", - "location": { - "column": "9", - "line": "9", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "_FSL_FLEXCOMM_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.h@385@macro@FSL_FLEXCOMM_DRIVER_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_FLEXCOMM_DRIVER_VERSION", - "location": { - "column": "9", - "line": "21", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FSL_FLEXCOMM_DRIVER_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLEXCOMM_PERIPH_T", - "What": "Enum", - "defdec": "Def", - "display": "", - "fields": [ - { - "ID": "c:@EA@FLEXCOMM_PERIPH_T@FLEXCOMM_PERIPH_NONE", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM_PERIPH_NONE", - "location": { - "column": "5", - "line": "27", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FLEXCOMM_PERIPH_NONE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLEXCOMM_PERIPH_T@FLEXCOMM_PERIPH_USART", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM_PERIPH_USART", - "location": { - "column": "5", - "line": "28", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FLEXCOMM_PERIPH_USART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLEXCOMM_PERIPH_T@FLEXCOMM_PERIPH_SPI", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM_PERIPH_SPI", - "location": { - "column": "5", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FLEXCOMM_PERIPH_SPI", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLEXCOMM_PERIPH_T@FLEXCOMM_PERIPH_I2C", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM_PERIPH_I2C", - "location": { - "column": "5", - "line": "30", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FLEXCOMM_PERIPH_I2C", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLEXCOMM_PERIPH_T@FLEXCOMM_PERIPH_I2S_TX", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM_PERIPH_I2S_TX", - "location": { - "column": "5", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FLEXCOMM_PERIPH_I2S_TX", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@EA@FLEXCOMM_PERIPH_T@FLEXCOMM_PERIPH_I2S_RX", - "What": "Enumerator", - "defdec": "Def", - "display": "FLEXCOMM_PERIPH_I2S_RX", - "location": { - "column": "5", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FLEXCOMM_PERIPH_I2S_RX", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "9", - "line": "25", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@T@FLEXCOMM_PERIPH_T", - "What": "Typedef", - "defdec": "Def", - "display": "enum FLEXCOMM_PERIPH_T", - "location": { - "column": "3", - "line": "33", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FLEXCOMM_PERIPH_T", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.h@T@flexcomm_irq_handler_t", - "What": "Typedef", - "defdec": "Def", - "display": "void (*)(void *, void *)", - "location": { - "column": "16", - "line": "36", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "flexcomm_irq_handler_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@kFlexcommIrqs", - "What": "Variable", - "defdec": "Dec", - "display": "kFlexcommIrqs", - "location": { - "column": "24", - "line": "39", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "kFlexcommIrqs", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@kFlexcommIrqs", - "What": "Variable", - "defdec": "Dec", - "display": "kFlexcommIrqs", - "location": { - "column": "24", - "line": "39", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "kFlexcommIrqs", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM_GetInstance", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t FLEXCOMM_GetInstance(void *)", - "location": { - "column": "10", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FLEXCOMM_GetInstance", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM_GetInstance", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t FLEXCOMM_GetInstance(void *)", - "location": { - "column": "10", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FLEXCOMM_GetInstance", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM_Init", - "What": "Function", - "defdec": "Dec", - "display": "status_t FLEXCOMM_Init(void *, FLEXCOMM_PERIPH_T)", - "location": { - "column": "10", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FLEXCOMM_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM_Init", - "What": "Function", - "defdec": "Dec", - "display": "status_t FLEXCOMM_Init(void *, FLEXCOMM_PERIPH_T)", - "location": { - "column": "10", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FLEXCOMM_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM_SetIRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void FLEXCOMM_SetIRQHandler(void *, flexcomm_irq_handler_t, void *)", - "location": { - "column": "6", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FLEXCOMM_SetIRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM_SetIRQHandler", - "What": "Function", - "defdec": "Dec", - "display": "void FLEXCOMM_SetIRQHandler(void *, flexcomm_irq_handler_t, void *)", - "location": { - "column": "6", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.h" - }, - "name": "FLEXCOMM_SetIRQHandler", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_clock.c@481@macro@FSL_COMPONENT_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_COMPONENT_ID", - "location": { - "column": "9", - "line": "17", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "FSL_COMPONENT_ID", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@540@macro@NVALMAX", - "What": "MacroDef", - "defdec": "Def", - "display": "NVALMAX", - "location": { - "column": "9", - "line": "19", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "NVALMAX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@566@macro@PVALMAX", - "What": "MacroDef", - "defdec": "Def", - "display": "PVALMAX", - "location": { - "column": "9", - "line": "20", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PVALMAX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@591@macro@MVALMAX", - "What": "MacroDef", - "defdec": "Def", - "display": "MVALMAX", - "location": { - "column": "9", - "line": "21", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "MVALMAX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@620@macro@PLL_MAX_N_DIV", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_MAX_N_DIV", - "location": { - "column": "9", - "line": "23", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_MAX_N_DIV", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@652@macro@INDEX_SECTOR_TRIM48", - "What": "MacroDef", - "defdec": "Def", - "display": "INDEX_SECTOR_TRIM48", - "location": { - "column": "9", - "line": "25", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "INDEX_SECTOR_TRIM48", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@707@macro@INDEX_SECTOR_TRIM96", - "What": "MacroDef", - "defdec": "Def", - "display": "INDEX_SECTOR_TRIM96", - "location": { - "column": "9", - "line": "26", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "INDEX_SECTOR_TRIM96", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@988@macro@PLL_SSCG0_MDEC_VAL_P", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG0_MDEC_VAL_P", - "location": { - "column": "9", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_SSCG0_MDEC_VAL_P", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1089@macro@PLL_SSCG0_MDEC_VAL_M", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG0_MDEC_VAL_M", - "location": { - "column": "9", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_SSCG0_MDEC_VAL_M", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1189@macro@PLL_NDEC_VAL_P", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_NDEC_VAL_P", - "location": { - "column": "9", - "line": "33", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_NDEC_VAL_P", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1282@macro@PLL_NDEC_VAL_M", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_NDEC_VAL_M", - "location": { - "column": "9", - "line": "34", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_NDEC_VAL_M", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1334@macro@PLL_PDEC_VAL_P", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_PDEC_VAL_P", - "location": { - "column": "9", - "line": "35", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_PDEC_VAL_P", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1389@macro@PLL_PDEC_VAL_M", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_PDEC_VAL_M", - "location": { - "column": "9", - "line": "36", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_PDEC_VAL_M", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1442@macro@PLL_MIN_CCO_FREQ_MHZ", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_MIN_CCO_FREQ_MHZ", - "location": { - "column": "9", - "line": "38", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_MIN_CCO_FREQ_MHZ", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1484@macro@PLL_MAX_CCO_FREQ_MHZ", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_MAX_CCO_FREQ_MHZ", - "location": { - "column": "9", - "line": "39", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_MAX_CCO_FREQ_MHZ", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1527@macro@PLL_LOWER_IN_LIMIT", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_LOWER_IN_LIMIT", - "location": { - "column": "9", - "line": "40", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_LOWER_IN_LIMIT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1594@macro@PLL_MIN_IN_SSMODE", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_MIN_IN_SSMODE", - "location": { - "column": "9", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_MIN_IN_SSMODE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1632@macro@PLL_MAX_IN_SSMODE", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_MAX_IN_SSMODE", - "location": { - "column": "9", - "line": "42", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_MAX_IN_SSMODE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1726@macro@PLL_SSCG_MF_FREQ_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG_MF_FREQ_VALUE", - "location": { - "column": "9", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_SSCG_MF_FREQ_VALUE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1761@macro@PLL_SSCG_MC_COMP_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG_MC_COMP_VALUE", - "location": { - "column": "9", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_SSCG_MC_COMP_VALUE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1796@macro@PLL_SSCG_MR_DEPTH_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG_MR_DEPTH_VALUE", - "location": { - "column": "9", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_SSCG_MR_DEPTH_VALUE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1832@macro@PLL_SSCG_DITHER_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG_DITHER_VALUE", - "location": { - "column": "9", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_SSCG_DITHER_VALUE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@1888@macro@PLL_NDEC_VAL_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_NDEC_VAL_SET", - "location": { - "column": "9", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_NDEC_VAL_SET", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@2003@macro@PLL_PDEC_VAL_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_PDEC_VAL_SET", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_PDEC_VAL_SET", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@2119@macro@PLL_SSCG0_MDEC_VAL_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG0_MDEC_VAL_SET", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_SSCG0_MDEC_VAL_SET", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@2255@macro@PLL_SSCG1_MD_FRACT_P", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG1_MD_FRACT_P", - "location": { - "column": "9", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_SSCG1_MD_FRACT_P", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@2288@macro@PLL_SSCG1_MD_INT_P", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG1_MD_INT_P", - "location": { - "column": "9", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_SSCG1_MD_INT_P", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@2320@macro@PLL_SSCG1_MD_FRACT_M", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG1_MD_FRACT_M", - "location": { - "column": "9", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_SSCG1_MD_FRACT_M", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@2384@macro@PLL_SSCG1_MD_INT_M", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG1_MD_INT_M", - "location": { - "column": "9", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_SSCG1_MD_INT_M", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@2445@macro@PLL_SSCG1_MD_FRACT_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG1_MD_FRACT_SET", - "location": { - "column": "9", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_SSCG1_MD_FRACT_SET", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@2558@macro@PLL_SSCG1_MD_INT_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG1_MD_INT_SET", - "location": { - "column": "9", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "PLL_SSCG1_MD_INT_SET", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@s_Pll_Freq", - "What": "Variable", - "defdec": "Dec", - "display": "s_Pll_Freq", - "location": { - "column": "17", - "line": "68", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "s_Pll_Freq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@g_I2S_Mclk_Freq", - "What": "Variable", - "defdec": "Def", - "display": "g_I2S_Mclk_Freq", - "location": { - "column": "10", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "g_I2S_Mclk_Freq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@g_Ext_Clk_Freq", - "What": "Variable", - "defdec": "Def", - "display": "g_Ext_Clk_Freq", - "location": { - "column": "16", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "g_Ext_Clk_Freq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllEncodeN", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t pllEncodeN(uint32_t)", - "location": { - "column": "17", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllEncodeN", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllDecodeN", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t pllDecodeN(uint32_t)", - "location": { - "column": "17", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllDecodeN", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllEncodeP", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t pllEncodeP(uint32_t)", - "location": { - "column": "17", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllEncodeP", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllDecodeP", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t pllDecodeP(uint32_t)", - "location": { - "column": "17", - "line": "91", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllDecodeP", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllEncodeM", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t pllEncodeM(uint32_t)", - "location": { - "column": "17", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllEncodeM", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllDecodeM", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t pllDecodeM(uint32_t)", - "location": { - "column": "17", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllDecodeM", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllFindSel", - "What": "Function", - "defdec": "Dec", - "display": "void pllFindSel(uint32_t, bool, uint32_t *, uint32_t *, uint32_t *)", - "location": { - "column": "13", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllFindSel", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@findPllPreDiv", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t findPllPreDiv(uint32_t, uint32_t)", - "location": { - "column": "17", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "findPllPreDiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@findPllPostDiv", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t findPllPostDiv(uint32_t, uint32_t)", - "location": { - "column": "17", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "findPllPostDiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@findPllMMult", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t findPllMMult(uint32_t, uint32_t)", - "location": { - "column": "17", - "line": "103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "findPllMMult", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@FindGreatestCommonDivisor", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t FindGreatestCommonDivisor(uint32_t, uint32_t)", - "location": { - "column": "17", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "FindGreatestCommonDivisor", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@CLOCK_GetPllConfig", - "What": "Function", - "defdec": "Dec", - "display": "pll_error_t CLOCK_GetPllConfig(uint32_t, uint32_t, pll_setup_t *, bool, bool)", - "location": { - "column": "20", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetPllConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@CLOCK_GetSystemPLLOutFromSetupUpdate", - "What": "Function", - "defdec": "Dec", - "display": "void CLOCK_GetSystemPLLOutFromSetupUpdate(pll_setup_t *)", - "location": { - "column": "13", - "line": "110", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetSystemPLLOutFromSetupUpdate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@wdtFreqLookup", - "What": "Variable", - "defdec": "Def", - "display": "wdtFreqLookup", - "location": { - "column": "22", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "wdtFreqLookup", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_AttachClk", - "What": "Function", - "defdec": "Def", - "display": "void CLOCK_AttachClk(clock_attach_id_t)", - "location": { - "column": "6", - "line": "123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_AttachClk", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@5530@F@CLOCK_AttachClk@mux", - "What": "Variable", - "defdec": "Def", - "display": "mux", - "location": { - "column": "13", - "line": "125", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "mux", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@5548@F@CLOCK_AttachClk@sel", - "What": "Variable", - "defdec": "Def", - "display": "sel", - "location": { - "column": "13", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "sel", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@5566@F@CLOCK_AttachClk@item", - "What": "Variable", - "defdec": "Def", - "display": "item", - "location": { - "column": "14", - "line": "127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "item", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@5586@F@CLOCK_AttachClk@tmp32", - "What": "Variable", - "defdec": "Def", - "display": "tmp32", - "location": { - "column": "14", - "line": "128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "tmp32", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@5630@F@CLOCK_AttachClk@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "14", - "line": "129", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@5647@F@CLOCK_AttachClk@pClkSel", - "What": "Variable", - "defdec": "Def", - "display": "pClkSel", - "location": { - "column": "24", - "line": "130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pClkSel", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetClockAttachId", - "What": "Function", - "defdec": "Def", - "display": "clock_attach_id_t CLOCK_GetClockAttachId(clock_attach_id_t)", - "location": { - "column": "19", - "line": "169", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetClockAttachId", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@6843@F@CLOCK_GetClockAttachId@mux", - "What": "Variable", - "defdec": "Def", - "display": "mux", - "location": { - "column": "13", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "mux", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@6861@F@CLOCK_GetClockAttachId@actualSel", - "What": "Variable", - "defdec": "Def", - "display": "actualSel", - "location": { - "column": "13", - "line": "172", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "actualSel", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@6885@F@CLOCK_GetClockAttachId@tmp32", - "What": "Variable", - "defdec": "Def", - "display": "tmp32", - "location": { - "column": "14", - "line": "173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "tmp32", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@6927@F@CLOCK_GetClockAttachId@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "14", - "line": "174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@6944@F@CLOCK_GetClockAttachId@actualAttachId", - "What": "Variable", - "defdec": "Def", - "display": "actualAttachId", - "location": { - "column": "14", - "line": "175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "actualAttachId", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@6979@F@CLOCK_GetClockAttachId@selector", - "What": "Variable", - "defdec": "Def", - "display": "selector", - "location": { - "column": "14", - "line": "176", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "selector", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@7034@F@CLOCK_GetClockAttachId@pClkSel", - "What": "Variable", - "defdec": "Def", - "display": "pClkSel", - "location": { - "column": "24", - "line": "177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pClkSel", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetClkDiv", - "What": "Function", - "defdec": "Def", - "display": "void CLOCK_SetClkDiv(clock_div_name_t, uint32_t, bool)", - "location": { - "column": "6", - "line": "218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_SetClkDiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@8137@F@CLOCK_SetClkDiv@pClkDiv", - "What": "Variable", - "defdec": "Def", - "display": "pClkDiv", - "location": { - "column": "24", - "line": "220", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pClkDiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetupFROClocking", - "What": "Function", - "defdec": "Def", - "display": "status_t CLOCK_SetupFROClocking(uint32_t)", - "location": { - "column": "10", - "line": "245", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_SetupFROClocking", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@8899@F@CLOCK_SetupFROClocking@usb_adj", - "What": "Variable", - "defdec": "Def", - "display": "usb_adj", - "location": { - "column": "14", - "line": "247", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "usb_adj", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFro12MFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetFro12MFreq(void)", - "location": { - "column": "10", - "line": "282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetFro12MFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetExtClkFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetExtClkFreq(void)", - "location": { - "column": "10", - "line": "290", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetExtClkFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetWdtOscFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetWdtOscFreq(void)", - "location": { - "column": "10", - "line": "297", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetWdtOscFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@10730@F@CLOCK_GetWdtOscFreq@freq_sel", - "What": "Variable", - "defdec": "Def", - "display": "freq_sel", - "location": { - "column": "13", - "line": "299", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "freq_sel", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@10730@F@CLOCK_GetWdtOscFreq@div_sel", - "What": "Variable", - "defdec": "Dec", - "display": "div_sel", - "location": { - "column": "23", - "line": "299", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "div_sel", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFroHfFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetFroHfFreq(void)", - "location": { - "column": "10", - "line": "316", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetFroHfFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetPllOutFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetPllOutFreq(void)", - "location": { - "column": "10", - "line": "328", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetPllOutFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetOsc32KFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetOsc32KFreq(void)", - "location": { - "column": "10", - "line": "336", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetOsc32KFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetCoreSysClkFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetCoreSysClkFreq(void)", - "location": { - "column": "10", - "line": "343", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetCoreSysClkFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetI2SMClkFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetI2SMClkFreq(void)", - "location": { - "column": "10", - "line": "359", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetI2SMClkFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetAsyncApbClkFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetAsyncApbClkFreq(void)", - "location": { - "column": "10", - "line": "367", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetAsyncApbClkFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@13027@F@CLOCK_GetAsyncApbClkFreq@clkSrc", - "What": "Variable", - "defdec": "Def", - "display": "clkSrc", - "location": { - "column": "23", - "line": "369", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "clkSrc", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@13058@F@CLOCK_GetAsyncApbClkFreq@clkRate", - "What": "Variable", - "defdec": "Def", - "display": "clkRate", - "location": { - "column": "14", - "line": "370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "clkRate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFlexCommClkFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetFlexCommClkFreq(uint32_t)", - "location": { - "column": "10", - "line": "393", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetFlexCommClkFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetAdcClkFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetAdcClkFreq(void)", - "location": { - "column": "10", - "line": "409", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetAdcClkFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@14218@F@CLOCK_GetAdcClkFreq@freq", - "What": "Variable", - "defdec": "Def", - "display": "freq", - "location": { - "column": "14", - "line": "411", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "freq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFRGInputClock", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetFRGInputClock(void)", - "location": { - "column": "10", - "line": "437", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetFRGInputClock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetFRGClock", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_SetFRGClock(uint32_t)", - "location": { - "column": "10", - "line": "451", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_SetFRGClock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@15391@F@CLOCK_SetFRGClock@input", - "What": "Variable", - "defdec": "Def", - "display": "input", - "location": { - "column": "14", - "line": "453", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "input", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@15439@F@CLOCK_SetFRGClock@mul", - "What": "Variable", - "defdec": "Def", - "display": "mul", - "location": { - "column": "14", - "line": "454", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "mul", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetFreq(clock_name_t)", - "location": { - "column": "10", - "line": "472", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@15992@F@CLOCK_GetFreq@freq", - "What": "Variable", - "defdec": "Def", - "display": "freq", - "location": { - "column": "14", - "line": "474", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "freq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetFLASHAccessCyclesForFreq", - "What": "Function", - "defdec": "Def", - "display": "void CLOCK_SetFLASHAccessCyclesForFreq(uint32_t)", - "location": { - "column": "6", - "line": "554", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_SetFLASHAccessCyclesForFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllEncodeN", - "What": "Function", - "defdec": "Def", - "display": "uint32_t pllEncodeN(uint32_t)", - "location": { - "column": "17", - "line": "583", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllEncodeN", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@19426@F@pllEncodeN@x", - "What": "Variable", - "defdec": "Def", - "display": "x", - "location": { - "column": "14", - "line": "585", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "x", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@19426@F@pllEncodeN@i", - "What": "Variable", - "defdec": "Dec", - "display": "i", - "location": { - "column": "17", - "line": "585", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllDecodeN", - "What": "Function", - "defdec": "Def", - "display": "uint32_t pllDecodeN(uint32_t)", - "location": { - "column": "17", - "line": "615", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllDecodeN", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@20082@F@pllDecodeN@n", - "What": "Variable", - "defdec": "Def", - "display": "n", - "location": { - "column": "14", - "line": "617", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "n", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@20082@F@pllDecodeN@x", - "What": "Variable", - "defdec": "Dec", - "display": "x", - "location": { - "column": "17", - "line": "617", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "x", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@20082@F@pllDecodeN@i", - "What": "Variable", - "defdec": "Dec", - "display": "i", - "location": { - "column": "20", - "line": "617", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllEncodeP", - "What": "Function", - "defdec": "Def", - "display": "uint32_t pllEncodeP(uint32_t)", - "location": { - "column": "17", - "line": "653", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllEncodeP", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@20964@F@pllEncodeP@x", - "What": "Variable", - "defdec": "Def", - "display": "x", - "location": { - "column": "14", - "line": "655", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "x", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@20964@F@pllEncodeP@i", - "What": "Variable", - "defdec": "Dec", - "display": "i", - "location": { - "column": "17", - "line": "655", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllDecodeP", - "What": "Function", - "defdec": "Def", - "display": "uint32_t pllDecodeP(uint32_t)", - "location": { - "column": "17", - "line": "685", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllDecodeP", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@21591@F@pllDecodeP@p", - "What": "Variable", - "defdec": "Def", - "display": "p", - "location": { - "column": "14", - "line": "687", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "p", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@21591@F@pllDecodeP@x", - "What": "Variable", - "defdec": "Dec", - "display": "x", - "location": { - "column": "17", - "line": "687", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "x", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@21591@F@pllDecodeP@i", - "What": "Variable", - "defdec": "Dec", - "display": "i", - "location": { - "column": "20", - "line": "687", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllEncodeM", - "What": "Function", - "defdec": "Def", - "display": "uint32_t pllEncodeM(uint32_t)", - "location": { - "column": "17", - "line": "723", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllEncodeM", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@22444@F@pllEncodeM@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "14", - "line": "725", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@22444@F@pllEncodeM@x", - "What": "Variable", - "defdec": "Dec", - "display": "x", - "location": { - "column": "17", - "line": "725", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "x", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllDecodeM", - "What": "Function", - "defdec": "Def", - "display": "uint32_t pllDecodeM(uint32_t)", - "location": { - "column": "17", - "line": "755", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllDecodeM", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@23099@F@pllDecodeM@m", - "What": "Variable", - "defdec": "Def", - "display": "m", - "location": { - "column": "14", - "line": "757", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "m", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@23099@F@pllDecodeM@i", - "What": "Variable", - "defdec": "Dec", - "display": "i", - "location": { - "column": "17", - "line": "757", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@23099@F@pllDecodeM@x", - "What": "Variable", - "defdec": "Dec", - "display": "x", - "location": { - "column": "20", - "line": "757", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "x", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@pllFindSel", - "What": "Function", - "defdec": "Def", - "display": "void pllFindSel(uint32_t, bool, uint32_t *, uint32_t *, uint32_t *)", - "location": { - "column": "13", - "line": "793", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllFindSel", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@findPllPreDiv", - "What": "Function", - "defdec": "Def", - "display": "uint32_t findPllPreDiv(uint32_t, uint32_t)", - "location": { - "column": "17", - "line": "840", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "findPllPreDiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@25008@F@findPllPreDiv@preDiv", - "What": "Variable", - "defdec": "Def", - "display": "preDiv", - "location": { - "column": "14", - "line": "842", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "preDiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@findPllPostDiv", - "What": "Function", - "defdec": "Def", - "display": "uint32_t findPllPostDiv(uint32_t, uint32_t)", - "location": { - "column": "17", - "line": "860", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "findPllPostDiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@25534@F@findPllPostDiv@postDiv", - "What": "Variable", - "defdec": "Def", - "display": "postDiv", - "location": { - "column": "14", - "line": "862", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "postDiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@findPllMMult", - "What": "Function", - "defdec": "Def", - "display": "uint32_t findPllMMult(uint32_t, uint32_t)", - "location": { - "column": "17", - "line": "880", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "findPllMMult", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@26077@F@findPllMMult@mMult", - "What": "Variable", - "defdec": "Def", - "display": "mMult", - "location": { - "column": "14", - "line": "882", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "mMult", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@FindGreatestCommonDivisor", - "What": "Function", - "defdec": "Def", - "display": "uint32_t FindGreatestCommonDivisor(uint32_t, uint32_t)", - "location": { - "column": "17", - "line": "901", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "FindGreatestCommonDivisor", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@26508@F@FindGreatestCommonDivisor@tmp", - "What": "Variable", - "defdec": "Def", - "display": "tmp", - "location": { - "column": "14", - "line": "903", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "tmp", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@CLOCK_GetPllConfigInternal", - "What": "Function", - "defdec": "Def", - "display": "pll_error_t CLOCK_GetPllConfigInternal(uint32_t, uint32_t, pll_setup_t *, bool, bool)", - "location": { - "column": "20", - "line": "921", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetPllConfigInternal", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27125@F@CLOCK_GetPllConfigInternal@nDivOutHz", - "What": "Variable", - "defdec": "Def", - "display": "nDivOutHz", - "location": { - "column": "14", - "line": "924", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "nDivOutHz", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27125@F@CLOCK_GetPllConfigInternal@fccoHz", - "What": "Variable", - "defdec": "Dec", - "display": "fccoHz", - "location": { - "column": "25", - "line": "924", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "fccoHz", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27125@F@CLOCK_GetPllConfigInternal@multFccoDiv", - "What": "Variable", - "defdec": "Dec", - "display": "multFccoDiv", - "location": { - "column": "33", - "line": "924", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "multFccoDiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27171@F@CLOCK_GetPllConfigInternal@pllPreDivider", - "What": "Variable", - "defdec": "Def", - "display": "pllPreDivider", - "location": { - "column": "14", - "line": "925", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllPreDivider", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27171@F@CLOCK_GetPllConfigInternal@pllMultiplier", - "What": "Variable", - "defdec": "Dec", - "display": "pllMultiplier", - "location": { - "column": "29", - "line": "925", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllMultiplier", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27171@F@CLOCK_GetPllConfigInternal@pllBypassFBDIV2", - "What": "Variable", - "defdec": "Dec", - "display": "pllBypassFBDIV2", - "location": { - "column": "44", - "line": "925", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllBypassFBDIV2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27171@F@CLOCK_GetPllConfigInternal@pllPostDivider", - "What": "Variable", - "defdec": "Dec", - "display": "pllPostDivider", - "location": { - "column": "61", - "line": "925", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllPostDivider", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27248@F@CLOCK_GetPllConfigInternal@pllDirectInput", - "What": "Variable", - "defdec": "Def", - "display": "pllDirectInput", - "location": { - "column": "14", - "line": "926", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllDirectInput", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27248@F@CLOCK_GetPllConfigInternal@pllDirectOutput", - "What": "Variable", - "defdec": "Dec", - "display": "pllDirectOutput", - "location": { - "column": "30", - "line": "926", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllDirectOutput", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27295@F@CLOCK_GetPllConfigInternal@pllSelP", - "What": "Variable", - "defdec": "Def", - "display": "pllSelP", - "location": { - "column": "14", - "line": "927", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllSelP", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27295@F@CLOCK_GetPllConfigInternal@pllSelI", - "What": "Variable", - "defdec": "Dec", - "display": "pllSelI", - "location": { - "column": "23", - "line": "927", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllSelI", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27295@F@CLOCK_GetPllConfigInternal@pllSelR", - "What": "Variable", - "defdec": "Dec", - "display": "pllSelR", - "location": { - "column": "32", - "line": "927", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllSelR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27295@F@CLOCK_GetPllConfigInternal@bandsel", - "What": "Variable", - "defdec": "Dec", - "display": "bandsel", - "location": { - "column": "41", - "line": "927", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "bandsel", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@27295@F@CLOCK_GetPllConfigInternal@uplimoff", - "What": "Variable", - "defdec": "Dec", - "display": "uplimoff", - "location": { - "column": "50", - "line": "927", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "uplimoff", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@29967@F@CLOCK_GetPllConfigInternal@a", - "What": "Variable", - "defdec": "Def", - "display": "a", - "location": { - "column": "18", - "line": "1005", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "a", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@31425@F@CLOCK_GetPllConfigInternal@fc", - "What": "Variable", - "defdec": "Def", - "display": "fc", - "location": { - "column": "18", - "line": "1054", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "fc", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@gPllSetupCacheStruct", - "What": "Variable", - "defdec": "Dec", - "display": "gPllSetupCacheStruct", - "location": { - "column": "13", - "line": "1093", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "gPllSetupCacheStruct", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@gFinHzCache", - "What": "Variable", - "defdec": "Def", - "display": "gFinHzCache", - "location": { - "column": "10", - "line": "1094", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "gFinHzCache", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@gFoutHzCache", - "What": "Variable", - "defdec": "Def", - "display": "gFoutHzCache", - "location": { - "column": "10", - "line": "1095", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "gFoutHzCache", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@gUseFeedbackDiv2Cache", - "What": "Variable", - "defdec": "Def", - "display": "gUseFeedbackDiv2Cache", - "location": { - "column": "6", - "line": "1096", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "gUseFeedbackDiv2Cache", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@gUseSSCache", - "What": "Variable", - "defdec": "Def", - "display": "gUseSSCache", - "location": { - "column": "6", - "line": "1097", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "gUseSSCache", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@gPllSetupCacheIdx", - "What": "Variable", - "defdec": "Def", - "display": "gPllSetupCacheIdx", - "location": { - "column": "10", - "line": "1098", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "gPllSetupCacheIdx", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@CLOCK_GetPllConfig", - "What": "Function", - "defdec": "Def", - "display": "pll_error_t CLOCK_GetPllConfig(uint32_t, uint32_t, pll_setup_t *, bool, bool)", - "location": { - "column": "20", - "line": "1104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetPllConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@34313@F@CLOCK_GetPllConfig@retErr", - "What": "Variable", - "defdec": "Def", - "display": "retErr", - "location": { - "column": "17", - "line": "1107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "retErr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@34431@F@CLOCK_GetPllConfig@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "14", - "line": "1109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@F@CLOCK_GetSystemPLLOutFromSetupUpdate", - "What": "Function", - "defdec": "Def", - "display": "void CLOCK_GetSystemPLLOutFromSetupUpdate(pll_setup_t *)", - "location": { - "column": "13", - "line": "1155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetSystemPLLOutFromSetupUpdate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetSystemPLLInClockRate", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetSystemPLLInClockRate(void)", - "location": { - "column": "10", - "line": "1164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetSystemPLLInClockRate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@36859@F@CLOCK_GetSystemPLLInClockRate@clkRate", - "What": "Variable", - "defdec": "Def", - "display": "clkRate", - "location": { - "column": "14", - "line": "1166", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "clkRate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetSystemPLLOutFromSetup", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetSystemPLLOutFromSetup(pll_setup_t *)", - "location": { - "column": "10", - "line": "1199", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetSystemPLLOutFromSetup", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@37744@F@CLOCK_GetSystemPLLOutFromSetup@prediv", - "What": "Variable", - "defdec": "Def", - "display": "prediv", - "location": { - "column": "14", - "line": "1201", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "prediv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@37744@F@CLOCK_GetSystemPLLOutFromSetup@postdiv", - "What": "Variable", - "defdec": "Dec", - "display": "postdiv", - "location": { - "column": "22", - "line": "1201", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "postdiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@37744@F@CLOCK_GetSystemPLLOutFromSetup@mMult", - "What": "Variable", - "defdec": "Dec", - "display": "mMult", - "location": { - "column": "31", - "line": "1201", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "mMult", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@37744@F@CLOCK_GetSystemPLLOutFromSetup@inPllRate", - "What": "Variable", - "defdec": "Dec", - "display": "inPllRate", - "location": { - "column": "38", - "line": "1201", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "inPllRate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@37793@F@CLOCK_GetSystemPLLOutFromSetup@workRate", - "What": "Variable", - "defdec": "Def", - "display": "workRate", - "location": { - "column": "14", - "line": "1202", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "workRate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@39097@F@CLOCK_GetSystemPLLOutFromSetup@fract", - "What": "Variable", - "defdec": "Def", - "display": "fract", - "location": { - "column": "22", - "line": "1240", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "fract", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetStoredPLLClockRate", - "What": "Function", - "defdec": "Def", - "display": "void CLOCK_SetStoredPLLClockRate(uint32_t)", - "location": { - "column": "6", - "line": "1279", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_SetStoredPLLClockRate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_GetSystemPLLOutClockRate", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CLOCK_GetSystemPLLOutClockRate(bool)", - "location": { - "column": "10", - "line": "1292", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_GetSystemPLLOutClockRate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@40823@F@CLOCK_GetSystemPLLOutClockRate@Setup", - "What": "Variable", - "defdec": "Def", - "display": "Setup", - "location": { - "column": "17", - "line": "1294", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "Setup", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@40847@F@CLOCK_GetSystemPLLOutClockRate@rate", - "What": "Variable", - "defdec": "Def", - "display": "rate", - "location": { - "column": "14", - "line": "1295", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "rate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetupPLLData", - "What": "Function", - "defdec": "Def", - "display": "pll_error_t CLOCK_SetupPLLData(pll_config_t *, pll_setup_t *)", - "location": { - "column": "13", - "line": "1321", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_SetupPLLData", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@41885@F@CLOCK_SetupPLLData@inRate", - "What": "Variable", - "defdec": "Def", - "display": "inRate", - "location": { - "column": "14", - "line": "1323", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "inRate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@41907@F@CLOCK_SetupPLLData@useSS", - "What": "Variable", - "defdec": "Def", - "display": "useSS", - "location": { - "column": "10", - "line": "1324", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "useSS", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@41988@F@CLOCK_SetupPLLData@useFbDiv2", - "What": "Variable", - "defdec": "Def", - "display": "useFbDiv2", - "location": { - "column": "10", - "line": "1325", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "useFbDiv2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@42011@F@CLOCK_SetupPLLData@pllError", - "What": "Variable", - "defdec": "Def", - "display": "pllError", - "location": { - "column": "17", - "line": "1327", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pllError", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetupSystemPLLPrec", - "What": "Function", - "defdec": "Def", - "display": "pll_error_t CLOCK_SetupSystemPLLPrec(pll_setup_t *, uint32_t)", - "location": { - "column": "13", - "line": "1374", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_SetupSystemPLLPrec", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@44807@F@CLOCK_SetupSystemPLLPrec@delayX", - "What": "Variable", - "defdec": "Def", - "display": "delayX", - "location": { - "column": "27", - "line": "1396", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "delayX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@44842@F@CLOCK_SetupSystemPLLPrec@maxCCO", - "What": "Variable", - "defdec": "Def", - "display": "maxCCO", - "location": { - "column": "18", - "line": "1397", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "maxCCO", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@44928@F@CLOCK_SetupSystemPLLPrec@curSSCTRL", - "What": "Variable", - "defdec": "Def", - "display": "curSSCTRL", - "location": { - "column": "18", - "line": "1398", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "curSSCTRL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetPLLFreq", - "What": "Function", - "defdec": "Def", - "display": "pll_error_t CLOCK_SetPLLFreq(const pll_setup_t *)", - "location": { - "column": "13", - "line": "1451", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_SetPLLFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@47861@F@CLOCK_SetPLLFreq@delayX", - "What": "Variable", - "defdec": "Def", - "display": "delayX", - "location": { - "column": "27", - "line": "1471", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "delayX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@47896@F@CLOCK_SetPLLFreq@maxCCO", - "What": "Variable", - "defdec": "Def", - "display": "maxCCO", - "location": { - "column": "18", - "line": "1472", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "maxCCO", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@47982@F@CLOCK_SetPLLFreq@curSSCTRL", - "What": "Variable", - "defdec": "Def", - "display": "curSSCTRL", - "location": { - "column": "18", - "line": "1473", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "curSSCTRL", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_SetupSystemPLLMult", - "What": "Function", - "defdec": "Def", - "display": "void CLOCK_SetupSystemPLLMult(uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "1521", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_SetupSystemPLLMult", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@49702@F@CLOCK_SetupSystemPLLMult@cco_freq", - "What": "Variable", - "defdec": "Def", - "display": "cco_freq", - "location": { - "column": "14", - "line": "1523", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "cco_freq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@49753@F@CLOCK_SetupSystemPLLMult@pdec", - "What": "Variable", - "defdec": "Def", - "display": "pdec", - "location": { - "column": "14", - "line": "1524", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "pdec", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@49782@F@CLOCK_SetupSystemPLLMult@selr", - "What": "Variable", - "defdec": "Def", - "display": "selr", - "location": { - "column": "14", - "line": "1525", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "selr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@49802@F@CLOCK_SetupSystemPLLMult@seli", - "What": "Variable", - "defdec": "Def", - "display": "seli", - "location": { - "column": "14", - "line": "1526", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "seli", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@49822@F@CLOCK_SetupSystemPLLMult@selp", - "What": "Variable", - "defdec": "Def", - "display": "selp", - "location": { - "column": "14", - "line": "1527", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "selp", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@49842@F@CLOCK_SetupSystemPLLMult@mdec", - "What": "Variable", - "defdec": "Def", - "display": "mdec", - "location": { - "column": "14", - "line": "1528", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "mdec", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@49842@F@CLOCK_SetupSystemPLLMult@ndec", - "What": "Variable", - "defdec": "Dec", - "display": "ndec", - "location": { - "column": "20", - "line": "1528", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "ndec", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@49870@F@CLOCK_SetupSystemPLLMult@directo", - "What": "Variable", - "defdec": "Def", - "display": "directo", - "location": { - "column": "14", - "line": "1530", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "directo", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CLOCK_EnableUsbfs0Clock", - "What": "Function", - "defdec": "Def", - "display": "bool CLOCK_EnableUsbfs0Clock(clock_usb_src_t, uint32_t)", - "location": { - "column": "6", - "line": "1611", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "CLOCK_EnableUsbfs0Clock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@52444@F@CLOCK_EnableUsbfs0Clock@ret", - "What": "Variable", - "defdec": "Def", - "display": "ret", - "location": { - "column": "10", - "line": "1613", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "ret", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SDK_DelayAtLeastUs", - "What": "Function", - "defdec": "Def", - "display": "void SDK_DelayAtLeastUs(uint32_t)", - "location": { - "column": "28", - "line": "1656", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "SDK_DelayAtLeastUs", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_clock.c@54016@F@SDK_DelayAtLeastUs@count", - "What": "Variable", - "defdec": "Def", - "display": "count", - "location": { - "column": "14", - "line": "1660", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_clock.c" - }, - "name": "count", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@1644@macro@NVALMAX", - "What": "MacroDef", - "defdec": "Def", - "display": "NVALMAX", - "location": { - "column": "9", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "NVALMAX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@1669@macro@PVALMAX", - "What": "MacroDef", - "defdec": "Def", - "display": "PVALMAX", - "location": { - "column": "9", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "PVALMAX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@1693@macro@MVALMAX", - "What": "MacroDef", - "defdec": "Def", - "display": "MVALMAX", - "location": { - "column": "9", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "MVALMAX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@1719@macro@PLL_SSCG0_MDEC_VAL_P", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG0_MDEC_VAL_P", - "location": { - "column": "9", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "PLL_SSCG0_MDEC_VAL_P", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@1820@macro@PLL_SSCG0_MDEC_VAL_M", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_SSCG0_MDEC_VAL_M", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "PLL_SSCG0_MDEC_VAL_M", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@1920@macro@PLL_NDEC_VAL_P", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_NDEC_VAL_P", - "location": { - "column": "9", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "PLL_NDEC_VAL_P", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@2013@macro@PLL_NDEC_VAL_M", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_NDEC_VAL_M", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "PLL_NDEC_VAL_M", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@2065@macro@PLL_PDEC_VAL_P", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_PDEC_VAL_P", - "location": { - "column": "9", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "PLL_PDEC_VAL_P", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@2119@macro@PLL_PDEC_VAL_M", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_PDEC_VAL_M", - "location": { - "column": "9", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "PLL_PDEC_VAL_M", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@__Vectors", - "What": "Variable", - "defdec": "Dec", - "display": "__Vectors", - "location": { - "column": "14", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "__Vectors", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@wdtFreqLookup", - "What": "Variable", - "defdec": "Def", - "display": "wdtFreqLookup", - "location": { - "column": "22", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "wdtFreqLookup", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@F@GetWdtOscFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t GetWdtOscFreq(void)", - "location": { - "column": "17", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "GetWdtOscFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@2640@F@GetWdtOscFreq@freq_sel", - "What": "Variable", - "defdec": "Def", - "display": "freq_sel", - "location": { - "column": "13", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "freq_sel", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@2640@F@GetWdtOscFreq@div_sel", - "What": "Variable", - "defdec": "Dec", - "display": "div_sel", - "location": { - "column": "23", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "div_sel", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@F@pllDecodeN", - "What": "Function", - "defdec": "Def", - "display": "uint32_t pllDecodeN(uint32_t)", - "location": { - "column": "17", - "line": "78", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "pllDecodeN", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@3037@F@pllDecodeN@n", - "What": "Variable", - "defdec": "Def", - "display": "n", - "location": { - "column": "14", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "n", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@3037@F@pllDecodeN@x", - "What": "Variable", - "defdec": "Dec", - "display": "x", - "location": { - "column": "17", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "x", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@3037@F@pllDecodeN@i", - "What": "Variable", - "defdec": "Dec", - "display": "i", - "location": { - "column": "20", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@F@pllDecodeP", - "What": "Function", - "defdec": "Def", - "display": "uint32_t pllDecodeP(uint32_t)", - "location": { - "column": "17", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "pllDecodeP", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@3880@F@pllDecodeP@p", - "What": "Variable", - "defdec": "Def", - "display": "p", - "location": { - "column": "14", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "p", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@3880@F@pllDecodeP@x", - "What": "Variable", - "defdec": "Dec", - "display": "x", - "location": { - "column": "17", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "x", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@3880@F@pllDecodeP@i", - "What": "Variable", - "defdec": "Dec", - "display": "i", - "location": { - "column": "20", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@F@pllDecodeM", - "What": "Function", - "defdec": "Def", - "display": "uint32_t pllDecodeM(uint32_t)", - "location": { - "column": "17", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "pllDecodeM", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@4694@F@pllDecodeM@m", - "What": "Variable", - "defdec": "Def", - "display": "m", - "location": { - "column": "14", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "m", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@4694@F@pllDecodeM@i", - "What": "Variable", - "defdec": "Dec", - "display": "i", - "location": { - "column": "17", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@4694@F@pllDecodeM@x", - "What": "Variable", - "defdec": "Dec", - "display": "x", - "location": { - "column": "20", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "x", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@F@findPllPreDiv", - "What": "Function", - "defdec": "Def", - "display": "uint32_t findPllPreDiv(uint32_t, uint32_t)", - "location": { - "column": "17", - "line": "179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "findPllPreDiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@5563@F@findPllPreDiv@preDiv", - "What": "Variable", - "defdec": "Def", - "display": "preDiv", - "location": { - "column": "14", - "line": "181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "preDiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@F@findPllPostDiv", - "What": "Function", - "defdec": "Def", - "display": "uint32_t findPllPostDiv(uint32_t, uint32_t)", - "location": { - "column": "17", - "line": "198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "findPllPostDiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@6073@F@findPllPostDiv@postDiv", - "What": "Variable", - "defdec": "Def", - "display": "postDiv", - "location": { - "column": "14", - "line": "200", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "postDiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@F@findPllMMult", - "What": "Function", - "defdec": "Def", - "display": "uint32_t findPllMMult(uint32_t, uint32_t)", - "location": { - "column": "17", - "line": "217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "findPllMMult", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@6608@F@findPllMMult@mMult", - "What": "Variable", - "defdec": "Def", - "display": "mMult", - "location": { - "column": "14", - "line": "219", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "mMult", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@SystemCoreClock", - "What": "Variable", - "defdec": "Def", - "display": "SystemCoreClock", - "location": { - "column": "10", - "line": "241", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "SystemCoreClock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SystemInit", - "What": "Function", - "defdec": "Def", - "display": "void SystemInit(void)", - "location": { - "column": "6", - "line": "247", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "SystemInit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@__Vectors", - "What": "Variable", - "defdec": "Dec", - "display": "__Vectors", - "location": { - "column": "18", - "line": "253", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "__Vectors", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SystemCoreClockUpdate", - "What": "Function", - "defdec": "Def", - "display": "void SystemCoreClockUpdate(void)", - "location": { - "column": "6", - "line": "263", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "SystemCoreClockUpdate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@7853@F@SystemCoreClockUpdate@clkRate", - "What": "Variable", - "defdec": "Def", - "display": "clkRate", - "location": { - "column": "14", - "line": "264", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "clkRate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@7880@F@SystemCoreClockUpdate@prediv", - "What": "Variable", - "defdec": "Def", - "display": "prediv", - "location": { - "column": "14", - "line": "265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "prediv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@7880@F@SystemCoreClockUpdate@postdiv", - "What": "Variable", - "defdec": "Dec", - "display": "postdiv", - "location": { - "column": "22", - "line": "265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "postdiv", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_LPC51U68.c@7911@F@SystemCoreClockUpdate@workRate", - "What": "Variable", - "defdec": "Def", - "display": "workRate", - "location": { - "column": "14", - "line": "266", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\device\\system_LPC51U68.c" - }, - "name": "workRate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@272@macro@FSL_COMPONENT_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_COMPONENT_ID", - "location": { - "column": "9", - "line": "13", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "FSL_COMPONENT_ID", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@F@CTIMER_GetInstance", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t CTIMER_GetInstance(CTIMER_Type *)", - "location": { - "column": "17", - "line": "26", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER_GetInstance", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@s_ctimerBases", - "What": "Variable", - "defdec": "Def", - "display": "s_ctimerBases", - "location": { - "column": "27", - "line": "32", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "s_ctimerBases", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@s_ctimerClocks", - "What": "Variable", - "defdec": "Def", - "display": "s_ctimerClocks", - "location": { - "column": "30", - "line": "36", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "s_ctimerClocks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@s_ctimerResets", - "What": "Variable", - "defdec": "Def", - "display": "s_ctimerResets", - "location": { - "column": "30", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "s_ctimerResets", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@s_ctimerCallback", - "What": "Variable", - "defdec": "Def", - "display": "s_ctimerCallback", - "location": { - "column": "27", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "s_ctimerCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@ctimerCallbackType", - "What": "Variable", - "defdec": "Def", - "display": "ctimerCallbackType", - "location": { - "column": "31", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "ctimerCallbackType", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@s_ctimerIRQ", - "What": "Variable", - "defdec": "Def", - "display": "s_ctimerIRQ", - "location": { - "column": "24", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "s_ctimerIRQ", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@F@CTIMER_GetInstance", - "What": "Function", - "defdec": "Def", - "display": "uint32_t CTIMER_GetInstance(CTIMER_Type *)", - "location": { - "column": "17", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER_GetInstance", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@2633@F@CTIMER_GetInstance@instance", - "What": "Variable", - "defdec": "Def", - "display": "instance", - "location": { - "column": "14", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "instance", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@2657@F@CTIMER_GetInstance@ctimerArrayCount", - "What": "Variable", - "defdec": "Def", - "display": "ctimerArrayCount", - "location": { - "column": "14", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "ctimerArrayCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER_Init", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_Init(CTIMER_Type *, const ctimer_config_t *)", - "location": { - "column": "6", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER_Init", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER_Deinit", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_Deinit(CTIMER_Type *)", - "location": { - "column": "6", - "line": "119", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER_Deinit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@4502@F@CTIMER_Deinit@index", - "What": "Variable", - "defdec": "Def", - "display": "index", - "location": { - "column": "14", - "line": "121", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "index", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER_GetDefaultConfig", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_GetDefaultConfig(ctimer_config_t *)", - "location": { - "column": "6", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER_GetDefaultConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER_SetupPwm", - "What": "Function", - "defdec": "Def", - "display": "status_t CTIMER_SetupPwm(CTIMER_Type *, ctimer_match_t, uint8_t, uint32_t, uint32_t, bool)", - "location": { - "column": "10", - "line": "181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER_SetupPwm", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@7097@F@CTIMER_SetupPwm@reg", - "What": "Variable", - "defdec": "Def", - "display": "reg", - "location": { - "column": "14", - "line": "190", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "reg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@7116@F@CTIMER_SetupPwm@period", - "What": "Variable", - "defdec": "Def", - "display": "period", - "location": { - "column": "14", - "line": "191", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "period", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@7116@F@CTIMER_SetupPwm@pulsePeriod", - "What": "Variable", - "defdec": "Dec", - "display": "pulsePeriod", - "location": { - "column": "22", - "line": "191", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "pulsePeriod", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@7155@F@CTIMER_SetupPwm@timerClock", - "What": "Variable", - "defdec": "Def", - "display": "timerClock", - "location": { - "column": "14", - "line": "192", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "timerClock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@7212@F@CTIMER_SetupPwm@index", - "What": "Variable", - "defdec": "Def", - "display": "index", - "location": { - "column": "14", - "line": "193", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "index", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER_SetupPwmPeriod", - "What": "Function", - "defdec": "Def", - "display": "status_t CTIMER_SetupPwmPeriod(CTIMER_Type *, ctimer_match_t, uint32_t, uint32_t, bool)", - "location": { - "column": "10", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER_SetupPwmPeriod", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@10088@F@CTIMER_SetupPwmPeriod@reg", - "What": "Variable", - "defdec": "Def", - "display": "reg", - "location": { - "column": "14", - "line": "275", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "reg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@10107@F@CTIMER_SetupPwmPeriod@index", - "What": "Variable", - "defdec": "Def", - "display": "index", - "location": { - "column": "14", - "line": "276", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "index", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER_UpdatePwmDutycycle", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_UpdatePwmDutycycle(CTIMER_Type *, ctimer_match_t, uint8_t)", - "location": { - "column": "6", - "line": "326", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER_UpdatePwmDutycycle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@11850@F@CTIMER_UpdatePwmDutycycle@pulsePeriod", - "What": "Variable", - "defdec": "Def", - "display": "pulsePeriod", - "location": { - "column": "14", - "line": "328", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "pulsePeriod", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@11850@F@CTIMER_UpdatePwmDutycycle@period", - "What": "Variable", - "defdec": "Dec", - "display": "period", - "location": { - "column": "31", - "line": "328", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "period", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER_SetupMatch", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_SetupMatch(CTIMER_Type *, ctimer_match_t, const ctimer_match_config_t *)", - "location": { - "column": "6", - "line": "359", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER_SetupMatch", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@13097@F@CTIMER_SetupMatch@reg", - "What": "Variable", - "defdec": "Def", - "display": "reg", - "location": { - "column": "14", - "line": "365", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "reg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@13116@F@CTIMER_SetupMatch@index", - "What": "Variable", - "defdec": "Def", - "display": "index", - "location": { - "column": "14", - "line": "366", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "index", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER_SetupCapture", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_SetupCapture(CTIMER_Type *, ctimer_capture_channel_t, ctimer_capture_edge_t, bool)", - "location": { - "column": "6", - "line": "407", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER_SetupCapture", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@15195@F@CTIMER_SetupCapture@reg", - "What": "Variable", - "defdec": "Def", - "display": "reg", - "location": { - "column": "14", - "line": "412", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "reg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@15228@F@CTIMER_SetupCapture@index", - "What": "Variable", - "defdec": "Def", - "display": "index", - "location": { - "column": "14", - "line": "413", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "index", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER_RegisterCallBack", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_RegisterCallBack(CTIMER_Type *, ctimer_callback_t *, ctimer_callback_type_t)", - "location": { - "column": "6", - "line": "437", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER_RegisterCallBack", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@16187@F@CTIMER_RegisterCallBack@index", - "What": "Variable", - "defdec": "Def", - "display": "index", - "location": { - "column": "14", - "line": "439", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "index", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER_GenericIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER_GenericIRQHandler(uint32_t)", - "location": { - "column": "6", - "line": "444", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER_GenericIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@16385@F@CTIMER_GenericIRQHandler@int_stat", - "What": "Variable", - "defdec": "Def", - "display": "int_stat", - "location": { - "column": "14", - "line": "446", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "int_stat", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@16385@F@CTIMER_GenericIRQHandler@i", - "What": "Variable", - "defdec": "Dec", - "display": "i", - "location": { - "column": "24", - "line": "446", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_ctimer.c@16385@F@CTIMER_GenericIRQHandler@mask", - "What": "Variable", - "defdec": "Dec", - "display": "mask", - "location": { - "column": "27", - "line": "446", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "mask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER0_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER0_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "487", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER0_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER1_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER1_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "499", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER1_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@CTIMER3_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void CTIMER3_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "523", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_ctimer.c" - }, - "name": "CTIMER3_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_common.c@206@macro@SDK_MEM_MAGIC_NUMBER", - "What": "MacroDef", - "defdec": "Def", - "display": "SDK_MEM_MAGIC_NUMBER", - "location": { - "column": "9", - "line": "11", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "SDK_MEM_MAGIC_NUMBER", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@_mem_align_control_block", - "What": "Struct", - "defdec": "Def", - "display": "_mem_align_control_block", - "location": { - "column": "16", - "line": "13", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "members": [ - { - "ID": "c:@S@_mem_align_control_block@FI@identifier", - "What": "FieldDecl", - "defdec": "Def", - "display": "identifier", - "location": { - "column": "14", - "line": "15", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "identifier", - "origin": "project_file", - "scope": "_mem_align_control_block" - }, - { - "ID": "c:@S@_mem_align_control_block@FI@offset", - "What": "FieldDecl", - "defdec": "Def", - "display": "offset", - "location": { - "column": "14", - "line": "16", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "offset", - "origin": "project_file", - "scope": "_mem_align_control_block" - } - ], - "name": "_mem_align_control_block", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_common.c@T@mem_align_cb_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _mem_align_control_block", - "location": { - "column": "3", - "line": "17", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "mem_align_cb_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_common.c@536@macro@FSL_COMPONENT_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_COMPONENT_ID", - "location": { - "column": "9", - "line": "21", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "FSL_COMPONENT_ID", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@EnableDeepSleepIRQ", - "What": "Function", - "defdec": "Def", - "display": "void EnableDeepSleepIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "EnableDeepSleepIRQ", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_common.c@2856@F@EnableDeepSleepIRQ@intNumber", - "What": "Variable", - "defdec": "Def", - "display": "intNumber", - "location": { - "column": "14", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "intNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_common.c@2905@F@EnableDeepSleepIRQ@index", - "What": "Variable", - "defdec": "Def", - "display": "index", - "location": { - "column": "14", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "index", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DisableDeepSleepIRQ", - "What": "Function", - "defdec": "Def", - "display": "void DisableDeepSleepIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "DisableDeepSleepIRQ", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_common.c@3191@F@DisableDeepSleepIRQ@intNumber", - "What": "Variable", - "defdec": "Def", - "display": "intNumber", - "location": { - "column": "14", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "intNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_common.c@3305@F@DisableDeepSleepIRQ@index", - "What": "Variable", - "defdec": "Def", - "display": "index", - "location": { - "column": "14", - "line": "104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "index", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SDK_Malloc", - "What": "Function", - "defdec": "Def", - "display": "void * SDK_Malloc(size_t, size_t)", - "location": { - "column": "7", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "SDK_Malloc", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_common.c@3629@F@SDK_Malloc@p_cb", - "What": "Variable", - "defdec": "Def", - "display": "p_cb", - "location": { - "column": "21", - "line": "119", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "p_cb", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_common.c@3663@F@SDK_Malloc@alignedsize", - "What": "Variable", - "defdec": "Def", - "display": "alignedsize", - "location": { - "column": "14", - "line": "120", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "alignedsize", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_common.c@3762@F@SDK_Malloc@p_align_addr", - "What": "Variable", - "defdec": "Def", - "display": "p_align_addr", - "location": { - "column": "11", - "line": "121", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "p_align_addr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_common.c@3762@F@SDK_Malloc@p_addr", - "What": "Variable", - "defdec": "Dec", - "display": "p_addr", - "location": { - "column": "26", - "line": "121", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "p_addr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SDK_Free", - "What": "Function", - "defdec": "Def", - "display": "void SDK_Free(void *)", - "location": { - "column": "6", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "SDK_Free", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_common.c@4232@F@SDK_Free@p_cb", - "What": "Variable", - "defdec": "Def", - "display": "p_cb", - "location": { - "column": "21", - "line": "139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_common.c" - }, - "name": "p_cb", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.c@481@macro@FSL_COMPONENT_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_COMPONENT_ID", - "location": { - "column": "9", - "line": "18", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FSL_COMPONENT_ID", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.c@F@FLEXCOMM_SetPeriph", - "What": "Function", - "defdec": "Dec", - "display": "status_t FLEXCOMM_SetPeriph(FLEXCOMM_Type *, FLEXCOMM_PERIPH_T, int)", - "location": { - "column": "17", - "line": "25", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM_SetPeriph", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.c@F@FLEXCOMM_PeripheralIsPresent", - "What": "Function", - "defdec": "Dec", - "display": "bool FLEXCOMM_PeripheralIsPresent(FLEXCOMM_Type *, FLEXCOMM_PERIPH_T)", - "location": { - "column": "13", - "line": "28", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM_PeripheralIsPresent", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.c@s_flexcommIrqHandler", - "What": "Variable", - "defdec": "Dec", - "display": "s_flexcommIrqHandler", - "location": { - "column": "31", - "line": "35", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "s_flexcommIrqHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.c@s_flexcommHandle", - "What": "Variable", - "defdec": "Dec", - "display": "s_flexcommHandle", - "location": { - "column": "14", - "line": "38", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "s_flexcommHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@kFlexcommIrqs", - "What": "Variable", - "defdec": "Def", - "display": "kFlexcommIrqs", - "location": { - "column": "17", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "kFlexcommIrqs", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.c@s_flexcommBaseAddrs", - "What": "Variable", - "defdec": "Def", - "display": "s_flexcommBaseAddrs", - "location": { - "column": "23", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "s_flexcommBaseAddrs", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.c@s_flexcommClocks", - "What": "Variable", - "defdec": "Def", - "display": "s_flexcommClocks", - "location": { - "column": "30", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "s_flexcommClocks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.c@s_flexcommResets", - "What": "Variable", - "defdec": "Def", - "display": "s_flexcommResets", - "location": { - "column": "30", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "s_flexcommResets", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.c@F@FLEXCOMM_PeripheralIsPresent", - "What": "Function", - "defdec": "Def", - "display": "bool FLEXCOMM_PeripheralIsPresent(FLEXCOMM_Type *, FLEXCOMM_PERIPH_T)", - "location": { - "column": "13", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM_PeripheralIsPresent", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM_GetInstance", - "What": "Function", - "defdec": "Def", - "display": "uint32_t FLEXCOMM_GetInstance(void *)", - "location": { - "column": "10", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM_GetInstance", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.c@3236@F@FLEXCOMM_GetInstance@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "9", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.c@F@FLEXCOMM_SetPeriph", - "What": "Function", - "defdec": "Def", - "display": "status_t FLEXCOMM_SetPeriph(FLEXCOMM_Type *, FLEXCOMM_PERIPH_T, int)", - "location": { - "column": "17", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM_SetPeriph", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM_Init", - "What": "Function", - "defdec": "Def", - "display": "status_t FLEXCOMM_Init(void *, FLEXCOMM_PERIPH_T)", - "location": { - "column": "10", - "line": "128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM_Init", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.c@4385@F@FLEXCOMM_Init@idx", - "What": "Variable", - "defdec": "Def", - "display": "idx", - "location": { - "column": "9", - "line": "130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "idx", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM_SetIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void FLEXCOMM_SetIRQHandler(void *, flexcomm_irq_handler_t, void *)", - "location": { - "column": "6", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM_SetIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_flexcomm.c@5265@F@FLEXCOMM_SetIRQHandler@instance", - "What": "Variable", - "defdec": "Def", - "display": "instance", - "location": { - "column": "14", - "line": "155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "instance", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM0_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void FLEXCOMM0_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM0_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM1_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void FLEXCOMM1_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "186", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM1_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM2_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void FLEXCOMM2_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "199", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM2_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM3_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void FLEXCOMM3_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "212", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM3_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM4_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void FLEXCOMM4_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "225", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM4_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM5_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void FLEXCOMM5_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "239", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM5_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM6_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void FLEXCOMM6_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "252", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM6_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@FLEXCOMM7_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void FLEXCOMM7_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_flexcomm.c" - }, - "name": "FLEXCOMM7_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_gpio.c@270@macro@FSL_COMPONENT_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_COMPONENT_ID", - "location": { - "column": "9", - "line": "13", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.c" - }, - "name": "FSL_COMPONENT_ID", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_gpio.c@s_gpioClockName", - "What": "Variable", - "defdec": "Def", - "display": "s_gpioClockName", - "location": { - "column": "30", - "line": "21", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.c" - }, - "name": "s_gpioClockName", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_gpio.c@s_gpioResets", - "What": "Variable", - "defdec": "Def", - "display": "s_gpioResets", - "location": { - "column": "30", - "line": "26", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.c" - }, - "name": "s_gpioResets", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@GPIO_PortInit", - "What": "Function", - "defdec": "Def", - "display": "void GPIO_PortInit(GPIO_Type *, uint32_t)", - "location": { - "column": "6", - "line": "43", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.c" - }, - "name": "GPIO_PortInit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@GPIO_PinInit", - "What": "Function", - "defdec": "Def", - "display": "void GPIO_PinInit(GPIO_Type *, uint32_t, uint32_t, const gpio_pin_config_t *)", - "location": { - "column": "6", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_gpio.c" - }, - "name": "GPIO_PinInit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@270@macro@FSL_COMPONENT_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_COMPONENT_ID", - "location": { - "column": "9", - "line": "13", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "FSL_COMPONENT_ID", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@s_pintIRQ", - "What": "Variable", - "defdec": "Def", - "display": "s_pintIRQ", - "location": { - "column": "24", - "line": "30", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "s_pintIRQ", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@s_pintCallback", - "What": "Variable", - "defdec": "Dec", - "display": "s_pintCallback", - "location": { - "column": "18", - "line": "33", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "s_pintCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PINT_Init", - "What": "Function", - "defdec": "Def", - "display": "void PINT_Init(PINT_Type *)", - "location": { - "column": "6", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PINT_Init", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@1707@F@PINT_Init@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "14", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@1724@F@PINT_Init@pmcfg", - "What": "Variable", - "defdec": "Def", - "display": "pmcfg", - "location": { - "column": "14", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pmcfg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@1745@F@PINT_Init@pintcount", - "What": "Variable", - "defdec": "Def", - "display": "pintcount", - "location": { - "column": "13", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pintcount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PINT_PinInterruptConfig", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PinInterruptConfig(PINT_Type *, pint_pin_int_t, pint_pin_enable_t, pint_cb_t)", - "location": { - "column": "6", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PINT_PinInterruptConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PINT_PinInterruptGetConfig", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PinInterruptGetConfig(PINT_Type *, pint_pin_int_t, pint_pin_enable_t *, pint_cb_t *)", - "location": { - "column": "6", - "line": "200", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PINT_PinInterruptGetConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@6837@F@PINT_PinInterruptGetConfig@mask", - "What": "Variable", - "defdec": "Def", - "display": "mask", - "location": { - "column": "14", - "line": "202", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "mask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@6857@F@PINT_PinInterruptGetConfig@level", - "What": "Variable", - "defdec": "Def", - "display": "level", - "location": { - "column": "10", - "line": "203", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "level", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PINT_PatternMatchConfig", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PatternMatchConfig(PINT_Type *, pint_pmatch_bslice_t, pint_pmatch_cfg_t *)", - "location": { - "column": "6", - "line": "268", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PINT_PatternMatchConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@8482@F@PINT_PatternMatchConfig@src_shift", - "What": "Variable", - "defdec": "Def", - "display": "src_shift", - "location": { - "column": "14", - "line": "270", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "src_shift", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@8507@F@PINT_PatternMatchConfig@cfg_shift", - "What": "Variable", - "defdec": "Def", - "display": "cfg_shift", - "location": { - "column": "14", - "line": "271", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "cfg_shift", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@8532@F@PINT_PatternMatchConfig@pmcfg", - "What": "Variable", - "defdec": "Def", - "display": "pmcfg", - "location": { - "column": "14", - "line": "272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pmcfg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@8553@F@PINT_PatternMatchConfig@tmp_src_shift", - "What": "Variable", - "defdec": "Def", - "display": "tmp_src_shift", - "location": { - "column": "14", - "line": "273", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "tmp_src_shift", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@8609@F@PINT_PatternMatchConfig@tmp_cfg_shift", - "What": "Variable", - "defdec": "Def", - "display": "tmp_cfg_shift", - "location": { - "column": "14", - "line": "274", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "tmp_cfg_shift", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PINT_PatternMatchGetConfig", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PatternMatchGetConfig(PINT_Type *, pint_pmatch_bslice_t, pint_pmatch_cfg_t *)", - "location": { - "column": "6", - "line": "318", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PINT_PatternMatchGetConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@9950@F@PINT_PatternMatchGetConfig@src_shift", - "What": "Variable", - "defdec": "Def", - "display": "src_shift", - "location": { - "column": "14", - "line": "320", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "src_shift", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@9975@F@PINT_PatternMatchGetConfig@cfg_shift", - "What": "Variable", - "defdec": "Def", - "display": "cfg_shift", - "location": { - "column": "14", - "line": "321", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "cfg_shift", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@10000@F@PINT_PatternMatchGetConfig@tmp_src_shift", - "What": "Variable", - "defdec": "Def", - "display": "tmp_src_shift", - "location": { - "column": "14", - "line": "322", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "tmp_src_shift", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@10056@F@PINT_PatternMatchGetConfig@tmp_cfg_shift", - "What": "Variable", - "defdec": "Def", - "display": "tmp_cfg_shift", - "location": { - "column": "14", - "line": "323", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "tmp_cfg_shift", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PINT_PatternMatchResetDetectLogic", - "What": "Function", - "defdec": "Def", - "display": "uint32_t PINT_PatternMatchResetDetectLogic(PINT_Type *)", - "location": { - "column": "10", - "line": "354", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PINT_PatternMatchResetDetectLogic", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@11168@F@PINT_PatternMatchResetDetectLogic@pmctrl", - "What": "Variable", - "defdec": "Def", - "display": "pmctrl", - "location": { - "column": "14", - "line": "356", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pmctrl", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@11190@F@PINT_PatternMatchResetDetectLogic@pmstatus", - "What": "Variable", - "defdec": "Def", - "display": "pmstatus", - "location": { - "column": "14", - "line": "357", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pmstatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@11214@F@PINT_PatternMatchResetDetectLogic@pmsrc", - "What": "Variable", - "defdec": "Def", - "display": "pmsrc", - "location": { - "column": "14", - "line": "358", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pmsrc", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PINT_PinInterruptClrStatus", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PinInterruptClrStatus(PINT_Type *, pint_pin_int_t)", - "location": { - "column": "6", - "line": "381", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PINT_PinInterruptClrStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@11866@F@PINT_PinInterruptClrStatus@pinIntMode", - "What": "Variable", - "defdec": "Def", - "display": "pinIntMode", - "location": { - "column": "14", - "line": "383", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pinIntMode", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@11934@F@PINT_PinInterruptClrStatus@pinIntStatus", - "What": "Variable", - "defdec": "Def", - "display": "pinIntStatus", - "location": { - "column": "14", - "line": "384", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pinIntStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PINT_PinInterruptClrStatusAll", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PinInterruptClrStatusAll(PINT_Type *)", - "location": { - "column": "6", - "line": "402", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PINT_PinInterruptClrStatusAll", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@12513@F@PINT_PinInterruptClrStatusAll@pinIntMode", - "What": "Variable", - "defdec": "Def", - "display": "pinIntMode", - "location": { - "column": "14", - "line": "404", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pinIntMode", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@12545@F@PINT_PinInterruptClrStatusAll@pinIntStatus", - "What": "Variable", - "defdec": "Def", - "display": "pinIntStatus", - "location": { - "column": "14", - "line": "405", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pinIntStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@12577@F@PINT_PinInterruptClrStatusAll@mask", - "What": "Variable", - "defdec": "Def", - "display": "mask", - "location": { - "column": "14", - "line": "406", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "mask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@12609@F@PINT_PinInterruptClrStatusAll@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "14", - "line": "407", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PINT_EnableCallback", - "What": "Function", - "defdec": "Def", - "display": "void PINT_EnableCallback(PINT_Type *)", - "location": { - "column": "6", - "line": "434", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PINT_EnableCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@13421@F@PINT_EnableCallback@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "14", - "line": "436", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PINT_EnableCallbackByIndex", - "What": "Function", - "defdec": "Def", - "display": "void PINT_EnableCallbackByIndex(PINT_Type *, pint_pin_int_t)", - "location": { - "column": "6", - "line": "458", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PINT_EnableCallbackByIndex", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PINT_DisableCallback", - "What": "Function", - "defdec": "Def", - "display": "void PINT_DisableCallback(PINT_Type *)", - "location": { - "column": "6", - "line": "477", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PINT_DisableCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@14509@F@PINT_DisableCallback@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "14", - "line": "479", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PINT_DisableCallbackByIndex", - "What": "Function", - "defdec": "Def", - "display": "void PINT_DisableCallbackByIndex(PINT_Type *, pint_pin_int_t)", - "location": { - "column": "6", - "line": "501", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PINT_DisableCallbackByIndex", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PINT_Deinit", - "What": "Function", - "defdec": "Def", - "display": "void PINT_Deinit(PINT_Type *)", - "location": { - "column": "6", - "line": "519", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PINT_Deinit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@15489@F@PINT_Deinit@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "14", - "line": "521", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PIN_INT0_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void PIN_INT0_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "647", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PIN_INT0_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@20358@F@PIN_INT0_DriverIRQHandler@pmstatus", - "What": "Variable", - "defdec": "Def", - "display": "pmstatus", - "location": { - "column": "14", - "line": "649", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pmstatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PIN_INT1_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void PIN_INT1_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "671", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PIN_INT1_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@21144@F@PIN_INT1_DriverIRQHandler@pmstatus", - "What": "Variable", - "defdec": "Def", - "display": "pmstatus", - "location": { - "column": "14", - "line": "673", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pmstatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PIN_INT2_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void PIN_INT2_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "696", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PIN_INT2_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@21938@F@PIN_INT2_DriverIRQHandler@pmstatus", - "What": "Variable", - "defdec": "Def", - "display": "pmstatus", - "location": { - "column": "14", - "line": "698", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pmstatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@PIN_INT3_DriverIRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void PIN_INT3_DriverIRQHandler(void)", - "location": { - "column": "6", - "line": "721", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "PIN_INT3_DriverIRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.c@22732@F@PIN_INT3_DriverIRQHandler@pmstatus", - "What": "Variable", - "defdec": "Def", - "display": "pmstatus", - "location": { - "column": "14", - "line": "723", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.c" - }, - "name": "pmstatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@333@macro@FSL_COMPONENT_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_COMPONENT_ID", - "location": { - "column": "9", - "line": "15", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "FSL_COMPONENT_ID", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@_usart_transfer_states", - "What": "Enum", - "defdec": "Def", - "display": "_usart_transfer_states", - "fields": [ - { - "ID": "c:@E@_usart_transfer_states@kUSART_TxIdle", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxIdle", - "location": { - "column": "5", - "line": "20", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "kUSART_TxIdle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@_usart_transfer_states@kUSART_TxBusy", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_TxBusy", - "location": { - "column": "5", - "line": "21", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "kUSART_TxBusy", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@_usart_transfer_states@kUSART_RxIdle", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxIdle", - "location": { - "column": "5", - "line": "22", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "kUSART_RxIdle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@_usart_transfer_states@kUSART_RxBusy", - "What": "Enumerator", - "defdec": "Def", - "display": "kUSART_RxBusy", - "location": { - "column": "5", - "line": "23", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "kUSART_RxBusy", - "origin": "project_file", - "scope": null - } - ], - "location": { - "column": "6", - "line": "18", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "_usart_transfer_states", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@s_usartIRQ", - "What": "Variable", - "defdec": "Def", - "display": "s_usartIRQ", - "location": { - "column": "24", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "s_usartIRQ", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@s_usartBaseAddrs", - "What": "Variable", - "defdec": "Def", - "display": "s_usartBaseAddrs", - "location": { - "column": "23", - "line": "34", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "s_usartBaseAddrs", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_GetInstance", - "What": "Function", - "defdec": "Def", - "display": "uint32_t USART_GetInstance(USART_Type *)", - "location": { - "column": "10", - "line": "42", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_GetInstance", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@1343@F@USART_GetInstance@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "9", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_TransferGetRxRingBufferLength", - "What": "Function", - "defdec": "Def", - "display": "size_t USART_TransferGetRxRingBufferLength(usart_handle_t *)", - "location": { - "column": "8", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_TransferGetRxRingBufferLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@1804@F@USART_TransferGetRxRingBufferLength@size", - "What": "Variable", - "defdec": "Def", - "display": "size", - "location": { - "column": "12", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "size", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@F@USART_TransferIsRxRingBufferFull", - "What": "Function", - "defdec": "Def", - "display": "bool USART_TransferIsRxRingBufferFull(usart_handle_t *)", - "location": { - "column": "13", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_TransferIsRxRingBufferFull", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@2263@F@USART_TransferIsRxRingBufferFull@full", - "What": "Variable", - "defdec": "Def", - "display": "full", - "location": { - "column": "10", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "full", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_TransferStartRingBuffer", - "What": "Function", - "defdec": "Def", - "display": "void USART_TransferStartRingBuffer(USART_Type *, usart_handle_t *, uint8_t *, size_t)", - "location": { - "column": "6", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_TransferStartRingBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_TransferStopRingBuffer", - "What": "Function", - "defdec": "Def", - "display": "void USART_TransferStopRingBuffer(USART_Type *, usart_handle_t *)", - "location": { - "column": "6", - "line": "141", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_TransferStopRingBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_Init", - "What": "Function", - "defdec": "Def", - "display": "status_t USART_Init(USART_Type *, const usart_config_t *, uint32_t)", - "location": { - "column": "10", - "line": "178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_Init", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@5836@F@USART_Init@result", - "What": "Variable", - "defdec": "Def", - "display": "result", - "location": { - "column": "9", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "result", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_Deinit", - "What": "Function", - "defdec": "Def", - "display": "void USART_Deinit(USART_Type *)", - "location": { - "column": "6", - "line": "242", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_Deinit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_GetDefaultConfig", - "What": "Function", - "defdec": "Def", - "display": "void USART_GetDefaultConfig(usart_config_t *)", - "location": { - "column": "6", - "line": "271", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_GetDefaultConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_SetBaudRate", - "What": "Function", - "defdec": "Def", - "display": "status_t USART_SetBaudRate(USART_Type *, uint32_t, uint32_t)", - "location": { - "column": "10", - "line": "310", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_SetBaudRate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@10822@F@USART_SetBaudRate@best_diff", - "What": "Variable", - "defdec": "Def", - "display": "best_diff", - "location": { - "column": "14", - "line": "312", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "best_diff", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@10822@F@USART_SetBaudRate@best_osrval", - "What": "Variable", - "defdec": "Dec", - "display": "best_osrval", - "location": { - "column": "40", - "line": "312", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "best_osrval", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@10822@F@USART_SetBaudRate@best_brgval", - "What": "Variable", - "defdec": "Dec", - "display": "best_brgval", - "location": { - "column": "59", - "line": "312", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "best_brgval", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@10909@F@USART_SetBaudRate@osrval", - "What": "Variable", - "defdec": "Def", - "display": "osrval", - "location": { - "column": "14", - "line": "313", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "osrval", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@10909@F@USART_SetBaudRate@brgval", - "What": "Variable", - "defdec": "Dec", - "display": "brgval", - "location": { - "column": "22", - "line": "313", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "brgval", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@10909@F@USART_SetBaudRate@diff", - "What": "Variable", - "defdec": "Dec", - "display": "diff", - "location": { - "column": "30", - "line": "313", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "diff", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@10909@F@USART_SetBaudRate@baudrate", - "What": "Variable", - "defdec": "Dec", - "display": "baudrate", - "location": { - "column": "36", - "line": "313", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "baudrate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_WriteBlocking", - "What": "Function", - "defdec": "Def", - "display": "void USART_WriteBlocking(USART_Type *, const uint8_t *, size_t)", - "location": { - "column": "6", - "line": "377", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_WriteBlocking", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_ReadBlocking", - "What": "Function", - "defdec": "Def", - "display": "status_t USART_ReadBlocking(USART_Type *, uint8_t *, size_t)", - "location": { - "column": "10", - "line": "420", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_ReadBlocking", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@14473@F@USART_ReadBlocking@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "14", - "line": "422", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_TransferCreateHandle", - "What": "Function", - "defdec": "Def", - "display": "status_t USART_TransferCreateHandle(USART_Type *, usart_handle_t *, usart_transfer_callback_t, void *)", - "location": { - "column": "10", - "line": "485", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_TransferCreateHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@16650@F@USART_TransferCreateHandle@instance", - "What": "Variable", - "defdec": "Def", - "display": "instance", - "location": { - "column": "13", - "line": "490", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "instance", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_TransferSendNonBlocking", - "What": "Function", - "defdec": "Def", - "display": "status_t USART_TransferSendNonBlocking(USART_Type *, usart_handle_t *, usart_transfer_t *)", - "location": { - "column": "10", - "line": "538", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_TransferSendNonBlocking", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_TransferAbortSend", - "What": "Function", - "defdec": "Def", - "display": "void USART_TransferAbortSend(USART_Type *, usart_handle_t *)", - "location": { - "column": "6", - "line": "579", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_TransferAbortSend", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_TransferGetSendCount", - "What": "Function", - "defdec": "Def", - "display": "status_t USART_TransferGetSendCount(USART_Type *, usart_handle_t *, uint32_t *)", - "location": { - "column": "10", - "line": "605", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_TransferGetSendCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_TransferReceiveNonBlocking", - "What": "Function", - "defdec": "Def", - "display": "status_t USART_TransferReceiveNonBlocking(USART_Type *, usart_handle_t *, usart_transfer_t *, size_t *)", - "location": { - "column": "10", - "line": "646", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_TransferReceiveNonBlocking", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@23216@F@USART_TransferReceiveNonBlocking@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "14", - "line": "651", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@23300@F@USART_TransferReceiveNonBlocking@bytesToCopy", - "What": "Variable", - "defdec": "Def", - "display": "bytesToCopy", - "location": { - "column": "12", - "line": "653", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "bytesToCopy", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@23368@F@USART_TransferReceiveNonBlocking@bytesToReceive", - "What": "Variable", - "defdec": "Def", - "display": "bytesToReceive", - "location": { - "column": "12", - "line": "655", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "bytesToReceive", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@23447@F@USART_TransferReceiveNonBlocking@bytesCurrentReceived", - "What": "Variable", - "defdec": "Def", - "display": "bytesCurrentReceived", - "location": { - "column": "12", - "line": "657", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "bytesCurrentReceived", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@23481@F@USART_TransferReceiveNonBlocking@regPrimask", - "What": "Variable", - "defdec": "Def", - "display": "regPrimask", - "location": { - "column": "14", - "line": "658", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "regPrimask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_TransferAbortReceive", - "What": "Function", - "defdec": "Def", - "display": "void USART_TransferAbortReceive(USART_Type *, usart_handle_t *)", - "location": { - "column": "6", - "line": "765", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_TransferAbortReceive", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_TransferGetReceiveCount", - "What": "Function", - "defdec": "Def", - "display": "status_t USART_TransferGetReceiveCount(USART_Type *, usart_handle_t *, uint32_t *)", - "location": { - "column": "10", - "line": "794", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_TransferGetReceiveCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@USART_TransferHandleIRQ", - "What": "Function", - "defdec": "Def", - "display": "void USART_TransferHandleIRQ(USART_Type *, usart_handle_t *)", - "location": { - "column": "6", - "line": "817", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "USART_TransferHandleIRQ", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@29447@F@USART_TransferHandleIRQ@receiveEnabled", - "What": "Variable", - "defdec": "Def", - "display": "receiveEnabled", - "location": { - "column": "10", - "line": "822", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "receiveEnabled", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_usart.c@29522@F@USART_TransferHandleIRQ@sendEnabled", - "What": "Variable", - "defdec": "Def", - "display": "sendEnabled", - "location": { - "column": "10", - "line": "823", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_usart.c" - }, - "name": "sendEnabled", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_pint.h@194@macro@_FSL_PINT_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_FSL_PINT_H_", - "location": { - "column": "9", - "line": "10", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "_FSL_PINT_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@527@macro@FSL_PINT_DRIVER_VERSION", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_PINT_DRIVER_VERSION", - "location": { - "column": "9", - "line": "27", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "FSL_PINT_DRIVER_VERSION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@666@macro@PINT_PIN_INT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PIN_INT_COUNT", - "location": { - "column": "9", - "line": "31", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PIN_INT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@756@macro@SEC_PINT_PIN_INT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "SEC_PINT_PIN_INT_COUNT", - "location": { - "column": "9", - "line": "34", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "SEC_PINT_PIN_INT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@842@macro@PINT_INPUT_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_INPUT_COUNT", - "location": { - "column": "9", - "line": "37", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_INPUT_COUNT", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@918@macro@PININT_BITSLICE_SRC_START", - "What": "MacroDef", - "defdec": "Def", - "display": "PININT_BITSLICE_SRC_START", - "location": { - "column": "9", - "line": "40", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PININT_BITSLICE_SRC_START", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@956@macro@PININT_BITSLICE_SRC_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PININT_BITSLICE_SRC_MASK", - "location": { - "column": "9", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PININT_BITSLICE_SRC_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@1047@macro@PININT_BITSLICE_CFG_START", - "What": "MacroDef", - "defdec": "Def", - "display": "PININT_BITSLICE_CFG_START", - "location": { - "column": "9", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PININT_BITSLICE_CFG_START", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@1085@macro@PININT_BITSLICE_CFG_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PININT_BITSLICE_CFG_MASK", - "location": { - "column": "9", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PININT_BITSLICE_CFG_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@1122@macro@PININT_BITSLICE_ENDP_MASK", - "What": "MacroDef", - "defdec": "Def", - "display": "PININT_BITSLICE_ENDP_MASK", - "location": { - "column": "9", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PININT_BITSLICE_ENDP_MASK", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@1162@macro@PINT_PIN_INT_LEVEL", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PIN_INT_LEVEL", - "location": { - "column": "9", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PIN_INT_LEVEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@1196@macro@PINT_PIN_INT_EDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PIN_INT_EDGE", - "location": { - "column": "9", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PIN_INT_EDGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@1229@macro@PINT_PIN_INT_FALL_OR_HIGH_LEVEL", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PIN_INT_FALL_OR_HIGH_LEVEL", - "location": { - "column": "9", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PIN_INT_FALL_OR_HIGH_LEVEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@1276@macro@PINT_PIN_INT_RISE", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PIN_INT_RISE", - "location": { - "column": "9", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PIN_INT_RISE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@1309@macro@PINT_PIN_RISE_EDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PIN_RISE_EDGE", - "location": { - "column": "9", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PIN_RISE_EDGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@1377@macro@PINT_PIN_FALL_EDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PIN_FALL_EDGE", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PIN_FALL_EDGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@1459@macro@PINT_PIN_BOTH_EDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PIN_BOTH_EDGE", - "location": { - "column": "9", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PIN_BOTH_EDGE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@1561@macro@PINT_PIN_LOW_LEVEL", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PIN_LOW_LEVEL", - "location": { - "column": "9", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PIN_LOW_LEVEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@1610@macro@PINT_PIN_HIGH_LEVEL", - "What": "MacroDef", - "defdec": "Def", - "display": "PINT_PIN_HIGH_LEVEL", - "location": { - "column": "9", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PIN_HIGH_LEVEL", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pin_enable", - "What": "Enum", - "defdec": "Def", - "display": "_pint_pin_enable", - "fields": [ - { - "ID": "c:@E@_pint_pin_enable@kPINT_PinIntEnableNone", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PinIntEnableNone", - "location": { - "column": "5", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PinIntEnableNone", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pin_enable@kPINT_PinIntEnableRiseEdge", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PinIntEnableRiseEdge", - "location": { - "column": "5", - "line": "62", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PinIntEnableRiseEdge", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pin_enable@kPINT_PinIntEnableFallEdge", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PinIntEnableFallEdge", - "location": { - "column": "5", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PinIntEnableFallEdge", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pin_enable@kPINT_PinIntEnableBothEdges", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PinIntEnableBothEdges", - "location": { - "column": "5", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PinIntEnableBothEdges", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pin_enable@kPINT_PinIntEnableLowLevel", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PinIntEnableLowLevel", - "location": { - "column": "5", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PinIntEnableLowLevel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pin_enable@kPINT_PinIntEnableHighLevel", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PinIntEnableHighLevel", - "location": { - "column": "5", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PinIntEnableHighLevel", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "_pint_pin_enable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@T@pint_pin_enable_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _pint_pin_enable", - "location": { - "column": "3", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "pint_pin_enable_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_int", - "What": "Enum", - "defdec": "Def", - "display": "_pint_int", - "fields": [ - { - "ID": "c:@E@_pint_int@kPINT_PinInt0", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PinInt0", - "location": { - "column": "5", - "line": "72", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PinInt0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_int@kPINT_PinInt1", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PinInt1", - "location": { - "column": "5", - "line": "74", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PinInt1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_int@kPINT_PinInt2", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PinInt2", - "location": { - "column": "5", - "line": "77", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PinInt2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_int@kPINT_PinInt3", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PinInt3", - "location": { - "column": "5", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PinInt3", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "_pint_int", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@T@pint_pin_int_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _pint_int", - "location": { - "column": "3", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "pint_pin_int_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_input_src", - "What": "Enum", - "defdec": "Def", - "display": "_pint_pmatch_input_src", - "fields": [ - { - "ID": "c:@E@_pint_pmatch_input_src@kPINT_PatternMatchInp0Src", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchInp0Src", - "location": { - "column": "5", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchInp0Src", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_input_src@kPINT_PatternMatchInp1Src", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchInp1Src", - "location": { - "column": "5", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchInp1Src", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_input_src@kPINT_PatternMatchInp2Src", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchInp2Src", - "location": { - "column": "5", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchInp2Src", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_input_src@kPINT_PatternMatchInp3Src", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchInp3Src", - "location": { - "column": "5", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchInp3Src", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_input_src@kPINT_PatternMatchInp4Src", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchInp4Src", - "location": { - "column": "5", - "line": "109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchInp4Src", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_input_src@kPINT_PatternMatchInp5Src", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchInp5Src", - "location": { - "column": "5", - "line": "110", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchInp5Src", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_input_src@kPINT_PatternMatchInp6Src", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchInp6Src", - "location": { - "column": "5", - "line": "111", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchInp6Src", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_input_src@kPINT_PatternMatchInp7Src", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchInp7Src", - "location": { - "column": "5", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchInp7Src", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "_pint_pmatch_input_src", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@T@pint_pmatch_input_src_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _pint_pmatch_input_src", - "location": { - "column": "3", - "line": "113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "pint_pmatch_input_src_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_bslice", - "What": "Enum", - "defdec": "Def", - "display": "_pint_pmatch_bslice", - "fields": [ - { - "ID": "c:@E@_pint_pmatch_bslice@kPINT_PatternMatchBSlice0", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchBSlice0", - "location": { - "column": "5", - "line": "118", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchBSlice0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_bslice@kPINT_PatternMatchBSlice1", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchBSlice1", - "location": { - "column": "5", - "line": "120", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchBSlice1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_bslice@kPINT_PatternMatchBSlice2", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchBSlice2", - "location": { - "column": "5", - "line": "123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchBSlice2", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_bslice@kPINT_PatternMatchBSlice3", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchBSlice3", - "location": { - "column": "5", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchBSlice3", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "_pint_pmatch_bslice", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@T@pint_pmatch_bslice_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _pint_pmatch_bslice", - "location": { - "column": "3", - "line": "146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "pint_pmatch_bslice_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_bslice_cfg", - "What": "Enum", - "defdec": "Def", - "display": "_pint_pmatch_bslice_cfg", - "fields": [ - { - "ID": "c:@E@_pint_pmatch_bslice_cfg@kPINT_PatternMatchAlways", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchAlways", - "location": { - "column": "5", - "line": "151", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchAlways", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_bslice_cfg@kPINT_PatternMatchStickyRise", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchStickyRise", - "location": { - "column": "5", - "line": "152", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchStickyRise", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_bslice_cfg@kPINT_PatternMatchStickyFall", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchStickyFall", - "location": { - "column": "5", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchStickyFall", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_bslice_cfg@kPINT_PatternMatchStickyBothEdges", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchStickyBothEdges", - "location": { - "column": "5", - "line": "154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchStickyBothEdges", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_bslice_cfg@kPINT_PatternMatchHigh", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchHigh", - "location": { - "column": "5", - "line": "155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchHigh", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_bslice_cfg@kPINT_PatternMatchLow", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchLow", - "location": { - "column": "5", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchLow", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_bslice_cfg@kPINT_PatternMatchNever", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchNever", - "location": { - "column": "5", - "line": "157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchNever", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@E@_pint_pmatch_bslice_cfg@kPINT_PatternMatchBothEdges", - "What": "Enumerator", - "defdec": "Def", - "display": "kPINT_PatternMatchBothEdges", - "location": { - "column": "5", - "line": "158", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "kPINT_PatternMatchBothEdges", - "origin": "user_include", - "scope": null - } - ], - "location": { - "column": "14", - "line": "149", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "_pint_pmatch_bslice_cfg", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@T@pint_pmatch_bslice_cfg_t", - "What": "Typedef", - "defdec": "Def", - "display": "enum _pint_pmatch_bslice_cfg", - "location": { - "column": "3", - "line": "159", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "pint_pmatch_bslice_cfg_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@T@pint_cb_t", - "What": "Typedef", - "defdec": "Def", - "display": "void (*)(pint_pin_int_t, uint32_t)", - "location": { - "column": "16", - "line": "162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "pint_cb_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@_pint_pmatch_cfg", - "What": "Struct", - "defdec": "Def", - "display": "_pint_pmatch_cfg", - "location": { - "column": "16", - "line": "164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "members": [ - { - "ID": "c:@S@_pint_pmatch_cfg@FI@bs_src", - "What": "FieldDecl", - "defdec": "Def", - "display": "bs_src", - "location": { - "column": "29", - "line": "166", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "bs_src", - "origin": "user_include", - "scope": "_pint_pmatch_cfg" - }, - { - "ID": "c:@S@_pint_pmatch_cfg@FI@bs_cfg", - "What": "FieldDecl", - "defdec": "Def", - "display": "bs_cfg", - "location": { - "column": "30", - "line": "167", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "bs_cfg", - "origin": "user_include", - "scope": "_pint_pmatch_cfg" - }, - { - "ID": "c:@S@_pint_pmatch_cfg@FI@end_point", - "What": "FieldDecl", - "defdec": "Def", - "display": "end_point", - "location": { - "column": "10", - "line": "168", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "end_point", - "origin": "user_include", - "scope": "_pint_pmatch_cfg" - }, - { - "ID": "c:@S@_pint_pmatch_cfg@FI@callback", - "What": "FieldDecl", - "defdec": "Def", - "display": "callback", - "location": { - "column": "15", - "line": "169", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "callback", - "origin": "user_include", - "scope": "_pint_pmatch_cfg" - } - ], - "name": "_pint_pmatch_cfg", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@T@pint_pmatch_cfg_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _pint_pmatch_cfg", - "location": { - "column": "3", - "line": "170", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "pint_pmatch_cfg_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@PINT_Init", - "What": "Function", - "defdec": "Dec", - "display": "void PINT_Init(PINT_Type *)", - "location": { - "column": "6", - "line": "189", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_Init", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@PINT_PinInterruptConfig", - "What": "Function", - "defdec": "Dec", - "display": "void PINT_PinInterruptConfig(PINT_Type *, pint_pin_int_t, pint_pin_enable_t, pint_cb_t)", - "location": { - "column": "6", - "line": "203", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@PINT_PinInterruptGetConfig", - "What": "Function", - "defdec": "Dec", - "display": "void PINT_PinInterruptGetConfig(PINT_Type *, pint_pin_int_t, pint_pin_enable_t *, pint_cb_t *)", - "location": { - "column": "6", - "line": "217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptGetConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@PINT_PinInterruptClrStatus", - "What": "Function", - "defdec": "Dec", - "display": "void PINT_PinInterruptClrStatus(PINT_Type *, pint_pin_int_t)", - "location": { - "column": "6", - "line": "229", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptClrStatus", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PinInterruptGetStatus", - "What": "Function", - "defdec": "Def", - "display": "uint32_t PINT_PinInterruptGetStatus(PINT_Type *, pint_pin_int_t)", - "location": { - "column": "24", - "line": "241", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptGetStatus", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@PINT_PinInterruptClrStatusAll", - "What": "Function", - "defdec": "Dec", - "display": "void PINT_PinInterruptClrStatusAll(PINT_Type *)", - "location": { - "column": "6", - "line": "255", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptClrStatusAll", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PinInterruptGetStatusAll", - "What": "Function", - "defdec": "Def", - "display": "uint32_t PINT_PinInterruptGetStatusAll(PINT_Type *)", - "location": { - "column": "24", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptGetStatusAll", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PinInterruptClrFallFlag", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PinInterruptClrFallFlag(PINT_Type *, pint_pin_int_t)", - "location": { - "column": "20", - "line": "282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptClrFallFlag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PinInterruptGetFallFlag", - "What": "Function", - "defdec": "Def", - "display": "uint32_t PINT_PinInterruptGetFallFlag(PINT_Type *, pint_pin_int_t)", - "location": { - "column": "24", - "line": "297", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptGetFallFlag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PinInterruptClrFallFlagAll", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PinInterruptClrFallFlagAll(PINT_Type *)", - "location": { - "column": "20", - "line": "311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptClrFallFlagAll", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PinInterruptGetFallFlagAll", - "What": "Function", - "defdec": "Def", - "display": "uint32_t PINT_PinInterruptGetFallFlagAll(PINT_Type *)", - "location": { - "column": "24", - "line": "326", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptGetFallFlagAll", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PinInterruptClrRiseFlag", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PinInterruptClrRiseFlag(PINT_Type *, pint_pin_int_t)", - "location": { - "column": "20", - "line": "341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptClrRiseFlag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PinInterruptGetRiseFlag", - "What": "Function", - "defdec": "Def", - "display": "uint32_t PINT_PinInterruptGetRiseFlag(PINT_Type *, pint_pin_int_t)", - "location": { - "column": "24", - "line": "356", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptGetRiseFlag", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PinInterruptClrRiseFlagAll", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PinInterruptClrRiseFlagAll(PINT_Type *)", - "location": { - "column": "20", - "line": "370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptClrRiseFlagAll", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PinInterruptGetRiseFlagAll", - "What": "Function", - "defdec": "Def", - "display": "uint32_t PINT_PinInterruptGetRiseFlagAll(PINT_Type *)", - "location": { - "column": "24", - "line": "385", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PinInterruptGetRiseFlagAll", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@PINT_PatternMatchConfig", - "What": "Function", - "defdec": "Dec", - "display": "void PINT_PatternMatchConfig(PINT_Type *, pint_pmatch_bslice_t, pint_pmatch_cfg_t *)", - "location": { - "column": "6", - "line": "401", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PatternMatchConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@PINT_PatternMatchGetConfig", - "What": "Function", - "defdec": "Dec", - "display": "void PINT_PatternMatchGetConfig(PINT_Type *, pint_pmatch_bslice_t, pint_pmatch_cfg_t *)", - "location": { - "column": "6", - "line": "414", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PatternMatchGetConfig", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PatternMatchGetStatus", - "What": "Function", - "defdec": "Def", - "display": "uint32_t PINT_PatternMatchGetStatus(PINT_Type *, pint_pmatch_bslice_t)", - "location": { - "column": "24", - "line": "426", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PatternMatchGetStatus", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PatternMatchGetStatusAll", - "What": "Function", - "defdec": "Def", - "display": "uint32_t PINT_PatternMatchGetStatusAll(PINT_Type *)", - "location": { - "column": "24", - "line": "441", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PatternMatchGetStatusAll", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@PINT_PatternMatchResetDetectLogic", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t PINT_PatternMatchResetDetectLogic(PINT_Type *)", - "location": { - "column": "10", - "line": "456", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PatternMatchResetDetectLogic", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PatternMatchEnable", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PatternMatchEnable(PINT_Type *)", - "location": { - "column": "20", - "line": "467", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PatternMatchEnable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PatternMatchDisable", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PatternMatchDisable(PINT_Type *)", - "location": { - "column": "20", - "line": "481", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PatternMatchDisable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PatternMatchEnableRXEV", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PatternMatchEnableRXEV(PINT_Type *)", - "location": { - "column": "20", - "line": "495", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PatternMatchEnableRXEV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_pint.h@F@PINT_PatternMatchDisableRXEV", - "What": "Function", - "defdec": "Def", - "display": "void PINT_PatternMatchDisableRXEV(PINT_Type *)", - "location": { - "column": "20", - "line": "509", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_PatternMatchDisableRXEV", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@PINT_EnableCallback", - "What": "Function", - "defdec": "Dec", - "display": "void PINT_EnableCallback(PINT_Type *)", - "location": { - "column": "6", - "line": "524", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_EnableCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@PINT_DisableCallback", - "What": "Function", - "defdec": "Dec", - "display": "void PINT_DisableCallback(PINT_Type *)", - "location": { - "column": "6", - "line": "536", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_DisableCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@PINT_Deinit", - "What": "Function", - "defdec": "Dec", - "display": "void PINT_Deinit(PINT_Type *)", - "location": { - "column": "6", - "line": "547", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_Deinit", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@PINT_EnableCallbackByIndex", - "What": "Function", - "defdec": "Dec", - "display": "void PINT_EnableCallbackByIndex(PINT_Type *, pint_pin_int_t)", - "location": { - "column": "6", - "line": "559", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_EnableCallbackByIndex", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@PINT_DisableCallbackByIndex", - "What": "Function", - "defdec": "Dec", - "display": "void PINT_DisableCallbackByIndex(PINT_Type *, pint_pin_int_t)", - "location": { - "column": "6", - "line": "571", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_pint.h" - }, - "name": "PINT_DisableCallbackByIndex", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:port.c@1685@macro@portNVIC_SYSTICK_CTRL_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "portNVIC_SYSTICK_CTRL_REG", - "location": { - "column": "9", - "line": "40", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portNVIC_SYSTICK_CTRL_REG", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@1767@macro@portNVIC_SYSTICK_LOAD_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "portNVIC_SYSTICK_LOAD_REG", - "location": { - "column": "9", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portNVIC_SYSTICK_LOAD_REG", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@1849@macro@portNVIC_SYSTICK_CURRENT_VALUE_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "portNVIC_SYSTICK_CURRENT_VALUE_REG", - "location": { - "column": "9", - "line": "42", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portNVIC_SYSTICK_CURRENT_VALUE_REG", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@1938@macro@portNVIC_INT_CTRL_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "portNVIC_INT_CTRL_REG", - "location": { - "column": "9", - "line": "43", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portNVIC_INT_CTRL_REG", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@2017@macro@portNVIC_SYSPRI2_REG", - "What": "MacroDef", - "defdec": "Def", - "display": "portNVIC_SYSPRI2_REG", - "location": { - "column": "9", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portNVIC_SYSPRI2_REG", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@2094@macro@portNVIC_SYSTICK_CLK_BIT", - "What": "MacroDef", - "defdec": "Def", - "display": "portNVIC_SYSTICK_CLK_BIT", - "location": { - "column": "9", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portNVIC_SYSTICK_CLK_BIT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@2145@macro@portNVIC_SYSTICK_INT_BIT", - "What": "MacroDef", - "defdec": "Def", - "display": "portNVIC_SYSTICK_INT_BIT", - "location": { - "column": "9", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portNVIC_SYSTICK_INT_BIT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@2196@macro@portNVIC_SYSTICK_ENABLE_BIT", - "What": "MacroDef", - "defdec": "Def", - "display": "portNVIC_SYSTICK_ENABLE_BIT", - "location": { - "column": "9", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portNVIC_SYSTICK_ENABLE_BIT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@2250@macro@portNVIC_SYSTICK_COUNT_FLAG_BIT", - "What": "MacroDef", - "defdec": "Def", - "display": "portNVIC_SYSTICK_COUNT_FLAG_BIT", - "location": { - "column": "9", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portNVIC_SYSTICK_COUNT_FLAG_BIT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@2308@macro@portMIN_INTERRUPT_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "portMIN_INTERRUPT_PRIORITY", - "location": { - "column": "9", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portMIN_INTERRUPT_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@2354@macro@portNVIC_PENDSV_PRI", - "What": "MacroDef", - "defdec": "Def", - "display": "portNVIC_PENDSV_PRI", - "location": { - "column": "9", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portNVIC_PENDSV_PRI", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@2424@macro@portNVIC_SYSTICK_PRI", - "What": "MacroDef", - "defdec": "Def", - "display": "portNVIC_SYSTICK_PRI", - "location": { - "column": "9", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portNVIC_SYSTICK_PRI", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@2551@macro@portINITIAL_XPSR", - "What": "MacroDef", - "defdec": "Def", - "display": "portINITIAL_XPSR", - "location": { - "column": "9", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portINITIAL_XPSR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@2855@macro@configKERNEL_INTERRUPT_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "configKERNEL_INTERRUPT_PRIORITY", - "location": { - "column": "10", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "configKERNEL_INTERRUPT_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@uxCriticalNesting", - "What": "Variable", - "defdec": "Def", - "display": "uxCriticalNesting", - "location": { - "column": "20", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "uxCriticalNesting", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@3089@macro@portMAX_24_BIT_NUMBER", - "What": "MacroDef", - "defdec": "Def", - "display": "portMAX_24_BIT_NUMBER", - "location": { - "column": "9", - "line": "68", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portMAX_24_BIT_NUMBER", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@3338@macro@portMISSED_COUNTS_FACTOR", - "What": "MacroDef", - "defdec": "Def", - "display": "portMISSED_COUNTS_FACTOR", - "location": { - "column": "10", - "line": "74", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "portMISSED_COUNTS_FACTOR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@ulTimerCountsForOneTick", - "What": "Variable", - "defdec": "Def", - "display": "ulTimerCountsForOneTick", - "location": { - "column": "18", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "ulTimerCountsForOneTick", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@xMaximumPossibleSuppressedTicks", - "What": "Variable", - "defdec": "Def", - "display": "xMaximumPossibleSuppressedTicks", - "location": { - "column": "18", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "xMaximumPossibleSuppressedTicks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@ulStoppedTimerCompensation", - "What": "Variable", - "defdec": "Def", - "display": "ulStoppedTimerCompensation", - "location": { - "column": "18", - "line": "91", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "ulStoppedTimerCompensation", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@F@prvSetupTimerInterrupt", - "What": "Function", - "defdec": "Dec", - "display": "void prvSetupTimerInterrupt(void)", - "location": { - "column": "13", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "prvSetupTimerInterrupt", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SysTick_Handler", - "What": "Function", - "defdec": "Dec", - "display": "void SysTick_Handler(void)", - "location": { - "column": "6", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "SysTick_Handler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vPortStartFirstTask", - "What": "Function", - "defdec": "Dec", - "display": "void vPortStartFirstTask(void)", - "location": { - "column": "13", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "vPortStartFirstTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@F@prvTaskExitError", - "What": "Function", - "defdec": "Dec", - "display": "void prvTaskExitError(void)", - "location": { - "column": "13", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "prvTaskExitError", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@pxPortInitialiseStack", - "What": "Function", - "defdec": "Def", - "display": "StackType_t * pxPortInitialiseStack(StackType_t *, TaskFunction_t, void *)", - "location": { - "column": "14", - "line": "119", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "pxPortInitialiseStack", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@F@prvTaskExitError", - "What": "Function", - "defdec": "Def", - "display": "void prvTaskExitError(void)", - "location": { - "column": "13", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "prvTaskExitError", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xPortStartScheduler", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xPortStartScheduler(void)", - "location": { - "column": "12", - "line": "154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "xPortStartScheduler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vPortEndScheduler", - "What": "Function", - "defdec": "Def", - "display": "void vPortEndScheduler(void)", - "location": { - "column": "6", - "line": "175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "vPortEndScheduler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vPortYield", - "What": "Function", - "defdec": "Def", - "display": "void vPortYield(void)", - "location": { - "column": "6", - "line": "183", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "vPortYield", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vPortEnterCritical", - "What": "Function", - "defdec": "Def", - "display": "void vPortEnterCritical(void)", - "location": { - "column": "6", - "line": "195", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "vPortEnterCritical", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vPortExitCritical", - "What": "Function", - "defdec": "Def", - "display": "void vPortExitCritical(void)", - "location": { - "column": "6", - "line": "204", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "vPortExitCritical", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SysTick_Handler", - "What": "Function", - "defdec": "Def", - "display": "void SysTick_Handler(void)", - "location": { - "column": "6", - "line": "215", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "SysTick_Handler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@7599@F@SysTick_Handler@ulPreviousMask", - "What": "Variable", - "defdec": "Def", - "display": "ulPreviousMask", - "location": { - "column": "10", - "line": "217", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "ulPreviousMask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@F@prvSetupTimerInterrupt", - "What": "Function", - "defdec": "Def", - "display": "void prvSetupTimerInterrupt(void)", - "location": { - "column": "13", - "line": "236", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "prvSetupTimerInterrupt", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vPortSuppressTicksAndSleep", - "What": "Function", - "defdec": "Def", - "display": "void vPortSuppressTicksAndSleep(TickType_t)", - "location": { - "column": "13", - "line": "259", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "vPortSuppressTicksAndSleep", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@9071@F@vPortSuppressTicksAndSleep@ulReloadValue", - "What": "Variable", - "defdec": "Def", - "display": "ulReloadValue", - "location": { - "column": "10", - "line": "261", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "ulReloadValue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@9071@F@vPortSuppressTicksAndSleep@ulCompleteTickPeriods", - "What": "Variable", - "defdec": "Dec", - "display": "ulCompleteTickPeriods", - "location": { - "column": "25", - "line": "261", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "ulCompleteTickPeriods", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@9071@F@vPortSuppressTicksAndSleep@ulCompletedSysTickDecrements", - "What": "Variable", - "defdec": "Dec", - "display": "ulCompletedSysTickDecrements", - "location": { - "column": "48", - "line": "261", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "ulCompletedSysTickDecrements", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@9149@F@vPortSuppressTicksAndSleep@xModifiableIdleTime", - "What": "Variable", - "defdec": "Def", - "display": "xModifiableIdleTime", - "location": { - "column": "12", - "line": "262", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "xModifiableIdleTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:port.c@13303@F@vPortSuppressTicksAndSleep@ulCalculatedLoadValue", - "What": "Variable", - "defdec": "Def", - "display": "ulCalculatedLoadValue", - "location": { - "column": "13", - "line": "368", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\IAR\\ARM_CM0\\port.c" - }, - "name": "ulCalculatedLoadValue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_reset.c@477@macro@FSL_COMPONENT_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_COMPONENT_ID", - "location": { - "column": "9", - "line": "18", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.c" - }, - "name": "FSL_COMPONENT_ID", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@RESET_SetPeripheralReset", - "What": "Function", - "defdec": "Def", - "display": "void RESET_SetPeripheralReset(reset_ip_name_t)", - "location": { - "column": "6", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.c" - }, - "name": "RESET_SetPeripheralReset", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_reset.c@1609@F@RESET_SetPeripheralReset@regIndex", - "What": "Variable", - "defdec": "Def", - "display": "regIndex", - "location": { - "column": "20", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.c" - }, - "name": "regIndex", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_reset.c@1684@F@RESET_SetPeripheralReset@bitPos", - "What": "Variable", - "defdec": "Def", - "display": "bitPos", - "location": { - "column": "20", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.c" - }, - "name": "bitPos", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_reset.c@1751@F@RESET_SetPeripheralReset@bitMask", - "What": "Variable", - "defdec": "Def", - "display": "bitMask", - "location": { - "column": "20", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.c" - }, - "name": "bitMask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@RESET_ClearPeripheralReset", - "What": "Function", - "defdec": "Def", - "display": "void RESET_ClearPeripheralReset(reset_ip_name_t)", - "location": { - "column": "6", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.c" - }, - "name": "RESET_ClearPeripheralReset", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_reset.c@2836@F@RESET_ClearPeripheralReset@regIndex", - "What": "Variable", - "defdec": "Def", - "display": "regIndex", - "location": { - "column": "20", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.c" - }, - "name": "regIndex", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_reset.c@2911@F@RESET_ClearPeripheralReset@bitPos", - "What": "Variable", - "defdec": "Def", - "display": "bitPos", - "location": { - "column": "20", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.c" - }, - "name": "bitPos", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_reset.c@2978@F@RESET_ClearPeripheralReset@bitMask", - "What": "Variable", - "defdec": "Def", - "display": "bitMask", - "location": { - "column": "20", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.c" - }, - "name": "bitMask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@RESET_PeripheralReset", - "What": "Function", - "defdec": "Def", - "display": "void RESET_PeripheralReset(reset_ip_name_t)", - "location": { - "column": "6", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_reset.c" - }, - "name": "RESET_PeripheralReset", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:intrinsics.h@305@macro@__INTRINSICS_INCLUDED", - "What": "MacroDef", - "defdec": "Def", - "display": "__INTRINSICS_INCLUDED", - "location": { - "column": "9", - "line": "12", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__INTRINSICS_INCLUDED", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@824@macro@__no_operation", - "What": "MacroDef", - "defdec": "Def", - "display": "__no_operation", - "location": { - "column": "9", - "line": "34", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__no_operation", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@875@macro@__disable_interrupt", - "What": "MacroDef", - "defdec": "Def", - "display": "__disable_interrupt", - "location": { - "column": "9", - "line": "35", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__disable_interrupt", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@936@macro@__enable_interrupt", - "What": "MacroDef", - "defdec": "Def", - "display": "__enable_interrupt", - "location": { - "column": "9", - "line": "36", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__enable_interrupt", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@995@macro@__get_interrupt_state", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_interrupt_state", - "location": { - "column": "9", - "line": "37", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__get_interrupt_state", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@1060@macro@__set_interrupt_state", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_interrupt_state", - "location": { - "column": "9", - "line": "38", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__set_interrupt_state", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@1228@macro@__get_PSR", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_PSR", - "location": { - "column": "13", - "line": "43", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__get_PSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@1311@macro@__get_IPSR", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_IPSR", - "location": { - "column": "13", - "line": "46", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__get_IPSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@1394@macro@__get_MSP", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_MSP", - "location": { - "column": "13", - "line": "49", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__get_MSP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@1476@macro@__set_MSP", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_MSP", - "location": { - "column": "13", - "line": "52", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__set_MSP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@1558@macro@__get_PSP", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_PSP", - "location": { - "column": "13", - "line": "55", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__get_PSP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@1640@macro@__set_PSP", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_PSP", - "location": { - "column": "13", - "line": "58", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__set_PSP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@1726@macro@__get_PRIMASK", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_PRIMASK", - "location": { - "column": "13", - "line": "61", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__get_PRIMASK", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@1816@macro@__set_PRIMASK", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_PRIMASK", - "location": { - "column": "13", - "line": "64", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__set_PRIMASK", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@1906@macro@__get_CONTROL", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_CONTROL", - "location": { - "column": "13", - "line": "67", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__get_CONTROL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@1996@macro@__set_CONTROL", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_CONTROL", - "location": { - "column": "13", - "line": "70", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__set_CONTROL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@2850@macro@__disable_fiq", - "What": "MacroDef", - "defdec": "Def", - "display": "__disable_fiq", - "location": { - "column": "11", - "line": "101", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__disable_fiq", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@2931@macro@__enable_fiq", - "What": "MacroDef", - "defdec": "Def", - "display": "__enable_fiq", - "location": { - "column": "11", - "line": "104", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__enable_fiq", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3032@macro@__SWP", - "What": "MacroDef", - "defdec": "Def", - "display": "__SWP", - "location": { - "column": "11", - "line": "109", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__SWP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3091@macro@__SWPB", - "What": "MacroDef", - "defdec": "Def", - "display": "__SWPB", - "location": { - "column": "11", - "line": "112", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__SWPB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3185@macro@__CDP", - "What": "MacroDef", - "defdec": "Def", - "display": "__CDP", - "location": { - "column": "11", - "line": "117", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__CDP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3244@macro@__CDP2", - "What": "MacroDef", - "defdec": "Def", - "display": "__CDP2", - "location": { - "column": "11", - "line": "120", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__CDP2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3334@macro@__MCR", - "What": "MacroDef", - "defdec": "Def", - "display": "__MCR", - "location": { - "column": "11", - "line": "125", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__MCR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3392@macro@__MRC", - "What": "MacroDef", - "defdec": "Def", - "display": "__MRC", - "location": { - "column": "11", - "line": "128", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__MRC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3451@macro@__MCR2", - "What": "MacroDef", - "defdec": "Def", - "display": "__MCR2", - "location": { - "column": "11", - "line": "131", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__MCR2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3512@macro@__MRC2", - "What": "MacroDef", - "defdec": "Def", - "display": "__MRC2", - "location": { - "column": "11", - "line": "134", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__MRC2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3573@macro@__MCRR", - "What": "MacroDef", - "defdec": "Def", - "display": "__MCRR", - "location": { - "column": "11", - "line": "137", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__MCRR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3635@macro@__MCRR2", - "What": "MacroDef", - "defdec": "Def", - "display": "__MCRR2", - "location": { - "column": "11", - "line": "140", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__MCRR2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3698@macro@__MRRC", - "What": "MacroDef", - "defdec": "Def", - "display": "__MRRC", - "location": { - "column": "11", - "line": "143", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__MRRC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3760@macro@__MRRC2", - "What": "MacroDef", - "defdec": "Def", - "display": "__MRRC2", - "location": { - "column": "11", - "line": "146", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__MRRC2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3858@macro@__LDC", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDC", - "location": { - "column": "11", - "line": "151", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__LDC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3917@macro@__LDCL", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDCL", - "location": { - "column": "11", - "line": "154", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__LDCL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@3978@macro@__LDC2", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDC2", - "location": { - "column": "11", - "line": "157", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__LDC2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@4040@macro@__LDC2L", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDC2L", - "location": { - "column": "11", - "line": "160", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__LDC2L", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@4139@macro@__STC", - "What": "MacroDef", - "defdec": "Def", - "display": "__STC", - "location": { - "column": "11", - "line": "165", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__STC", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@4198@macro@__STCL", - "What": "MacroDef", - "defdec": "Def", - "display": "__STCL", - "location": { - "column": "11", - "line": "168", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__STCL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@4259@macro@__STC2", - "What": "MacroDef", - "defdec": "Def", - "display": "__STC2", - "location": { - "column": "11", - "line": "171", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__STC2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@4321@macro@__STC2L", - "What": "MacroDef", - "defdec": "Def", - "display": "__STC2L", - "location": { - "column": "11", - "line": "174", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__STC2L", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@4469@macro@__LDC_noidx", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDC_noidx", - "location": { - "column": "11", - "line": "179", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__LDC_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@4546@macro@__LDCL_noidx", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDCL_noidx", - "location": { - "column": "11", - "line": "182", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__LDCL_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@4625@macro@__LDC2_noidx", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDC2_noidx", - "location": { - "column": "11", - "line": "185", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__LDC2_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@4705@macro@__LDC2L_noidx", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDC2L_noidx", - "location": { - "column": "11", - "line": "188", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__LDC2L_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@4856@macro@__STC_noidx", - "What": "MacroDef", - "defdec": "Def", - "display": "__STC_noidx", - "location": { - "column": "11", - "line": "193", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__STC_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@4933@macro@__STCL_noidx", - "What": "MacroDef", - "defdec": "Def", - "display": "__STCL_noidx", - "location": { - "column": "11", - "line": "196", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__STCL_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@5012@macro@__STC2_noidx", - "What": "MacroDef", - "defdec": "Def", - "display": "__STC2_noidx", - "location": { - "column": "11", - "line": "199", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__STC2_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@5092@macro@__STC2L_noidx", - "What": "MacroDef", - "defdec": "Def", - "display": "__STC2L_noidx", - "location": { - "column": "11", - "line": "202", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__STC2L_noidx", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@5193@macro@__VSQRT_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VSQRT_F64", - "location": { - "column": "11", - "line": "207", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VSQRT_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@5275@macro@__VSQRT_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VSQRT_F32", - "location": { - "column": "11", - "line": "210", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VSQRT_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@5375@macro@__VFMA_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VFMA_F64", - "location": { - "column": "11", - "line": "215", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VFMA_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@5471@macro@__VFMS_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VFMS_F64", - "location": { - "column": "11", - "line": "218", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VFMS_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@5568@macro@__VFNMA_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VFNMA_F64", - "location": { - "column": "11", - "line": "221", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VFNMA_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@5666@macro@__VFNMS_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VFNMS_F64", - "location": { - "column": "11", - "line": "224", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VFNMS_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@5763@macro@__VFMA_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VFMA_F32", - "location": { - "column": "11", - "line": "227", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VFMA_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@5859@macro@__VFMS_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VFMS_F32", - "location": { - "column": "11", - "line": "230", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VFMS_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@5956@macro@__VFNMA_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VFNMA_F32", - "location": { - "column": "11", - "line": "233", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VFNMA_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@6054@macro@__VFNMS_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VFNMS_F32", - "location": { - "column": "11", - "line": "236", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VFNMS_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@6249@macro@__VRINTA_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTA_F64", - "location": { - "column": "11", - "line": "243", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTA_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@6334@macro@__VRINTM_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTM_F64", - "location": { - "column": "11", - "line": "246", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTM_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@6419@macro@__VRINTN_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTN_F64", - "location": { - "column": "11", - "line": "249", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTN_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@6504@macro@__VRINTP_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTP_F64", - "location": { - "column": "11", - "line": "252", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTP_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@6589@macro@__VRINTX_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTX_F64", - "location": { - "column": "11", - "line": "255", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTX_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@6674@macro@__VRINTR_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTR_F64", - "location": { - "column": "11", - "line": "258", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTR_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@6759@macro@__VRINTZ_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTZ_F64", - "location": { - "column": "11", - "line": "261", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTZ_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@6844@macro@__VRINTA_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTA_F32", - "location": { - "column": "11", - "line": "264", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTA_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@6929@macro@__VRINTM_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTM_F32", - "location": { - "column": "11", - "line": "267", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTM_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@7014@macro@__VRINTN_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTN_F32", - "location": { - "column": "11", - "line": "270", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTN_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@7099@macro@__VRINTP_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTP_F32", - "location": { - "column": "11", - "line": "273", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTP_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@7184@macro@__VRINTX_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTX_F32", - "location": { - "column": "11", - "line": "276", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTX_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@7269@macro@__VRINTR_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTR_F32", - "location": { - "column": "11", - "line": "279", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTR_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@7354@macro@__VRINTZ_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VRINTZ_F32", - "location": { - "column": "11", - "line": "282", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VRINTZ_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@7464@macro@__VMINNM_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VMINNM_F64", - "location": { - "column": "11", - "line": "287", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VMINNM_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@7558@macro@__VMAXNM_F64", - "What": "MacroDef", - "defdec": "Def", - "display": "__VMAXNM_F64", - "location": { - "column": "11", - "line": "290", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VMAXNM_F64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@7652@macro@__VMINNM_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VMINNM_F32", - "location": { - "column": "11", - "line": "293", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VMINNM_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@7746@macro@__VMAXNM_F32", - "What": "MacroDef", - "defdec": "Def", - "display": "__VMAXNM_F32", - "location": { - "column": "11", - "line": "296", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__VMAXNM_F32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@7861@macro@__CRC32B", - "What": "MacroDef", - "defdec": "Def", - "display": "__CRC32B", - "location": { - "column": "11", - "line": "301", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__CRC32B", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@7945@macro@__CRC32H", - "What": "MacroDef", - "defdec": "Def", - "display": "__CRC32H", - "location": { - "column": "11", - "line": "304", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__CRC32H", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@8029@macro@__CRC32W", - "What": "MacroDef", - "defdec": "Def", - "display": "__CRC32W", - "location": { - "column": "11", - "line": "307", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__CRC32W", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@8114@macro@__CRC32CB", - "What": "MacroDef", - "defdec": "Def", - "display": "__CRC32CB", - "location": { - "column": "11", - "line": "310", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__CRC32CB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@8200@macro@__CRC32CH", - "What": "MacroDef", - "defdec": "Def", - "display": "__CRC32CH", - "location": { - "column": "11", - "line": "313", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__CRC32CH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@8286@macro@__CRC32CW", - "What": "MacroDef", - "defdec": "Def", - "display": "__CRC32CW", - "location": { - "column": "11", - "line": "316", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__CRC32CW", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@8443@macro@__get_APSR", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_APSR", - "location": { - "column": "13", - "line": "322", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__get_APSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@8529@macro@__set_APSR", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_APSR", - "location": { - "column": "13", - "line": "325", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__set_APSR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@8930@macro@__get_FPSCR", - "What": "MacroDef", - "defdec": "Def", - "display": "__get_FPSCR", - "location": { - "column": "11", - "line": "339", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__get_FPSCR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@9010@macro@__set_FPSCR", - "What": "MacroDef", - "defdec": "Def", - "display": "__set_FPSCR", - "location": { - "column": "11", - "line": "342", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__set_FPSCR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@9164@macro@__CLZ", - "What": "MacroDef", - "defdec": "Def", - "display": "__CLZ", - "location": { - "column": "11", - "line": "347", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__CLZ", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@9222@macro@__ROR", - "What": "MacroDef", - "defdec": "Def", - "display": "__ROR", - "location": { - "column": "11", - "line": "350", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__ROR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@9290@macro@__RRX", - "What": "MacroDef", - "defdec": "Def", - "display": "__RRX", - "location": { - "column": "11", - "line": "353", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__RRX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@10097@macro@__QCFlag", - "What": "MacroDef", - "defdec": "Def", - "display": "__QCFlag", - "location": { - "column": "11", - "line": "385", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__QCFlag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@10178@macro@__reset_QC_flag", - "What": "MacroDef", - "defdec": "Def", - "display": "__reset_QC_flag", - "location": { - "column": "11", - "line": "388", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__reset_QC_flag", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@10259@macro@__SMUL", - "What": "MacroDef", - "defdec": "Def", - "display": "__SMUL", - "location": { - "column": "11", - "line": "392", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__SMUL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@10401@macro@__REV", - "What": "MacroDef", - "defdec": "Def", - "display": "__REV", - "location": { - "column": "11", - "line": "397", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__REV", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@10471@macro@__REVSH", - "What": "MacroDef", - "defdec": "Def", - "display": "__REVSH", - "location": { - "column": "11", - "line": "400", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__REVSH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@10545@macro@__REV16", - "What": "MacroDef", - "defdec": "Def", - "display": "__REV16", - "location": { - "column": "11", - "line": "404", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__REV16", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@10616@macro@__RBIT", - "What": "MacroDef", - "defdec": "Def", - "display": "__RBIT", - "location": { - "column": "11", - "line": "407", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__RBIT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@10690@macro@__LDREXB", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDREXB", - "location": { - "column": "11", - "line": "411", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__LDREXB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@10764@macro@__LDREXH", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDREXH", - "location": { - "column": "11", - "line": "414", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__LDREXH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@10837@macro@__LDREX", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDREX", - "location": { - "column": "11", - "line": "417", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__LDREX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@10910@macro@__LDREXD", - "What": "MacroDef", - "defdec": "Def", - "display": "__LDREXD", - "location": { - "column": "11", - "line": "420", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__LDREXD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@10986@macro@__STREXB", - "What": "MacroDef", - "defdec": "Def", - "display": "__STREXB", - "location": { - "column": "11", - "line": "424", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__STREXB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@11060@macro@__STREXH", - "What": "MacroDef", - "defdec": "Def", - "display": "__STREXH", - "location": { - "column": "11", - "line": "427", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__STREXH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@11133@macro@__STREX", - "What": "MacroDef", - "defdec": "Def", - "display": "__STREX", - "location": { - "column": "11", - "line": "430", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__STREX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@11206@macro@__STREXD", - "What": "MacroDef", - "defdec": "Def", - "display": "__STREXD", - "location": { - "column": "11", - "line": "433", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__STREXD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@11281@macro@__CLREX", - "What": "MacroDef", - "defdec": "Def", - "display": "__CLREX", - "location": { - "column": "11", - "line": "437", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__CLREX", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@11353@macro@__SEV", - "What": "MacroDef", - "defdec": "Def", - "display": "__SEV", - "location": { - "column": "11", - "line": "441", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__SEV", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@11421@macro@__WFE", - "What": "MacroDef", - "defdec": "Def", - "display": "__WFE", - "location": { - "column": "11", - "line": "444", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__WFE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@11489@macro@__WFI", - "What": "MacroDef", - "defdec": "Def", - "display": "__WFI", - "location": { - "column": "11", - "line": "447", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__WFI", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@11559@macro@__YIELD", - "What": "MacroDef", - "defdec": "Def", - "display": "__YIELD", - "location": { - "column": "11", - "line": "450", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__YIELD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@11631@macro@__PLI", - "What": "MacroDef", - "defdec": "Def", - "display": "__PLI", - "location": { - "column": "11", - "line": "454", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__PLI", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@11699@macro@__PLD", - "What": "MacroDef", - "defdec": "Def", - "display": "__PLD", - "location": { - "column": "11", - "line": "457", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__PLD", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@11768@macro@__PLDW", - "What": "MacroDef", - "defdec": "Def", - "display": "__PLDW", - "location": { - "column": "11", - "line": "460", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__PLDW", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@11840@macro@__SSAT", - "What": "MacroDef", - "defdec": "Def", - "display": "__SSAT", - "location": { - "column": "11", - "line": "464", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__SSAT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@11908@macro@__USAT", - "What": "MacroDef", - "defdec": "Def", - "display": "__USAT", - "location": { - "column": "11", - "line": "467", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__USAT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@19754@macro@__DMB", - "What": "MacroDef", - "defdec": "Def", - "display": "__DMB", - "location": { - "column": "11", - "line": "770", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__DMB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@19819@macro@__DSB", - "What": "MacroDef", - "defdec": "Def", - "display": "__DSB", - "location": { - "column": "11", - "line": "773", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__DSB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@19884@macro@__ISB", - "What": "MacroDef", - "defdec": "Def", - "display": "__ISB", - "location": { - "column": "11", - "line": "776", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__ISB", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@19988@macro@__TT", - "What": "MacroDef", - "defdec": "Def", - "display": "__TT", - "location": { - "column": "11", - "line": "781", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__TT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@20047@macro@__TTT", - "What": "MacroDef", - "defdec": "Def", - "display": "__TTT", - "location": { - "column": "11", - "line": "784", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__TTT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@20107@macro@__TTA", - "What": "MacroDef", - "defdec": "Def", - "display": "__TTA", - "location": { - "column": "11", - "line": "787", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__TTA", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@20168@macro@__TTAT", - "What": "MacroDef", - "defdec": "Def", - "display": "__TTAT", - "location": { - "column": "11", - "line": "790", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__TTAT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@20232@macro@__fabs", - "What": "MacroDef", - "defdec": "Def", - "display": "__fabs", - "location": { - "column": "11", - "line": "794", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__fabs", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:intrinsics.h@20287@macro@__fabsf", - "What": "MacroDef", - "defdec": "Def", - "display": "__fabsf", - "location": { - "column": "11", - "line": "797", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\intrinsics.h" - }, - "name": "__fabsf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iar_intrinsics_common.h@348@macro@_IAR_COMMON_ACLE_INTRINSICS_H", - "What": "MacroDef", - "defdec": "Def", - "display": "_IAR_COMMON_ACLE_INTRINSICS_H", - "location": { - "column": "9", - "line": "12", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iar_intrinsics_common.h" - }, - "name": "_IAR_COMMON_ACLE_INTRINSICS_H", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iar_intrinsics_common.h@485@macro@__arm_rsr", - "What": "MacroDef", - "defdec": "Def", - "display": "__arm_rsr", - "location": { - "column": "9", - "line": "19", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iar_intrinsics_common.h" - }, - "name": "__arm_rsr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iar_intrinsics_common.h@522@macro@__arm_rsr64", - "What": "MacroDef", - "defdec": "Def", - "display": "__arm_rsr64", - "location": { - "column": "9", - "line": "20", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iar_intrinsics_common.h" - }, - "name": "__arm_rsr64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iar_intrinsics_common.h@563@macro@__arm_rsrp", - "What": "MacroDef", - "defdec": "Def", - "display": "__arm_rsrp", - "location": { - "column": "9", - "line": "21", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iar_intrinsics_common.h" - }, - "name": "__arm_rsrp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iar_intrinsics_common.h@642@macro@__arm_wsr", - "What": "MacroDef", - "defdec": "Def", - "display": "__arm_wsr", - "location": { - "column": "9", - "line": "24", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iar_intrinsics_common.h" - }, - "name": "__arm_wsr", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iar_intrinsics_common.h@679@macro@__arm_wsr64", - "What": "MacroDef", - "defdec": "Def", - "display": "__arm_wsr64", - "location": { - "column": "9", - "line": "25", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iar_intrinsics_common.h" - }, - "name": "__arm_wsr64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:iar_intrinsics_common.h@720@macro@__arm_wsrp", - "What": "MacroDef", - "defdec": "Def", - "display": "__arm_wsrp", - "location": { - "column": "9", - "line": "26", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\iar_intrinsics_common.h" - }, - "name": "__arm_wsrp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:fsl_power.c@293@macro@FSL_COMPONENT_ID", - "What": "MacroDef", - "defdec": "Def", - "display": "FSL_COMPONENT_ID", - "location": { - "column": "9", - "line": "13", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\drivers\\fsl_power.c" - }, - "name": "FSL_COMPONENT_ID", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@3384@macro@MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "location": { - "column": "9", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@3697@macro@heapMINIMUM_BLOCK_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "heapMINIMUM_BLOCK_SIZE", - "location": { - "column": "9", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "heapMINIMUM_BLOCK_SIZE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@3798@macro@heapBITS_PER_BYTE", - "What": "MacroDef", - "defdec": "Def", - "display": "heapBITS_PER_BYTE", - "location": { - "column": "9", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "heapBITS_PER_BYTE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@A_BLOCK_LINK", - "What": "Struct", - "defdec": "Def", - "display": "A_BLOCK_LINK", - "location": { - "column": "16", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "members": [ - { - "ID": "c:@S@A_BLOCK_LINK@FI@pxNextFreeBlock", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxNextFreeBlock", - "location": { - "column": "23", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "pxNextFreeBlock", - "origin": "project_file", - "scope": "A_BLOCK_LINK" - }, - { - "ID": "c:@S@A_BLOCK_LINK@FI@xBlockSize", - "What": "FieldDecl", - "defdec": "Def", - "display": "xBlockSize", - "location": { - "column": "9", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xBlockSize", - "origin": "project_file", - "scope": "A_BLOCK_LINK" - } - ], - "name": "A_BLOCK_LINK", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@T@BlockLink_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct A_BLOCK_LINK", - "location": { - "column": "3", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "BlockLink_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@F@prvInsertBlockIntoFreeList", - "What": "Function", - "defdec": "Dec", - "display": "void prvInsertBlockIntoFreeList(BlockLink_t *)", - "location": { - "column": "13", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "prvInsertBlockIntoFreeList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@xHeapStructSize", - "What": "Variable", - "defdec": "Def", - "display": "xHeapStructSize", - "location": { - "column": "21", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xHeapStructSize", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@xStart", - "What": "Variable", - "defdec": "Dec", - "display": "xStart", - "location": { - "column": "20", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xStart", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@pxEnd", - "What": "Variable", - "defdec": "Def", - "display": "pxEnd", - "location": { - "column": "29", - "line": "117", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "pxEnd", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@xFreeBytesRemaining", - "What": "Variable", - "defdec": "Def", - "display": "xFreeBytesRemaining", - "location": { - "column": "15", - "line": "121", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xFreeBytesRemaining", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@xMinimumEverFreeBytesRemaining", - "What": "Variable", - "defdec": "Def", - "display": "xMinimumEverFreeBytesRemaining", - "location": { - "column": "15", - "line": "122", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xMinimumEverFreeBytesRemaining", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@xNumberOfSuccessfulAllocations", - "What": "Variable", - "defdec": "Def", - "display": "xNumberOfSuccessfulAllocations", - "location": { - "column": "15", - "line": "123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xNumberOfSuccessfulAllocations", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@xNumberOfSuccessfulFrees", - "What": "Variable", - "defdec": "Def", - "display": "xNumberOfSuccessfulFrees", - "location": { - "column": "15", - "line": "124", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xNumberOfSuccessfulFrees", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@xBlockAllocatedBit", - "What": "Variable", - "defdec": "Def", - "display": "xBlockAllocatedBit", - "location": { - "column": "15", - "line": "130", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xBlockAllocatedBit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@pvPortMalloc", - "What": "Function", - "defdec": "Def", - "display": "void * pvPortMalloc(size_t)", - "location": { - "column": "7", - "line": "134", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "pvPortMalloc", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@5759@F@pvPortMalloc@pxBlock", - "What": "Variable", - "defdec": "Def", - "display": "pxBlock", - "location": { - "column": "14", - "line": "136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "pxBlock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@5759@F@pvPortMalloc@pxPreviousBlock", - "What": "Variable", - "defdec": "Dec", - "display": "pxPreviousBlock", - "location": { - "column": "24", - "line": "136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "pxPreviousBlock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@5759@F@pvPortMalloc@pxNewBlockLink", - "What": "Variable", - "defdec": "Dec", - "display": "pxNewBlockLink", - "location": { - "column": "42", - "line": "136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "pxNewBlockLink", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@5817@F@pvPortMalloc@pvReturn", - "What": "Variable", - "defdec": "Def", - "display": "pvReturn", - "location": { - "column": "7", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "pvReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vApplicationMallocFailedHook", - "What": "Function", - "defdec": "Dec", - "display": "void vApplicationMallocFailedHook(void)", - "location": { - "column": "16", - "line": "261", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "vApplicationMallocFailedHook", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vPortFree", - "What": "Function", - "defdec": "Def", - "display": "void vPortFree(void *)", - "location": { - "column": "6", - "line": "275", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "vPortFree", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@9792@F@vPortFree@puc", - "What": "Variable", - "defdec": "Def", - "display": "puc", - "location": { - "column": "10", - "line": "277", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "puc", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@9826@F@vPortFree@pxLink", - "What": "Variable", - "defdec": "Def", - "display": "pxLink", - "location": { - "column": "14", - "line": "278", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "pxLink", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xPortGetFreeHeapSize", - "What": "Function", - "defdec": "Def", - "display": "size_t xPortGetFreeHeapSize(void)", - "location": { - "column": "8", - "line": "324", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xPortGetFreeHeapSize", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xPortGetMinimumEverFreeHeapSize", - "What": "Function", - "defdec": "Def", - "display": "size_t xPortGetMinimumEverFreeHeapSize(void)", - "location": { - "column": "8", - "line": "330", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xPortGetMinimumEverFreeHeapSize", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@F@prvInsertBlockIntoFreeList", - "What": "Function", - "defdec": "Def", - "display": "void prvInsertBlockIntoFreeList(BlockLink_t *)", - "location": { - "column": "13", - "line": "336", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "prvInsertBlockIntoFreeList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@11390@F@prvInsertBlockIntoFreeList@pxIterator", - "What": "Variable", - "defdec": "Def", - "display": "pxIterator", - "location": { - "column": "14", - "line": "338", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "pxIterator", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@11416@F@prvInsertBlockIntoFreeList@puc", - "What": "Variable", - "defdec": "Def", - "display": "puc", - "location": { - "column": "10", - "line": "339", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "puc", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vPortDefineHeapRegions", - "What": "Function", - "defdec": "Def", - "display": "void vPortDefineHeapRegions(const HeapRegion_t *const)", - "location": { - "column": "6", - "line": "397", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "vPortDefineHeapRegions", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@13307@F@vPortDefineHeapRegions@pxFirstFreeBlockInRegion", - "What": "Variable", - "defdec": "Def", - "display": "pxFirstFreeBlockInRegion", - "location": { - "column": "14", - "line": "399", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "pxFirstFreeBlockInRegion", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@13307@F@vPortDefineHeapRegions@pxPreviousFreeBlock", - "What": "Variable", - "defdec": "Dec", - "display": "pxPreviousFreeBlock", - "location": { - "column": "48", - "line": "399", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "pxPreviousFreeBlock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@13376@F@vPortDefineHeapRegions@xAlignedHeap", - "What": "Variable", - "defdec": "Def", - "display": "xAlignedHeap", - "location": { - "column": "8", - "line": "400", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xAlignedHeap", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@13398@F@vPortDefineHeapRegions@xTotalRegionSize", - "What": "Variable", - "defdec": "Def", - "display": "xTotalRegionSize", - "location": { - "column": "8", - "line": "401", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xTotalRegionSize", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@13398@F@vPortDefineHeapRegions@xTotalHeapSize", - "What": "Variable", - "defdec": "Dec", - "display": "xTotalHeapSize", - "location": { - "column": "26", - "line": "401", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xTotalHeapSize", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@13444@F@vPortDefineHeapRegions@xDefinedRegions", - "What": "Variable", - "defdec": "Def", - "display": "xDefinedRegions", - "location": { - "column": "12", - "line": "402", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xDefinedRegions", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@13477@F@vPortDefineHeapRegions@xAddress", - "What": "Variable", - "defdec": "Def", - "display": "xAddress", - "location": { - "column": "8", - "line": "403", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xAddress", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@13495@F@vPortDefineHeapRegions@pxHeapRegion", - "What": "Variable", - "defdec": "Def", - "display": "pxHeapRegion", - "location": { - "column": "21", - "line": "404", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "pxHeapRegion", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vPortGetHeapStats", - "What": "Function", - "defdec": "Def", - "display": "void vPortGetHeapStats(HeapStats_t *)", - "location": { - "column": "6", - "line": "491", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "vPortGetHeapStats", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@16556@F@vPortGetHeapStats@pxBlock", - "What": "Variable", - "defdec": "Def", - "display": "pxBlock", - "location": { - "column": "14", - "line": "493", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "pxBlock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@16579@F@vPortGetHeapStats@xBlocks", - "What": "Variable", - "defdec": "Def", - "display": "xBlocks", - "location": { - "column": "8", - "line": "494", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xBlocks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@16579@F@vPortGetHeapStats@xMaxSize", - "What": "Variable", - "defdec": "Dec", - "display": "xMaxSize", - "location": { - "column": "21", - "line": "494", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xMaxSize", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:heap_5.c@16579@F@vPortGetHeapStats@xMinSize", - "What": "Variable", - "defdec": "Dec", - "display": "xMinSize", - "location": { - "column": "35", - "line": "494", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\portable\\MemMang\\heap_5.c" - }, - "name": "xMinSize", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@1564@macro@MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "location": { - "column": "9", - "line": "34", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@2188@macro@queueUNLOCKED", - "What": "MacroDef", - "defdec": "Def", - "display": "queueUNLOCKED", - "location": { - "column": "9", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "queueUNLOCKED", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@2233@macro@queueLOCKED_UNMODIFIED", - "What": "MacroDef", - "defdec": "Def", - "display": "queueLOCKED_UNMODIFIED", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "queueLOCKED_UNMODIFIED", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@2935@macro@uxQueueType", - "What": "MacroDef", - "defdec": "Def", - "display": "uxQueueType", - "location": { - "column": "9", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxQueueType", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@2968@macro@queueQUEUE_IS_MUTEX", - "What": "MacroDef", - "defdec": "Def", - "display": "queueQUEUE_IS_MUTEX", - "location": { - "column": "9", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "queueQUEUE_IS_MUTEX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@QueuePointers", - "What": "Struct", - "defdec": "Def", - "display": "QueuePointers", - "location": { - "column": "16", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "members": [ - { - "ID": "c:@S@QueuePointers@FI@pcTail", - "What": "FieldDecl", - "defdec": "Def", - "display": "pcTail", - "location": { - "column": "10", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pcTail", - "origin": "project_file", - "scope": "QueuePointers" - }, - { - "ID": "c:@S@QueuePointers@FI@pcReadFrom", - "What": "FieldDecl", - "defdec": "Def", - "display": "pcReadFrom", - "location": { - "column": "10", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pcReadFrom", - "origin": "project_file", - "scope": "QueuePointers" - } - ], - "name": "QueuePointers", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@T@QueuePointers_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct QueuePointers", - "location": { - "column": "3", - "line": "71", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "QueuePointers_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@SemaphoreData", - "What": "Struct", - "defdec": "Def", - "display": "SemaphoreData", - "location": { - "column": "16", - "line": "73", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "members": [ - { - "ID": "c:@S@SemaphoreData@FI@xMutexHolder", - "What": "FieldDecl", - "defdec": "Def", - "display": "xMutexHolder", - "location": { - "column": "15", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xMutexHolder", - "origin": "project_file", - "scope": "SemaphoreData" - }, - { - "ID": "c:@S@SemaphoreData@FI@uxRecursiveCallCount", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxRecursiveCallCount", - "location": { - "column": "14", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxRecursiveCallCount", - "origin": "project_file", - "scope": "SemaphoreData" - } - ], - "name": "SemaphoreData", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@T@SemaphoreData_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct SemaphoreData", - "location": { - "column": "3", - "line": "77", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "SemaphoreData_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@3765@macro@queueSEMAPHORE_QUEUE_ITEM_LENGTH", - "What": "MacroDef", - "defdec": "Def", - "display": "queueSEMAPHORE_QUEUE_ITEM_LENGTH", - "location": { - "column": "9", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "queueSEMAPHORE_QUEUE_ITEM_LENGTH", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@3829@macro@queueMUTEX_GIVE_BLOCK_TIME", - "What": "MacroDef", - "defdec": "Def", - "display": "queueMUTEX_GIVE_BLOCK_TIME", - "location": { - "column": "9", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "queueMUTEX_GIVE_BLOCK_TIME", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@4118@macro@queueYIELD_IF_USING_PREEMPTION", - "What": "MacroDef", - "defdec": "Def", - "display": "queueYIELD_IF_USING_PREEMPTION", - "location": { - "column": "10", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "queueYIELD_IF_USING_PREEMPTION", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@QueueDefinition", - "What": "Struct", - "defdec": "Def", - "display": "QueueDefinition", - "location": { - "column": "16", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "members": [ - { - "ID": "c:@S@QueueDefinition@FI@pcHead", - "What": "FieldDecl", - "defdec": "Def", - "display": "pcHead", - "location": { - "column": "10", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pcHead", - "origin": "project_file", - "scope": "QueueDefinition" - }, - { - "ID": "c:@S@QueueDefinition@FI@pcWriteTo", - "What": "FieldDecl", - "defdec": "Def", - "display": "pcWriteTo", - "location": { - "column": "10", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pcWriteTo", - "origin": "project_file", - "scope": "QueueDefinition" - }, - { - "ID": "c:@S@QueueDefinition@U@queue.c@4674", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "2", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "members": [ - { - "ID": "c:@S@QueueDefinition@U@queue.c@4674@FI@xQueue", - "What": "FieldDecl", - "defdec": "Def", - "display": "xQueue", - "location": { - "column": "19", - "line": "104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueue", - "origin": "project_file", - "scope": "QueueDefinition::_anonymous_queue_c_102_2" - }, - { - "ID": "c:@S@QueueDefinition@U@queue.c@4674@FI@xSemaphore", - "What": "FieldDecl", - "defdec": "Def", - "display": "xSemaphore", - "location": { - "column": "19", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xSemaphore", - "origin": "project_file", - "scope": "QueueDefinition::_anonymous_queue_c_102_2" - } - ], - "name": "", - "origin": "project_file", - "scope": "QueueDefinition" - }, - { - "ID": "c:@S@QueueDefinition@FI@u", - "What": "FieldDecl", - "defdec": "Def", - "display": "u", - "location": { - "column": "4", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "u", - "origin": "project_file", - "scope": "QueueDefinition" - }, - { - "ID": "c:@S@QueueDefinition@FI@xTasksWaitingToSend", - "What": "FieldDecl", - "defdec": "Def", - "display": "xTasksWaitingToSend", - "location": { - "column": "9", - "line": "108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xTasksWaitingToSend", - "origin": "project_file", - "scope": "QueueDefinition" - }, - { - "ID": "c:@S@QueueDefinition@FI@xTasksWaitingToReceive", - "What": "FieldDecl", - "defdec": "Def", - "display": "xTasksWaitingToReceive", - "location": { - "column": "9", - "line": "109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xTasksWaitingToReceive", - "origin": "project_file", - "scope": "QueueDefinition" - }, - { - "ID": "c:@S@QueueDefinition@FI@uxMessagesWaiting", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxMessagesWaiting", - "location": { - "column": "23", - "line": "111", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxMessagesWaiting", - "origin": "project_file", - "scope": "QueueDefinition" - }, - { - "ID": "c:@S@QueueDefinition@FI@uxLength", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxLength", - "location": { - "column": "14", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxLength", - "origin": "project_file", - "scope": "QueueDefinition" - }, - { - "ID": "c:@S@QueueDefinition@FI@uxItemSize", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxItemSize", - "location": { - "column": "14", - "line": "113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxItemSize", - "origin": "project_file", - "scope": "QueueDefinition" - }, - { - "ID": "c:@S@QueueDefinition@FI@cRxLock", - "What": "FieldDecl", - "defdec": "Def", - "display": "cRxLock", - "location": { - "column": "18", - "line": "115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "cRxLock", - "origin": "project_file", - "scope": "QueueDefinition" - }, - { - "ID": "c:@S@QueueDefinition@FI@cTxLock", - "What": "FieldDecl", - "defdec": "Def", - "display": "cTxLock", - "location": { - "column": "18", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "cTxLock", - "origin": "project_file", - "scope": "QueueDefinition" - }, - { - "ID": "c:@S@QueueDefinition@FI@uxQueueNumber", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxQueueNumber", - "location": { - "column": "15", - "line": "127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxQueueNumber", - "origin": "project_file", - "scope": "QueueDefinition" - }, - { - "ID": "c:@S@QueueDefinition@FI@ucQueueType", - "What": "FieldDecl", - "defdec": "Def", - "display": "ucQueueType", - "location": { - "column": "11", - "line": "128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "ucQueueType", - "origin": "project_file", - "scope": "QueueDefinition" - } - ], - "name": "QueueDefinition", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@T@xQUEUE", - "What": "Typedef", - "defdec": "Def", - "display": "struct QueueDefinition", - "location": { - "column": "3", - "line": "131", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQUEUE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@T@Queue_t", - "What": "Typedef", - "defdec": "Def", - "display": "xQUEUE", - "location": { - "column": "16", - "line": "135", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "Queue_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@QUEUE_REGISTRY_ITEM", - "What": "Struct", - "defdec": "Def", - "display": "QUEUE_REGISTRY_ITEM", - "location": { - "column": "17", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "members": [ - { - "ID": "c:@S@QUEUE_REGISTRY_ITEM@FI@pcQueueName", - "What": "FieldDecl", - "defdec": "Def", - "display": "pcQueueName", - "location": { - "column": "15", - "line": "150", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pcQueueName", - "origin": "project_file", - "scope": "QUEUE_REGISTRY_ITEM" - }, - { - "ID": "c:@S@QUEUE_REGISTRY_ITEM@FI@xHandle", - "What": "FieldDecl", - "defdec": "Def", - "display": "xHandle", - "location": { - "column": "17", - "line": "151", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xHandle", - "origin": "project_file", - "scope": "QUEUE_REGISTRY_ITEM" - } - ], - "name": "QUEUE_REGISTRY_ITEM", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@T@xQueueRegistryItem", - "What": "Typedef", - "defdec": "Def", - "display": "struct QUEUE_REGISTRY_ITEM", - "location": { - "column": "4", - "line": "152", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueRegistryItem", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@T@QueueRegistryItem_t", - "What": "Typedef", - "defdec": "Def", - "display": "xQueueRegistryItem", - "location": { - "column": "29", - "line": "157", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "QueueRegistryItem_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@xQueueRegistry", - "What": "Variable", - "defdec": "Dec", - "display": "xQueueRegistry", - "location": { - "column": "38", - "line": "162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueRegistry", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvUnlockQueue", - "What": "Function", - "defdec": "Dec", - "display": "void prvUnlockQueue(Queue_t *const)", - "location": { - "column": "13", - "line": "174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvUnlockQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvIsQueueEmpty", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t prvIsQueueEmpty(const Queue_t *)", - "location": { - "column": "19", - "line": "181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvIsQueueEmpty", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvIsQueueFull", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t prvIsQueueFull(const Queue_t *)", - "location": { - "column": "19", - "line": "188", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvIsQueueFull", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvCopyDataToQueue", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t prvCopyDataToQueue(Queue_t *const, const void *, const BaseType_t)", - "location": { - "column": "19", - "line": "194", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvCopyDataToQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvCopyDataFromQueue", - "What": "Function", - "defdec": "Dec", - "display": "void prvCopyDataFromQueue(Queue_t *const, void *const)", - "location": { - "column": "13", - "line": "199", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvCopyDataFromQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvInitialiseNewQueue", - "What": "Function", - "defdec": "Dec", - "display": "void prvInitialiseNewQueue(const UBaseType_t, const UBaseType_t, uint8_t *, const uint8_t, Queue_t *)", - "location": { - "column": "13", - "line": "213", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvInitialiseNewQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvInitialiseMutex", - "What": "Function", - "defdec": "Dec", - "display": "void prvInitialiseMutex(Queue_t *)", - "location": { - "column": "14", - "line": "221", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvInitialiseMutex", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvGetDisinheritPriorityAfterTimeout", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t prvGetDisinheritPriorityAfterTimeout(const Queue_t *const)", - "location": { - "column": "21", - "line": "232", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvGetDisinheritPriorityAfterTimeout", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@10739@macro@prvLockQueue", - "What": "MacroDef", - "defdec": "Def", - "display": "prvLockQueue", - "location": { - "column": "9", - "line": "240", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvLockQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueGenericReset", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xQueueGenericReset(QueueHandle_t, BaseType_t)", - "location": { - "column": "12", - "line": "255", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueGenericReset", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@11298@F@xQueueGenericReset@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueGenericCreate", - "What": "Function", - "defdec": "Def", - "display": "QueueHandle_t xQueueGenericCreate(const UBaseType_t, const UBaseType_t, const uint8_t)", - "location": { - "column": "16", - "line": "368", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueGenericCreate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@15500@F@xQueueGenericCreate@pxNewQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxNewQueue", - "location": { - "column": "11", - "line": "370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxNewQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@15523@F@xQueueGenericCreate@xQueueSizeInBytes", - "What": "Variable", - "defdec": "Def", - "display": "xQueueSizeInBytes", - "location": { - "column": "9", - "line": "371", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueSizeInBytes", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@15551@F@xQueueGenericCreate@pucQueueStorage", - "What": "Variable", - "defdec": "Def", - "display": "pucQueueStorage", - "location": { - "column": "11", - "line": "372", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pucQueueStorage", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvInitialiseNewQueue", - "What": "Function", - "defdec": "Def", - "display": "void prvInitialiseNewQueue(const UBaseType_t, const UBaseType_t, uint8_t *, const uint8_t, Queue_t *)", - "location": { - "column": "13", - "line": "429", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvInitialiseNewQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvInitialiseMutex", - "What": "Function", - "defdec": "Def", - "display": "void prvInitialiseMutex(Queue_t *)", - "location": { - "column": "14", - "line": "473", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvInitialiseMutex", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueCreateMutex", - "What": "Function", - "defdec": "Def", - "display": "QueueHandle_t xQueueCreateMutex(const uint8_t)", - "location": { - "column": "16", - "line": "503", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueCreateMutex", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@20265@F@xQueueCreateMutex@xNewQueue", - "What": "Variable", - "defdec": "Def", - "display": "xNewQueue", - "location": { - "column": "16", - "line": "505", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xNewQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@20292@F@xQueueCreateMutex@uxMutexLength", - "What": "Variable", - "defdec": "Def", - "display": "uxMutexLength", - "location": { - "column": "20", - "line": "506", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxMutexLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@20292@F@xQueueCreateMutex@uxMutexSize", - "What": "Variable", - "defdec": "Dec", - "display": "uxMutexSize", - "location": { - "column": "55", - "line": "506", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxMutexSize", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueGiveMutexRecursive", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xQueueGiveMutexRecursive(QueueHandle_t)", - "location": { - "column": "13", - "line": "596", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueGiveMutexRecursive", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@23249@F@xQueueGiveMutexRecursive@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "13", - "line": "598", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@23271@F@xQueueGiveMutexRecursive@pxMutex", - "What": "Variable", - "defdec": "Def", - "display": "pxMutex", - "location": { - "column": "18", - "line": "599", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxMutex", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueTakeMutexRecursive", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xQueueTakeMutexRecursive(QueueHandle_t, TickType_t)", - "location": { - "column": "13", - "line": "651", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueTakeMutexRecursive", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@25182@F@xQueueTakeMutexRecursive@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "13", - "line": "653", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@25204@F@xQueueTakeMutexRecursive@pxMutex", - "What": "Variable", - "defdec": "Def", - "display": "pxMutex", - "location": { - "column": "18", - "line": "654", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxMutex", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueCreateCountingSemaphore", - "What": "Function", - "defdec": "Def", - "display": "QueueHandle_t xQueueCreateCountingSemaphore(const UBaseType_t, const UBaseType_t)", - "location": { - "column": "16", - "line": "721", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueCreateCountingSemaphore", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@27249@F@xQueueCreateCountingSemaphore@xHandle", - "What": "Variable", - "defdec": "Def", - "display": "xHandle", - "location": { - "column": "16", - "line": "723", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueGenericSend", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xQueueGenericSend(QueueHandle_t, const void *const, TickType_t, const BaseType_t)", - "location": { - "column": "12", - "line": "747", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueGenericSend", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@28031@F@xQueueGenericSend@xEntryTimeSet", - "What": "Variable", - "defdec": "Def", - "display": "xEntryTimeSet", - "location": { - "column": "12", - "line": "749", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xEntryTimeSet", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@28031@F@xQueueGenericSend@xYieldRequired", - "What": "Variable", - "defdec": "Dec", - "display": "xYieldRequired", - "location": { - "column": "37", - "line": "749", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xYieldRequired", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@28084@F@xQueueGenericSend@xTimeOut", - "What": "Variable", - "defdec": "Def", - "display": "xTimeOut", - "location": { - "column": "11", - "line": "750", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xTimeOut", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@28105@F@xQueueGenericSend@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "751", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueGenericSendFromISR", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xQueueGenericSendFromISR(QueueHandle_t, const void *const, BaseType_t *const, const BaseType_t)", - "location": { - "column": "12", - "line": "957", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueGenericSendFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@34982@F@xQueueGenericSendFromISR@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "959", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@35003@F@xQueueGenericSendFromISR@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "13", - "line": "960", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@35040@F@xQueueGenericSendFromISR@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "961", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@36880@F@xQueueGenericSendFromISR@cTxLock", - "What": "Variable", - "defdec": "Def", - "display": "cTxLock", - "location": { - "column": "17", - "line": "992", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "cTxLock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueGiveFromISR", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xQueueGiveFromISR(QueueHandle_t, BaseType_t *const)", - "location": { - "column": "12", - "line": "1108", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueGiveFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@40143@F@xQueueGiveFromISR@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "1110", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@40164@F@xQueueGiveFromISR@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "13", - "line": "1111", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@40201@F@xQueueGiveFromISR@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "1112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@42201@F@xQueueGiveFromISR@uxMessagesWaiting", - "What": "Variable", - "defdec": "Def", - "display": "uxMessagesWaiting", - "location": { - "column": "21", - "line": "1149", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxMessagesWaiting", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@42483@F@xQueueGiveFromISR@cTxLock", - "What": "Variable", - "defdec": "Def", - "display": "cTxLock", - "location": { - "column": "17", - "line": "1156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "cTxLock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueReceive", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xQueueReceive(QueueHandle_t, void *const, TickType_t)", - "location": { - "column": "12", - "line": "1273", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueReceive", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@45789@F@xQueueReceive@xEntryTimeSet", - "What": "Variable", - "defdec": "Def", - "display": "xEntryTimeSet", - "location": { - "column": "12", - "line": "1275", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xEntryTimeSet", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@45826@F@xQueueReceive@xTimeOut", - "What": "Variable", - "defdec": "Def", - "display": "xTimeOut", - "location": { - "column": "11", - "line": "1276", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xTimeOut", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@45847@F@xQueueReceive@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "1277", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@46692@F@xQueueReceive@uxMessagesWaiting", - "What": "Variable", - "defdec": "Def", - "display": "uxMessagesWaiting", - "location": { - "column": "22", - "line": "1301", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxMessagesWaiting", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueSemaphoreTake", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xQueueSemaphoreTake(QueueHandle_t, TickType_t)", - "location": { - "column": "12", - "line": "1414", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueSemaphoreTake", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@49919@F@xQueueSemaphoreTake@xEntryTimeSet", - "What": "Variable", - "defdec": "Def", - "display": "xEntryTimeSet", - "location": { - "column": "12", - "line": "1416", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xEntryTimeSet", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@49956@F@xQueueSemaphoreTake@xTimeOut", - "What": "Variable", - "defdec": "Def", - "display": "xTimeOut", - "location": { - "column": "11", - "line": "1417", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xTimeOut", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@49977@F@xQueueSemaphoreTake@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "1418", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@50046@F@xQueueSemaphoreTake@xInheritanceOccurred", - "What": "Variable", - "defdec": "Def", - "display": "xInheritanceOccurred", - "location": { - "column": "13", - "line": "1421", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xInheritanceOccurred", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@50946@F@xQueueSemaphoreTake@uxSemaphoreCount", - "What": "Variable", - "defdec": "Def", - "display": "uxSemaphoreCount", - "location": { - "column": "22", - "line": "1448", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxSemaphoreCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@55708@F@xQueueSemaphoreTake@uxHighestWaitingPriority", - "What": "Variable", - "defdec": "Def", - "display": "uxHighestWaitingPriority", - "location": { - "column": "20", - "line": "1605", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxHighestWaitingPriority", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueuePeek", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xQueuePeek(QueueHandle_t, void *const, TickType_t)", - "location": { - "column": "12", - "line": "1632", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueuePeek", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@56646@F@xQueuePeek@xEntryTimeSet", - "What": "Variable", - "defdec": "Def", - "display": "xEntryTimeSet", - "location": { - "column": "12", - "line": "1634", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xEntryTimeSet", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@56683@F@xQueuePeek@xTimeOut", - "What": "Variable", - "defdec": "Def", - "display": "xTimeOut", - "location": { - "column": "11", - "line": "1635", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xTimeOut", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@56704@F@xQueuePeek@pcOriginalReadPosition", - "What": "Variable", - "defdec": "Def", - "display": "pcOriginalReadPosition", - "location": { - "column": "9", - "line": "1636", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pcOriginalReadPosition", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@56737@F@xQueuePeek@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "1637", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@57582@F@xQueuePeek@uxMessagesWaiting", - "What": "Variable", - "defdec": "Def", - "display": "uxMessagesWaiting", - "location": { - "column": "22", - "line": "1661", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxMessagesWaiting", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueReceiveFromISR", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xQueueReceiveFromISR(QueueHandle_t, void *const, BaseType_t *const)", - "location": { - "column": "12", - "line": "1781", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueReceiveFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@61219@F@xQueueReceiveFromISR@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "1783", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@61240@F@xQueueReceiveFromISR@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "13", - "line": "1784", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@61277@F@xQueueReceiveFromISR@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "1785", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@62599@F@xQueueReceiveFromISR@uxMessagesWaiting", - "What": "Variable", - "defdec": "Def", - "display": "uxMessagesWaiting", - "location": { - "column": "21", - "line": "1808", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxMessagesWaiting", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@62790@F@xQueueReceiveFromISR@cRxLock", - "What": "Variable", - "defdec": "Def", - "display": "cRxLock", - "location": { - "column": "17", - "line": "1813", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "cRxLock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueuePeekFromISR", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xQueuePeekFromISR(QueueHandle_t, void *const)", - "location": { - "column": "12", - "line": "1872", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueuePeekFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@64394@F@xQueuePeekFromISR@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "1874", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@64415@F@xQueuePeekFromISR@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "13", - "line": "1875", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@64452@F@xQueuePeekFromISR@pcOriginalReadPosition", - "What": "Variable", - "defdec": "Def", - "display": "pcOriginalReadPosition", - "location": { - "column": "9", - "line": "1876", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pcOriginalReadPosition", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@64485@F@xQueuePeekFromISR@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "1877", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxQueueMessagesWaiting", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t uxQueueMessagesWaiting(const QueueHandle_t)", - "location": { - "column": "13", - "line": "1926", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxQueueMessagesWaiting", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@66671@F@uxQueueMessagesWaiting@uxReturn", - "What": "Variable", - "defdec": "Def", - "display": "uxReturn", - "location": { - "column": "13", - "line": "1928", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxQueueSpacesAvailable", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t uxQueueSpacesAvailable(const QueueHandle_t)", - "location": { - "column": "13", - "line": "1942", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxQueueSpacesAvailable", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@67083@F@uxQueueSpacesAvailable@uxReturn", - "What": "Variable", - "defdec": "Def", - "display": "uxReturn", - "location": { - "column": "13", - "line": "1944", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@67106@F@uxQueueSpacesAvailable@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "1945", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxQueueMessagesWaitingFromISR", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t uxQueueMessagesWaitingFromISR(const QueueHandle_t)", - "location": { - "column": "13", - "line": "1959", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxQueueMessagesWaitingFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@67541@F@uxQueueMessagesWaitingFromISR@uxReturn", - "What": "Variable", - "defdec": "Def", - "display": "uxReturn", - "location": { - "column": "13", - "line": "1961", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@67564@F@uxQueueMessagesWaitingFromISR@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "1962", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vQueueDelete", - "What": "Function", - "defdec": "Def", - "display": "void vQueueDelete(QueueHandle_t)", - "location": { - "column": "6", - "line": "1971", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "vQueueDelete", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@67891@F@vQueueDelete@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "1973", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxQueueGetQueueNumber", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t uxQueueGetQueueNumber(QueueHandle_t)", - "location": { - "column": "14", - "line": "2015", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxQueueGetQueueNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vQueueSetQueueNumber", - "What": "Function", - "defdec": "Def", - "display": "void vQueueSetQueueNumber(QueueHandle_t, UBaseType_t)", - "location": { - "column": "7", - "line": "2025", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "vQueueSetQueueNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@ucQueueGetQueueType", - "What": "Function", - "defdec": "Def", - "display": "uint8_t ucQueueGetQueueType(QueueHandle_t)", - "location": { - "column": "10", - "line": "2035", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "ucQueueGetQueueType", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvGetDisinheritPriorityAfterTimeout", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t prvGetDisinheritPriorityAfterTimeout(const Queue_t *const)", - "location": { - "column": "21", - "line": "2045", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvGetDisinheritPriorityAfterTimeout", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@69918@F@prvGetDisinheritPriorityAfterTimeout@uxHighestPriorityOfWaitingTasks", - "What": "Variable", - "defdec": "Def", - "display": "uxHighestPriorityOfWaitingTasks", - "location": { - "column": "14", - "line": "2047", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxHighestPriorityOfWaitingTasks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvCopyDataToQueue", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t prvCopyDataToQueue(Queue_t *const, const void *, const BaseType_t)", - "location": { - "column": "19", - "line": "2070", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvCopyDataToQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@70943@F@prvCopyDataToQueue@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "2072", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@70974@F@prvCopyDataToQueue@uxMessagesWaiting", - "What": "Variable", - "defdec": "Def", - "display": "uxMessagesWaiting", - "location": { - "column": "13", - "line": "2073", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "uxMessagesWaiting", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvCopyDataFromQueue", - "What": "Function", - "defdec": "Def", - "display": "void prvCopyDataFromQueue(Queue_t *const, void *const)", - "location": { - "column": "13", - "line": "2149", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvCopyDataFromQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvUnlockQueue", - "What": "Function", - "defdec": "Def", - "display": "void prvUnlockQueue(Queue_t *const)", - "location": { - "column": "13", - "line": "2167", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvUnlockQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@75270@F@prvUnlockQueue@cTxLock", - "What": "Variable", - "defdec": "Def", - "display": "cTxLock", - "location": { - "column": "10", - "line": "2177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "cTxLock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@77422@F@prvUnlockQueue@cRxLock", - "What": "Variable", - "defdec": "Def", - "display": "cRxLock", - "location": { - "column": "10", - "line": "2258", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "cRxLock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvIsQueueEmpty", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t prvIsQueueEmpty(const Queue_t *)", - "location": { - "column": "19", - "line": "2287", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvIsQueueEmpty", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@78034@F@prvIsQueueEmpty@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "2289", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueIsQueueEmptyFromISR", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xQueueIsQueueEmptyFromISR(const QueueHandle_t)", - "location": { - "column": "12", - "line": "2308", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueIsQueueEmptyFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@78404@F@xQueueIsQueueEmptyFromISR@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "2310", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@78425@F@xQueueIsQueueEmptyFromISR@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "2311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@F@prvIsQueueFull", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t prvIsQueueFull(const Queue_t *)", - "location": { - "column": "19", - "line": "2327", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "prvIsQueueFull", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@78842@F@prvIsQueueFull@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "2329", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xQueueIsQueueFullFromISR", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xQueueIsQueueFullFromISR(const QueueHandle_t)", - "location": { - "column": "12", - "line": "2348", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xQueueIsQueueFullFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@79210@F@xQueueIsQueueFullFromISR@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "2350", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@79231@F@xQueueIsQueueFullFromISR@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "17", - "line": "2351", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vQueueAddToRegistry", - "What": "Function", - "defdec": "Def", - "display": "void vQueueAddToRegistry(QueueHandle_t, const char *)", - "location": { - "column": "7", - "line": "2644", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "vQueueAddToRegistry", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@87395@F@vQueueAddToRegistry@ux", - "What": "Variable", - "defdec": "Def", - "display": "ux", - "location": { - "column": "14", - "line": "2646", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "ux", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@pcQueueGetName", - "What": "Function", - "defdec": "Def", - "display": "const char * pcQueueGetName(QueueHandle_t)", - "location": { - "column": "14", - "line": "2673", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pcQueueGetName", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@88236@F@pcQueueGetName@ux", - "What": "Variable", - "defdec": "Def", - "display": "ux", - "location": { - "column": "14", - "line": "2675", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "ux", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@88254@F@pcQueueGetName@pcReturn", - "What": "Variable", - "defdec": "Def", - "display": "pcReturn", - "location": { - "column": "14", - "line": "2676", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pcReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vQueueUnregisterQueue", - "What": "Function", - "defdec": "Def", - "display": "void vQueueUnregisterQueue(QueueHandle_t)", - "location": { - "column": "7", - "line": "2701", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "vQueueUnregisterQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@89105@F@vQueueUnregisterQueue@ux", - "What": "Variable", - "defdec": "Def", - "display": "ux", - "location": { - "column": "14", - "line": "2703", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "ux", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vQueueWaitForMessageRestricted", - "What": "Function", - "defdec": "Def", - "display": "void vQueueWaitForMessageRestricted(QueueHandle_t, TickType_t, const BaseType_t)", - "location": { - "column": "7", - "line": "2733", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "vQueueWaitForMessageRestricted", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:queue.c@90122@F@vQueueWaitForMessageRestricted@pxQueue", - "What": "Variable", - "defdec": "Def", - "display": "pxQueue", - "location": { - "column": "18", - "line": "2735", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\queue.c" - }, - "name": "pxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@1569@macro@MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "location": { - "column": "9", - "line": "34", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@2535@macro@eventCLEAR_EVENTS_ON_EXIT_BIT", - "What": "MacroDef", - "defdec": "Def", - "display": "eventCLEAR_EVENTS_ON_EXIT_BIT", - "location": { - "column": "10", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "eventCLEAR_EVENTS_ON_EXIT_BIT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@2588@macro@eventUNBLOCKED_DUE_TO_BIT_SET", - "What": "MacroDef", - "defdec": "Def", - "display": "eventUNBLOCKED_DUE_TO_BIT_SET", - "location": { - "column": "10", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "eventUNBLOCKED_DUE_TO_BIT_SET", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@2641@macro@eventWAIT_FOR_ALL_BITS", - "What": "MacroDef", - "defdec": "Def", - "display": "eventWAIT_FOR_ALL_BITS", - "location": { - "column": "10", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "eventWAIT_FOR_ALL_BITS", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@2689@macro@eventEVENT_BITS_CONTROL_BYTES", - "What": "MacroDef", - "defdec": "Def", - "display": "eventEVENT_BITS_CONTROL_BYTES", - "location": { - "column": "10", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "eventEVENT_BITS_CONTROL_BYTES", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@EventGroupDef_t", - "What": "Struct", - "defdec": "Def", - "display": "EventGroupDef_t", - "location": { - "column": "16", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "members": [ - { - "ID": "c:@S@EventGroupDef_t@FI@uxEventBits", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxEventBits", - "location": { - "column": "14", - "line": "65", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxEventBits", - "origin": "project_file", - "scope": "EventGroupDef_t" - }, - { - "ID": "c:@S@EventGroupDef_t@FI@xTasksWaitingForBits", - "What": "FieldDecl", - "defdec": "Def", - "display": "xTasksWaitingForBits", - "location": { - "column": "9", - "line": "66", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xTasksWaitingForBits", - "origin": "project_file", - "scope": "EventGroupDef_t" - }, - { - "ID": "c:@S@EventGroupDef_t@FI@uxEventGroupNumber", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxEventGroupNumber", - "location": { - "column": "15", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxEventGroupNumber", - "origin": "project_file", - "scope": "EventGroupDef_t" - } - ], - "name": "EventGroupDef_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@T@EventGroup_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct EventGroupDef_t", - "location": { - "column": "3", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "EventGroup_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@F@prvTestWaitCondition", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t prvTestWaitCondition(const EventBits_t, const EventBits_t, const BaseType_t)", - "location": { - "column": "19", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "prvTestWaitCondition", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xEventGroupCreate", - "What": "Function", - "defdec": "Def", - "display": "EventGroupHandle_t xEventGroupCreate(void)", - "location": { - "column": "21", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xEventGroupCreate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@6000@F@xEventGroupCreate@pxEventBits", - "What": "Variable", - "defdec": "Def", - "display": "pxEventBits", - "location": { - "column": "16", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "pxEventBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xEventGroupSync", - "What": "Function", - "defdec": "Def", - "display": "EventBits_t xEventGroupSync(EventGroupHandle_t, const EventBits_t, const EventBits_t, TickType_t)", - "location": { - "column": "13", - "line": "191", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xEventGroupSync", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@8003@F@xEventGroupSync@uxOriginalBitValue", - "What": "Variable", - "defdec": "Def", - "display": "uxOriginalBitValue", - "location": { - "column": "13", - "line": "193", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxOriginalBitValue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@8003@F@xEventGroupSync@uxReturn", - "What": "Variable", - "defdec": "Dec", - "display": "uxReturn", - "location": { - "column": "33", - "line": "193", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@8046@F@xEventGroupSync@pxEventBits", - "What": "Variable", - "defdec": "Def", - "display": "pxEventBits", - "location": { - "column": "15", - "line": "194", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "pxEventBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@8088@F@xEventGroupSync@xAlreadyYielded", - "What": "Variable", - "defdec": "Def", - "display": "xAlreadyYielded", - "location": { - "column": "12", - "line": "195", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xAlreadyYielded", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@8117@F@xEventGroupSync@xTimeoutOccurred", - "What": "Variable", - "defdec": "Def", - "display": "xTimeoutOccurred", - "location": { - "column": "12", - "line": "196", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xTimeoutOccurred", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xEventGroupWaitBits", - "What": "Function", - "defdec": "Def", - "display": "EventBits_t xEventGroupWaitBits(EventGroupHandle_t, const EventBits_t, const BaseType_t, const BaseType_t, TickType_t)", - "location": { - "column": "13", - "line": "311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xEventGroupWaitBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@11990@F@xEventGroupWaitBits@pxEventBits", - "What": "Variable", - "defdec": "Def", - "display": "pxEventBits", - "location": { - "column": "15", - "line": "313", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "pxEventBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@12032@F@xEventGroupWaitBits@uxReturn", - "What": "Variable", - "defdec": "Def", - "display": "uxReturn", - "location": { - "column": "13", - "line": "314", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@12032@F@xEventGroupWaitBits@uxControlBits", - "What": "Variable", - "defdec": "Dec", - "display": "uxControlBits", - "location": { - "column": "23", - "line": "314", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxControlBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@12074@F@xEventGroupWaitBits@xWaitConditionMet", - "What": "Variable", - "defdec": "Def", - "display": "xWaitConditionMet", - "location": { - "column": "12", - "line": "315", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xWaitConditionMet", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@12074@F@xEventGroupWaitBits@xAlreadyYielded", - "What": "Variable", - "defdec": "Dec", - "display": "xAlreadyYielded", - "location": { - "column": "31", - "line": "315", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xAlreadyYielded", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@12122@F@xEventGroupWaitBits@xTimeoutOccurred", - "What": "Variable", - "defdec": "Def", - "display": "xTimeoutOccurred", - "location": { - "column": "12", - "line": "316", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xTimeoutOccurred", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@12678@F@xEventGroupWaitBits@uxCurrentEventBits", - "What": "Variable", - "defdec": "Def", - "display": "uxCurrentEventBits", - "location": { - "column": "21", - "line": "331", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxCurrentEventBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xEventGroupClearBits", - "What": "Function", - "defdec": "Def", - "display": "EventBits_t xEventGroupClearBits(EventGroupHandle_t, const EventBits_t)", - "location": { - "column": "13", - "line": "461", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xEventGroupClearBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@16572@F@xEventGroupClearBits@pxEventBits", - "What": "Variable", - "defdec": "Def", - "display": "pxEventBits", - "location": { - "column": "15", - "line": "463", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "pxEventBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@16614@F@xEventGroupClearBits@uxReturn", - "What": "Variable", - "defdec": "Def", - "display": "uxReturn", - "location": { - "column": "13", - "line": "464", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xEventGroupGetBitsFromISR", - "What": "Function", - "defdec": "Def", - "display": "EventBits_t xEventGroupGetBitsFromISR(EventGroupHandle_t)", - "location": { - "column": "13", - "line": "503", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xEventGroupGetBitsFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@18035@F@xEventGroupGetBitsFromISR@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "13", - "line": "505", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@18072@F@xEventGroupGetBitsFromISR@pxEventBits", - "What": "Variable", - "defdec": "Def", - "display": "pxEventBits", - "location": { - "column": "28", - "line": "506", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "pxEventBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@18127@F@xEventGroupGetBitsFromISR@uxReturn", - "What": "Variable", - "defdec": "Def", - "display": "uxReturn", - "location": { - "column": "13", - "line": "507", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xEventGroupSetBits", - "What": "Function", - "defdec": "Def", - "display": "EventBits_t xEventGroupSetBits(EventGroupHandle_t, const EventBits_t)", - "location": { - "column": "13", - "line": "519", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xEventGroupSetBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@18621@F@xEventGroupSetBits@pxListItem", - "What": "Variable", - "defdec": "Def", - "display": "pxListItem", - "location": { - "column": "13", - "line": "521", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "pxListItem", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@18621@F@xEventGroupSetBits@pxNext", - "What": "Variable", - "defdec": "Dec", - "display": "pxNext", - "location": { - "column": "26", - "line": "521", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "pxNext", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@18655@F@xEventGroupSetBits@pxListEnd", - "What": "Variable", - "defdec": "Def", - "display": "pxListEnd", - "location": { - "column": "19", - "line": "522", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "pxListEnd", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@18685@F@xEventGroupSetBits@pxList", - "What": "Variable", - "defdec": "Def", - "display": "pxList", - "location": { - "column": "16", - "line": "523", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "pxList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@18709@F@xEventGroupSetBits@uxBitsToClear", - "What": "Variable", - "defdec": "Def", - "display": "uxBitsToClear", - "location": { - "column": "13", - "line": "524", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxBitsToClear", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@18709@F@xEventGroupSetBits@uxBitsWaitedFor", - "What": "Variable", - "defdec": "Dec", - "display": "uxBitsWaitedFor", - "location": { - "column": "32", - "line": "524", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxBitsWaitedFor", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@18709@F@xEventGroupSetBits@uxControlBits", - "What": "Variable", - "defdec": "Dec", - "display": "uxControlBits", - "location": { - "column": "49", - "line": "524", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxControlBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@18773@F@xEventGroupSetBits@pxEventBits", - "What": "Variable", - "defdec": "Def", - "display": "pxEventBits", - "location": { - "column": "15", - "line": "525", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "pxEventBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@18815@F@xEventGroupSetBits@xMatchFound", - "What": "Variable", - "defdec": "Def", - "display": "xMatchFound", - "location": { - "column": "12", - "line": "526", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xMatchFound", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vEventGroupDelete", - "What": "Function", - "defdec": "Def", - "display": "void vEventGroupDelete(EventGroupHandle_t)", - "location": { - "column": "6", - "line": "613", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "vEventGroupDelete", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@21731@F@vEventGroupDelete@pxEventBits", - "What": "Variable", - "defdec": "Def", - "display": "pxEventBits", - "location": { - "column": "15", - "line": "615", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "pxEventBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@21773@F@vEventGroupDelete@pxTasksWaitingForBits", - "What": "Variable", - "defdec": "Def", - "display": "pxTasksWaitingForBits", - "location": { - "column": "15", - "line": "616", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "pxTasksWaitingForBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vEventGroupSetBitsCallback", - "What": "Function", - "defdec": "Def", - "display": "void vEventGroupSetBitsCallback(void *, const uint32_t)", - "location": { - "column": "6", - "line": "657", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "vEventGroupSetBitsCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vEventGroupClearBitsCallback", - "What": "Function", - "defdec": "Def", - "display": "void vEventGroupClearBitsCallback(void *, const uint32_t)", - "location": { - "column": "6", - "line": "665", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "vEventGroupClearBitsCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@F@prvTestWaitCondition", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t prvTestWaitCondition(const EventBits_t, const EventBits_t, const BaseType_t)", - "location": { - "column": "19", - "line": "671", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "prvTestWaitCondition", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@24222@F@prvTestWaitCondition@xWaitConditionMet", - "What": "Variable", - "defdec": "Def", - "display": "xWaitConditionMet", - "location": { - "column": "12", - "line": "673", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xWaitConditionMet", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxEventGroupGetNumber", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t uxEventGroupGetNumber(void *)", - "location": { - "column": "14", - "line": "723", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "uxEventGroupGetNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@25802@F@uxEventGroupGetNumber@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "14", - "line": "725", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.c@25825@F@uxEventGroupGetNumber@pxEventBits", - "What": "Variable", - "defdec": "Def", - "display": "pxEventBits", - "location": { - "column": "22", - "line": "726", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "pxEventBits", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vEventGroupSetNumber", - "What": "Function", - "defdec": "Def", - "display": "void vEventGroupSetNumber(void *, UBaseType_t)", - "location": { - "column": "7", - "line": "745", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\event_groups.c" - }, - "name": "vEventGroupSetNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@1590@macro@MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "location": { - "column": "9", - "line": "35", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@2555@macro@sbRECEIVE_COMPLETED", - "What": "MacroDef", - "defdec": "Def", - "display": "sbRECEIVE_COMPLETED", - "location": { - "column": "10", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "sbRECEIVE_COMPLETED", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@3130@macro@sbRECEIVE_COMPLETED_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "sbRECEIVE_COMPLETED_FROM_ISR", - "location": { - "column": "10", - "line": "72", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "sbRECEIVE_COMPLETED_FROM_ISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@4188@macro@sbSEND_COMPLETED", - "What": "MacroDef", - "defdec": "Def", - "display": "sbSEND_COMPLETED", - "location": { - "column": "10", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "sbSEND_COMPLETED", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@4761@macro@sbSEND_COMPLETE_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "sbSEND_COMPLETE_FROM_ISR", - "location": { - "column": "10", - "line": "111", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "sbSEND_COMPLETE_FROM_ISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@5679@macro@sbBYTES_TO_STORE_MESSAGE_LENGTH", - "What": "MacroDef", - "defdec": "Def", - "display": "sbBYTES_TO_STORE_MESSAGE_LENGTH", - "location": { - "column": "9", - "line": "132", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "sbBYTES_TO_STORE_MESSAGE_LENGTH", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@5831@macro@sbFLAGS_IS_MESSAGE_BUFFER", - "What": "MacroDef", - "defdec": "Def", - "display": "sbFLAGS_IS_MESSAGE_BUFFER", - "location": { - "column": "9", - "line": "135", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "sbFLAGS_IS_MESSAGE_BUFFER", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@6012@macro@sbFLAGS_IS_STATICALLY_ALLOCATED", - "What": "MacroDef", - "defdec": "Def", - "display": "sbFLAGS_IS_STATICALLY_ALLOCATED", - "location": { - "column": "9", - "line": "136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "sbFLAGS_IS_STATICALLY_ALLOCATED", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@StreamBufferDef_t", - "What": "Struct", - "defdec": "Def", - "display": "StreamBufferDef_t", - "location": { - "column": "16", - "line": "141", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "members": [ - { - "ID": "c:@S@StreamBufferDef_t@FI@xTail", - "What": "FieldDecl", - "defdec": "Def", - "display": "xTail", - "location": { - "column": "18", - "line": "143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xTail", - "origin": "project_file", - "scope": "StreamBufferDef_t" - }, - { - "ID": "c:@S@StreamBufferDef_t@FI@xHead", - "What": "FieldDecl", - "defdec": "Def", - "display": "xHead", - "location": { - "column": "18", - "line": "144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xHead", - "origin": "project_file", - "scope": "StreamBufferDef_t" - }, - { - "ID": "c:@S@StreamBufferDef_t@FI@xLength", - "What": "FieldDecl", - "defdec": "Def", - "display": "xLength", - "location": { - "column": "9", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xLength", - "origin": "project_file", - "scope": "StreamBufferDef_t" - }, - { - "ID": "c:@S@StreamBufferDef_t@FI@xTriggerLevelBytes", - "What": "FieldDecl", - "defdec": "Def", - "display": "xTriggerLevelBytes", - "location": { - "column": "9", - "line": "146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xTriggerLevelBytes", - "origin": "project_file", - "scope": "StreamBufferDef_t" - }, - { - "ID": "c:@S@StreamBufferDef_t@FI@xTaskWaitingToReceive", - "What": "FieldDecl", - "defdec": "Def", - "display": "xTaskWaitingToReceive", - "location": { - "column": "24", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xTaskWaitingToReceive", - "origin": "project_file", - "scope": "StreamBufferDef_t" - }, - { - "ID": "c:@S@StreamBufferDef_t@FI@xTaskWaitingToSend", - "What": "FieldDecl", - "defdec": "Def", - "display": "xTaskWaitingToSend", - "location": { - "column": "24", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xTaskWaitingToSend", - "origin": "project_file", - "scope": "StreamBufferDef_t" - }, - { - "ID": "c:@S@StreamBufferDef_t@FI@pucBuffer", - "What": "FieldDecl", - "defdec": "Def", - "display": "pucBuffer", - "location": { - "column": "11", - "line": "149", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pucBuffer", - "origin": "project_file", - "scope": "StreamBufferDef_t" - }, - { - "ID": "c:@S@StreamBufferDef_t@FI@ucFlags", - "What": "FieldDecl", - "defdec": "Def", - "display": "ucFlags", - "location": { - "column": "10", - "line": "150", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "ucFlags", - "origin": "project_file", - "scope": "StreamBufferDef_t" - }, - { - "ID": "c:@S@StreamBufferDef_t@FI@uxStreamBufferNumber", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxStreamBufferNumber", - "location": { - "column": "15", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "uxStreamBufferNumber", - "origin": "project_file", - "scope": "StreamBufferDef_t" - } - ], - "name": "StreamBufferDef_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@T@StreamBuffer_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct StreamBufferDef_t", - "location": { - "column": "3", - "line": "155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "StreamBuffer_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@F@prvBytesInBuffer", - "What": "Function", - "defdec": "Dec", - "display": "size_t prvBytesInBuffer(const StreamBuffer_t *const)", - "location": { - "column": "15", - "line": "160", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "prvBytesInBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@F@prvWriteBytesToBuffer", - "What": "Function", - "defdec": "Dec", - "display": "size_t prvWriteBytesToBuffer(StreamBuffer_t *const, const uint8_t *, size_t)", - "location": { - "column": "15", - "line": "168", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "prvWriteBytesToBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@F@prvReadMessageFromBuffer", - "What": "Function", - "defdec": "Dec", - "display": "size_t prvReadMessageFromBuffer(StreamBuffer_t *, void *, size_t, size_t, size_t)", - "location": { - "column": "15", - "line": "177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "prvReadMessageFromBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@F@prvWriteMessageToBuffer", - "What": "Function", - "defdec": "Dec", - "display": "size_t prvWriteMessageToBuffer(StreamBuffer_t *const, const void *, size_t, size_t, size_t)", - "location": { - "column": "15", - "line": "190", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "prvWriteMessageToBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@F@prvReadBytesFromBuffer", - "What": "Function", - "defdec": "Dec", - "display": "size_t prvReadBytesFromBuffer(StreamBuffer_t *, uint8_t *, size_t, size_t)", - "location": { - "column": "15", - "line": "200", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "prvReadBytesFromBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@F@prvInitialiseNewStreamBuffer", - "What": "Function", - "defdec": "Dec", - "display": "void prvInitialiseNewStreamBuffer(StreamBuffer_t *const, uint8_t *const, size_t, size_t, uint8_t)", - "location": { - "column": "13", - "line": "209", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "prvInitialiseNewStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferGenericCreate", - "What": "Function", - "defdec": "Def", - "display": "StreamBufferHandle_t xStreamBufferGenericCreate(size_t, size_t, BaseType_t)", - "location": { - "column": "23", - "line": "219", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferGenericCreate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@10009@F@xStreamBufferGenericCreate@pucAllocatedMemory", - "What": "Variable", - "defdec": "Def", - "display": "pucAllocatedMemory", - "location": { - "column": "11", - "line": "221", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pucAllocatedMemory", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@10040@F@xStreamBufferGenericCreate@ucFlags", - "What": "Variable", - "defdec": "Def", - "display": "ucFlags", - "location": { - "column": "10", - "line": "222", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "ucFlags", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vStreamBufferDelete", - "What": "Function", - "defdec": "Def", - "display": "void vStreamBufferDelete(StreamBufferHandle_t)", - "location": { - "column": "6", - "line": "359", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "vStreamBufferDelete", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@15608@F@vStreamBufferDelete@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "18", - "line": "361", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferReset", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xStreamBufferReset(StreamBufferHandle_t)", - "location": { - "column": "12", - "line": "392", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferReset", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@16765@F@xStreamBufferReset@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "24", - "line": "394", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@16821@F@xStreamBufferReset@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "395", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@16892@F@xStreamBufferReset@uxStreamBufferNumber", - "What": "Variable", - "defdec": "Def", - "display": "uxStreamBufferNumber", - "location": { - "column": "14", - "line": "398", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "uxStreamBufferNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferSetTriggerLevel", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xStreamBufferSetTriggerLevel(StreamBufferHandle_t, size_t)", - "location": { - "column": "12", - "line": "441", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferSetTriggerLevel", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@18065@F@xStreamBufferSetTriggerLevel@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "24", - "line": "443", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@18121@F@xStreamBufferSetTriggerLevel@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "444", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferSpacesAvailable", - "What": "Function", - "defdec": "Def", - "display": "size_t xStreamBufferSpacesAvailable(StreamBufferHandle_t)", - "location": { - "column": "8", - "line": "470", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferSpacesAvailable", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@18792@F@xStreamBufferSpacesAvailable@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "30", - "line": "472", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@18854@F@xStreamBufferSpacesAvailable@xSpace", - "What": "Variable", - "defdec": "Def", - "display": "xSpace", - "location": { - "column": "8", - "line": "473", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xSpace", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferBytesAvailable", - "What": "Function", - "defdec": "Def", - "display": "size_t xStreamBufferBytesAvailable(StreamBufferHandle_t)", - "location": { - "column": "8", - "line": "494", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferBytesAvailable", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@19329@F@xStreamBufferBytesAvailable@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "30", - "line": "496", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@19391@F@xStreamBufferBytesAvailable@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "8", - "line": "497", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferSend", - "What": "Function", - "defdec": "Def", - "display": "size_t xStreamBufferSend(StreamBufferHandle_t, const void *, size_t, TickType_t)", - "location": { - "column": "8", - "line": "506", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferSend", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@19748@F@xStreamBufferSend@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "24", - "line": "511", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@19804@F@xStreamBufferSend@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "8", - "line": "512", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@19804@F@xStreamBufferSend@xSpace", - "What": "Variable", - "defdec": "Dec", - "display": "xSpace", - "location": { - "column": "17", - "line": "512", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xSpace", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@19833@F@xStreamBufferSend@xRequiredSpace", - "What": "Variable", - "defdec": "Def", - "display": "xRequiredSpace", - "location": { - "column": "8", - "line": "513", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xRequiredSpace", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@19876@F@xStreamBufferSend@xTimeOut", - "What": "Variable", - "defdec": "Def", - "display": "xTimeOut", - "location": { - "column": "11", - "line": "514", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xTimeOut", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferSendFromISR", - "What": "Function", - "defdec": "Def", - "display": "size_t xStreamBufferSendFromISR(StreamBufferHandle_t, const void *, size_t, BaseType_t *const)", - "location": { - "column": "8", - "line": "610", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferSendFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@22440@F@xStreamBufferSendFromISR@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "24", - "line": "615", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@22496@F@xStreamBufferSendFromISR@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "8", - "line": "616", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@22496@F@xStreamBufferSendFromISR@xSpace", - "What": "Variable", - "defdec": "Dec", - "display": "xSpace", - "location": { - "column": "17", - "line": "616", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xSpace", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@22521@F@xStreamBufferSendFromISR@xRequiredSpace", - "What": "Variable", - "defdec": "Def", - "display": "xRequiredSpace", - "location": { - "column": "8", - "line": "617", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xRequiredSpace", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@23383@F@xStreamBufferSendFromISR@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "4", - "line": "643", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@F@prvWriteMessageToBuffer", - "What": "Function", - "defdec": "Def", - "display": "size_t prvWriteMessageToBuffer(StreamBuffer_t *const, const void *, size_t, size_t, size_t)", - "location": { - "column": "15", - "line": "661", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "prvWriteMessageToBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@23932@F@prvWriteMessageToBuffer@xShouldWrite", - "What": "Variable", - "defdec": "Def", - "display": "xShouldWrite", - "location": { - "column": "13", - "line": "667", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xShouldWrite", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@23959@F@prvWriteMessageToBuffer@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "9", - "line": "668", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferReceive", - "What": "Function", - "defdec": "Def", - "display": "size_t xStreamBufferReceive(StreamBufferHandle_t, void *, size_t, TickType_t)", - "location": { - "column": "8", - "line": "713", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferReceive", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@25629@F@xStreamBufferReceive@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "24", - "line": "718", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@25685@F@xStreamBufferReceive@xReceivedLength", - "What": "Variable", - "defdec": "Def", - "display": "xReceivedLength", - "location": { - "column": "8", - "line": "719", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReceivedLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@25685@F@xStreamBufferReceive@xBytesAvailable", - "What": "Variable", - "defdec": "Dec", - "display": "xBytesAvailable", - "location": { - "column": "29", - "line": "719", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xBytesAvailable", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@25685@F@xStreamBufferReceive@xBytesToStoreMessageLength", - "What": "Variable", - "defdec": "Dec", - "display": "xBytesToStoreMessageLength", - "location": { - "column": "46", - "line": "719", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xBytesToStoreMessageLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferNextMessageLengthBytes", - "What": "Function", - "defdec": "Def", - "display": "size_t xStreamBufferNextMessageLengthBytes(StreamBufferHandle_t)", - "location": { - "column": "8", - "line": "817", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferNextMessageLengthBytes", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@28898@F@xStreamBufferNextMessageLengthBytes@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "24", - "line": "819", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@28954@F@xStreamBufferNextMessageLengthBytes@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "8", - "line": "820", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@28954@F@xStreamBufferNextMessageLengthBytes@xBytesAvailable", - "What": "Variable", - "defdec": "Dec", - "display": "xBytesAvailable", - "location": { - "column": "17", - "line": "820", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xBytesAvailable", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@28954@F@xStreamBufferNextMessageLengthBytes@xOriginalTail", - "What": "Variable", - "defdec": "Dec", - "display": "xOriginalTail", - "location": { - "column": "34", - "line": "820", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xOriginalTail", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@29003@F@xStreamBufferNextMessageLengthBytes@xTempReturn", - "What": "Variable", - "defdec": "Def", - "display": "xTempReturn", - "location": { - "column": "34", - "line": "821", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xTempReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferReceiveFromISR", - "What": "Function", - "defdec": "Def", - "display": "size_t xStreamBufferReceiveFromISR(StreamBufferHandle_t, void *, size_t, BaseType_t *const)", - "location": { - "column": "8", - "line": "861", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferReceiveFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@30625@F@xStreamBufferReceiveFromISR@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "24", - "line": "866", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@30681@F@xStreamBufferReceiveFromISR@xReceivedLength", - "What": "Variable", - "defdec": "Def", - "display": "xReceivedLength", - "location": { - "column": "8", - "line": "867", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReceivedLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@30681@F@xStreamBufferReceiveFromISR@xBytesAvailable", - "What": "Variable", - "defdec": "Dec", - "display": "xBytesAvailable", - "location": { - "column": "29", - "line": "867", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xBytesAvailable", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@30681@F@xStreamBufferReceiveFromISR@xBytesToStoreMessageLength", - "What": "Variable", - "defdec": "Dec", - "display": "xBytesToStoreMessageLength", - "location": { - "column": "46", - "line": "867", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xBytesToStoreMessageLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@31998@F@xStreamBufferReceiveFromISR@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "4", - "line": "900", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@F@prvReadMessageFromBuffer", - "What": "Function", - "defdec": "Def", - "display": "size_t prvReadMessageFromBuffer(StreamBuffer_t *, void *, size_t, size_t, size_t)", - "location": { - "column": "15", - "line": "918", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "prvReadMessageFromBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@32571@F@prvReadMessageFromBuffer@xOriginalTail", - "What": "Variable", - "defdec": "Def", - "display": "xOriginalTail", - "location": { - "column": "8", - "line": "924", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xOriginalTail", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@32571@F@prvReadMessageFromBuffer@xReceivedLength", - "What": "Variable", - "defdec": "Dec", - "display": "xReceivedLength", - "location": { - "column": "23", - "line": "924", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReceivedLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@32571@F@prvReadMessageFromBuffer@xNextMessageLength", - "What": "Variable", - "defdec": "Dec", - "display": "xNextMessageLength", - "location": { - "column": "40", - "line": "924", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xNextMessageLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@32631@F@prvReadMessageFromBuffer@xTempNextMessageLength", - "What": "Variable", - "defdec": "Def", - "display": "xTempNextMessageLength", - "location": { - "column": "34", - "line": "925", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xTempNextMessageLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferIsEmpty", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xStreamBufferIsEmpty(StreamBufferHandle_t)", - "location": { - "column": "12", - "line": "970", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferIsEmpty", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@34421@F@xStreamBufferIsEmpty@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "30", - "line": "972", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@34483@F@xStreamBufferIsEmpty@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "973", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@34504@F@xStreamBufferIsEmpty@xTail", - "What": "Variable", - "defdec": "Def", - "display": "xTail", - "location": { - "column": "8", - "line": "974", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xTail", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferIsFull", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xStreamBufferIsFull(StreamBufferHandle_t)", - "location": { - "column": "12", - "line": "993", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferIsFull", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@34898@F@xStreamBufferIsFull@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "995", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@34919@F@xStreamBufferIsFull@xBytesToStoreMessageLength", - "What": "Variable", - "defdec": "Def", - "display": "xBytesToStoreMessageLength", - "location": { - "column": "8", - "line": "996", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xBytesToStoreMessageLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@34955@F@xStreamBufferIsFull@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "30", - "line": "997", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferSendCompletedFromISR", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xStreamBufferSendCompletedFromISR(StreamBufferHandle_t, BaseType_t *)", - "location": { - "column": "12", - "line": "1028", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferSendCompletedFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@35977@F@xStreamBufferSendCompletedFromISR@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "24", - "line": "1030", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@36033@F@xStreamBufferSendCompletedFromISR@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "1031", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@36054@F@xStreamBufferSendCompletedFromISR@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "13", - "line": "1032", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferReceiveCompletedFromISR", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xStreamBufferReceiveCompletedFromISR(StreamBufferHandle_t, BaseType_t *)", - "location": { - "column": "12", - "line": "1058", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xStreamBufferReceiveCompletedFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@36851@F@xStreamBufferReceiveCompletedFromISR@pxStreamBuffer", - "What": "Variable", - "defdec": "Def", - "display": "pxStreamBuffer", - "location": { - "column": "24", - "line": "1060", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "pxStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@36907@F@xStreamBufferReceiveCompletedFromISR@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "1061", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@36928@F@xStreamBufferReceiveCompletedFromISR@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "13", - "line": "1062", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@F@prvWriteBytesToBuffer", - "What": "Function", - "defdec": "Def", - "display": "size_t prvWriteBytesToBuffer(StreamBuffer_t *const, const uint8_t *, size_t)", - "location": { - "column": "15", - "line": "1088", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "prvWriteBytesToBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@37707@F@prvWriteBytesToBuffer@xNextHead", - "What": "Variable", - "defdec": "Def", - "display": "xNextHead", - "location": { - "column": "8", - "line": "1090", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xNextHead", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@37707@F@prvWriteBytesToBuffer@xFirstLength", - "What": "Variable", - "defdec": "Dec", - "display": "xFirstLength", - "location": { - "column": "19", - "line": "1090", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xFirstLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@F@prvReadBytesFromBuffer", - "What": "Function", - "defdec": "Def", - "display": "size_t prvReadBytesFromBuffer(StreamBuffer_t *, uint8_t *, size_t, size_t)", - "location": { - "column": "15", - "line": "1134", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "prvReadBytesFromBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@39341@F@prvReadBytesFromBuffer@xCount", - "What": "Variable", - "defdec": "Def", - "display": "xCount", - "location": { - "column": "8", - "line": "1136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@39341@F@prvReadBytesFromBuffer@xFirstLength", - "What": "Variable", - "defdec": "Dec", - "display": "xFirstLength", - "location": { - "column": "16", - "line": "1136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xFirstLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@39341@F@prvReadBytesFromBuffer@xNextTail", - "What": "Variable", - "defdec": "Dec", - "display": "xNextTail", - "location": { - "column": "30", - "line": "1136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xNextTail", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@F@prvBytesInBuffer", - "What": "Function", - "defdec": "Def", - "display": "size_t prvBytesInBuffer(const StreamBuffer_t *const)", - "location": { - "column": "15", - "line": "1189", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "prvBytesInBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@41240@F@prvBytesInBuffer@xCount", - "What": "Variable", - "defdec": "Def", - "display": "xCount", - "location": { - "column": "8", - "line": "1192", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@F@prvInitialiseNewStreamBuffer", - "What": "Function", - "defdec": "Def", - "display": "void prvInitialiseNewStreamBuffer(StreamBuffer_t *const, uint8_t *const, size_t, size_t, uint8_t)", - "location": { - "column": "13", - "line": "1209", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "prvInitialiseNewStreamBuffer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.c@42266@F@prvInitialiseNewStreamBuffer@xWriteValue", - "What": "Variable", - "defdec": "Def", - "display": "xWriteValue", - "location": { - "column": "20", - "line": "1223", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "xWriteValue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxStreamBufferGetStreamBufferNumber", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t uxStreamBufferGetStreamBufferNumber(StreamBufferHandle_t)", - "location": { - "column": "14", - "line": "1237", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "uxStreamBufferGetStreamBufferNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vStreamBufferSetStreamBufferNumber", - "What": "Function", - "defdec": "Def", - "display": "void vStreamBufferSetStreamBufferNumber(StreamBufferHandle_t, UBaseType_t)", - "location": { - "column": "7", - "line": "1247", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "vStreamBufferSetStreamBufferNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@ucStreamBufferGetStreamBufferType", - "What": "Function", - "defdec": "Def", - "display": "uint8_t ucStreamBufferGetStreamBufferType(StreamBufferHandle_t)", - "location": { - "column": "10", - "line": "1257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\stream_buffer.c" - }, - "name": "ucStreamBufferGetStreamBufferType", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@1590@macro@MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "location": { - "column": "9", - "line": "35", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@2910@macro@taskYIELD_IF_USING_PREEMPTION", - "What": "MacroDef", - "defdec": "Def", - "display": "taskYIELD_IF_USING_PREEMPTION", - "location": { - "column": "10", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "taskYIELD_IF_USING_PREEMPTION", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@3059@macro@taskNOT_WAITING_NOTIFICATION", - "What": "MacroDef", - "defdec": "Def", - "display": "taskNOT_WAITING_NOTIFICATION", - "location": { - "column": "9", - "line": "68", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "taskNOT_WAITING_NOTIFICATION", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@3115@macro@taskWAITING_NOTIFICATION", - "What": "MacroDef", - "defdec": "Def", - "display": "taskWAITING_NOTIFICATION", - "location": { - "column": "9", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "taskWAITING_NOTIFICATION", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@3168@macro@taskNOTIFICATION_RECEIVED", - "What": "MacroDef", - "defdec": "Def", - "display": "taskNOTIFICATION_RECEIVED", - "location": { - "column": "9", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "taskNOTIFICATION_RECEIVED", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@3375@macro@tskSTACK_FILL_BYTE", - "What": "MacroDef", - "defdec": "Def", - "display": "tskSTACK_FILL_BYTE", - "location": { - "column": "9", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "tskSTACK_FILL_BYTE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@3486@macro@tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB", - "What": "MacroDef", - "defdec": "Def", - "display": "tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB", - "location": { - "column": "9", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@3554@macro@tskSTATICALLY_ALLOCATED_STACK_ONLY", - "What": "MacroDef", - "defdec": "Def", - "display": "tskSTATICALLY_ALLOCATED_STACK_ONLY", - "location": { - "column": "9", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "tskSTATICALLY_ALLOCATED_STACK_ONLY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@3619@macro@tskSTATICALLY_ALLOCATED_STACK_AND_TCB", - "What": "MacroDef", - "defdec": "Def", - "display": "tskSTATICALLY_ALLOCATED_STACK_AND_TCB", - "location": { - "column": "9", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "tskSTATICALLY_ALLOCATED_STACK_AND_TCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@4108@macro@tskSET_NEW_STACKS_TO_KNOWN_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "tskSET_NEW_STACKS_TO_KNOWN_VALUE", - "location": { - "column": "10", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "tskSET_NEW_STACKS_TO_KNOWN_VALUE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@4290@macro@tskRUNNING_CHAR", - "What": "MacroDef", - "defdec": "Def", - "display": "tskRUNNING_CHAR", - "location": { - "column": "9", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "tskRUNNING_CHAR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@4324@macro@tskBLOCKED_CHAR", - "What": "MacroDef", - "defdec": "Def", - "display": "tskBLOCKED_CHAR", - "location": { - "column": "9", - "line": "96", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "tskBLOCKED_CHAR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@4358@macro@tskREADY_CHAR", - "What": "MacroDef", - "defdec": "Def", - "display": "tskREADY_CHAR", - "location": { - "column": "9", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "tskREADY_CHAR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@4390@macro@tskDELETED_CHAR", - "What": "MacroDef", - "defdec": "Def", - "display": "tskDELETED_CHAR", - "location": { - "column": "9", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "tskDELETED_CHAR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@4424@macro@tskSUSPENDED_CHAR", - "What": "MacroDef", - "defdec": "Def", - "display": "tskSUSPENDED_CHAR", - "location": { - "column": "9", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "tskSUSPENDED_CHAR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@4804@macro@configIDLE_TASK_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "configIDLE_TASK_NAME", - "location": { - "column": "10", - "line": "112", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "configIDLE_TASK_NAME", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@5180@macro@taskRECORD_READY_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "taskRECORD_READY_PRIORITY", - "location": { - "column": "10", - "line": "123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "taskRECORD_READY_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@5557@macro@taskSELECT_HIGHEST_PRIORITY_TASK", - "What": "MacroDef", - "defdec": "Def", - "display": "taskSELECT_HIGHEST_PRIORITY_TASK", - "location": { - "column": "10", - "line": "133", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "taskSELECT_HIGHEST_PRIORITY_TASK", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@6673@macro@taskRESET_READY_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "taskRESET_READY_PRIORITY", - "location": { - "column": "10", - "line": "155", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "taskRESET_READY_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@6722@macro@portRESET_READY_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "portRESET_READY_PRIORITY", - "location": { - "column": "10", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "portRESET_READY_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@8677@macro@taskSWITCH_DELAYED_LISTS", - "What": "MacroDef", - "defdec": "Def", - "display": "taskSWITCH_DELAYED_LISTS", - "location": { - "column": "9", - "line": "198", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "taskSWITCH_DELAYED_LISTS", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@9483@macro@prvAddTaskToReadyList", - "What": "MacroDef", - "defdec": "Def", - "display": "prvAddTaskToReadyList", - "location": { - "column": "9", - "line": "218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvAddTaskToReadyList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@10210@macro@prvGetTCBFromHandle", - "What": "MacroDef", - "defdec": "Def", - "display": "prvGetTCBFromHandle", - "location": { - "column": "9", - "line": "231", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvGetTCBFromHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@11010@macro@taskEVENT_LIST_ITEM_VALUE_IN_USE", - "What": "MacroDef", - "defdec": "Def", - "display": "taskEVENT_LIST_ITEM_VALUE_IN_USE", - "location": { - "column": "10", - "line": "244", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "taskEVENT_LIST_ITEM_VALUE_IN_USE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@tskTaskControlBlock", - "What": "Struct", - "defdec": "Def", - "display": "tskTaskControlBlock", - "location": { - "column": "16", - "line": "252", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "members": [ - { - "ID": "c:@S@tskTaskControlBlock@FI@pxTopOfStack", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxTopOfStack", - "location": { - "column": "24", - "line": "254", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTopOfStack", - "origin": "project_file", - "scope": "tskTaskControlBlock" - }, - { - "ID": "c:@S@tskTaskControlBlock@FI@xStateListItem", - "What": "FieldDecl", - "defdec": "Def", - "display": "xStateListItem", - "location": { - "column": "15", - "line": "260", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xStateListItem", - "origin": "project_file", - "scope": "tskTaskControlBlock" - }, - { - "ID": "c:@S@tskTaskControlBlock@FI@xEventListItem", - "What": "FieldDecl", - "defdec": "Def", - "display": "xEventListItem", - "location": { - "column": "15", - "line": "261", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xEventListItem", - "origin": "project_file", - "scope": "tskTaskControlBlock" - }, - { - "ID": "c:@S@tskTaskControlBlock@FI@uxPriority", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxPriority", - "location": { - "column": "16", - "line": "262", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxPriority", - "origin": "project_file", - "scope": "tskTaskControlBlock" - }, - { - "ID": "c:@S@tskTaskControlBlock@FI@pxStack", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxStack", - "location": { - "column": "17", - "line": "263", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxStack", - "origin": "project_file", - "scope": "tskTaskControlBlock" - }, - { - "ID": "c:@S@tskTaskControlBlock@FI@pcTaskName", - "What": "FieldDecl", - "defdec": "Def", - "display": "pcTaskName", - "location": { - "column": "10", - "line": "264", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pcTaskName", - "origin": "project_file", - "scope": "tskTaskControlBlock" - }, - { - "ID": "c:@S@tskTaskControlBlock@FI@uxTCBNumber", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxTCBNumber", - "location": { - "column": "16", - "line": "275", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxTCBNumber", - "origin": "project_file", - "scope": "tskTaskControlBlock" - }, - { - "ID": "c:@S@tskTaskControlBlock@FI@uxTaskNumber", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxTaskNumber", - "location": { - "column": "16", - "line": "276", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxTaskNumber", - "origin": "project_file", - "scope": "tskTaskControlBlock" - }, - { - "ID": "c:@S@tskTaskControlBlock@FI@uxBasePriority", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxBasePriority", - "location": { - "column": "16", - "line": "280", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxBasePriority", - "origin": "project_file", - "scope": "tskTaskControlBlock" - }, - { - "ID": "c:@S@tskTaskControlBlock@FI@uxMutexesHeld", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxMutexesHeld", - "location": { - "column": "16", - "line": "281", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxMutexesHeld", - "origin": "project_file", - "scope": "tskTaskControlBlock" - }, - { - "ID": "c:@S@tskTaskControlBlock@FI@ulNotifiedValue", - "What": "FieldDecl", - "defdec": "Def", - "display": "ulNotifiedValue", - "location": { - "column": "21", - "line": "311", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "ulNotifiedValue", - "origin": "project_file", - "scope": "tskTaskControlBlock" - }, - { - "ID": "c:@S@tskTaskControlBlock@FI@ucNotifyState", - "What": "FieldDecl", - "defdec": "Def", - "display": "ucNotifyState", - "location": { - "column": "20", - "line": "312", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "ucNotifyState", - "origin": "project_file", - "scope": "tskTaskControlBlock" - } - ], - "name": "tskTaskControlBlock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@T@tskTCB", - "What": "Typedef", - "defdec": "Def", - "display": "struct tskTaskControlBlock", - "location": { - "column": "3", - "line": "329", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "tskTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@T@TCB_t", - "What": "Typedef", - "defdec": "Def", - "display": "tskTCB", - "location": { - "column": "16", - "line": "333", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "TCB_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@pxCurrentTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxCurrentTCB", - "location": { - "column": "34", - "line": "337", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxCurrentTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@pxReadyTasksLists", - "What": "Variable", - "defdec": "Dec", - "display": "pxReadyTasksLists", - "location": { - "column": "31", - "line": "343", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxReadyTasksLists", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@xDelayedTaskList1", - "What": "Variable", - "defdec": "Dec", - "display": "xDelayedTaskList1", - "location": { - "column": "31", - "line": "344", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xDelayedTaskList1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@xDelayedTaskList2", - "What": "Variable", - "defdec": "Dec", - "display": "xDelayedTaskList2", - "location": { - "column": "31", - "line": "345", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xDelayedTaskList2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@pxDelayedTaskList", - "What": "Variable", - "defdec": "Dec", - "display": "pxDelayedTaskList", - "location": { - "column": "42", - "line": "346", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxDelayedTaskList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@pxOverflowDelayedTaskList", - "What": "Variable", - "defdec": "Dec", - "display": "pxOverflowDelayedTaskList", - "location": { - "column": "42", - "line": "347", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxOverflowDelayedTaskList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@xPendingReadyList", - "What": "Variable", - "defdec": "Dec", - "display": "xPendingReadyList", - "location": { - "column": "31", - "line": "348", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xPendingReadyList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@xTasksWaitingTermination", - "What": "Variable", - "defdec": "Dec", - "display": "xTasksWaitingTermination", - "location": { - "column": "32", - "line": "352", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTasksWaitingTermination", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@uxDeletedTasksWaitingCleanUp", - "What": "Variable", - "defdec": "Def", - "display": "uxDeletedTasksWaitingCleanUp", - "location": { - "column": "46", - "line": "353", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxDeletedTasksWaitingCleanUp", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@xSuspendedTaskList", - "What": "Variable", - "defdec": "Dec", - "display": "xSuspendedTaskList", - "location": { - "column": "32", - "line": "359", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xSuspendedTaskList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@uxCurrentNumberOfTasks", - "What": "Variable", - "defdec": "Def", - "display": "uxCurrentNumberOfTasks", - "location": { - "column": "45", - "line": "370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxCurrentNumberOfTasks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@xTickCount", - "What": "Variable", - "defdec": "Def", - "display": "xTickCount", - "location": { - "column": "44", - "line": "371", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTickCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@uxTopReadyPriority", - "What": "Variable", - "defdec": "Def", - "display": "uxTopReadyPriority", - "location": { - "column": "45", - "line": "372", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxTopReadyPriority", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@xSchedulerRunning", - "What": "Variable", - "defdec": "Def", - "display": "xSchedulerRunning", - "location": { - "column": "44", - "line": "373", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xSchedulerRunning", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@xPendedTicks", - "What": "Variable", - "defdec": "Def", - "display": "xPendedTicks", - "location": { - "column": "44", - "line": "374", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xPendedTicks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@xYieldPending", - "What": "Variable", - "defdec": "Def", - "display": "xYieldPending", - "location": { - "column": "44", - "line": "375", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xYieldPending", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@xNumOfOverflows", - "What": "Variable", - "defdec": "Def", - "display": "xNumOfOverflows", - "location": { - "column": "44", - "line": "376", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xNumOfOverflows", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@uxTaskNumber", - "What": "Variable", - "defdec": "Def", - "display": "uxTaskNumber", - "location": { - "column": "36", - "line": "377", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxTaskNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@xNextTaskUnblockTime", - "What": "Variable", - "defdec": "Def", - "display": "xNextTaskUnblockTime", - "location": { - "column": "44", - "line": "378", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xNextTaskUnblockTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@xIdleTaskHandle", - "What": "Variable", - "defdec": "Def", - "display": "xIdleTaskHandle", - "location": { - "column": "37", - "line": "379", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xIdleTaskHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@uxSchedulerSuspended", - "What": "Variable", - "defdec": "Def", - "display": "uxSchedulerSuspended", - "location": { - "column": "45", - "line": "389", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxSchedulerSuspended", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vApplicationStackOverflowHook", - "What": "Function", - "defdec": "Dec", - "display": "void vApplicationStackOverflowHook(TaskHandle_t, char *)", - "location": { - "column": "14", - "line": "407", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vApplicationStackOverflowHook", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vApplicationTickHook", - "What": "Function", - "defdec": "Dec", - "display": "void vApplicationTickHook(void)", - "location": { - "column": "14", - "line": "413", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vApplicationTickHook", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvTaskIsTaskSuspended", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t prvTaskIsTaskSuspended(const TaskHandle_t)", - "location": { - "column": "20", - "line": "432", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvTaskIsTaskSuspended", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvInitialiseTaskLists", - "What": "Function", - "defdec": "Dec", - "display": "void prvInitialiseTaskLists(void)", - "location": { - "column": "13", - "line": "440", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvInitialiseTaskLists", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvIdleTask", - "What": "Function", - "defdec": "Dec", - "display": "void prvIdleTask(void *)", - "location": { - "column": "8", - "line": "453", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvIdleTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvDeleteTCB", - "What": "Function", - "defdec": "Dec", - "display": "void prvDeleteTCB(TCB_t *)", - "location": { - "column": "14", - "line": "464", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvDeleteTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvCheckTasksWaitingTermination", - "What": "Function", - "defdec": "Dec", - "display": "void prvCheckTasksWaitingTermination(void)", - "location": { - "column": "13", - "line": "473", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvCheckTasksWaitingTermination", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvAddCurrentTaskToDelayedList", - "What": "Function", - "defdec": "Dec", - "display": "void prvAddCurrentTaskToDelayedList(TickType_t, const BaseType_t)", - "location": { - "column": "13", - "line": "479", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvAddCurrentTaskToDelayedList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvListTasksWithinSingleList", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t prvListTasksWithinSingleList(TaskStatus_t *, List_t *, eTaskState)", - "location": { - "column": "21", - "line": "491", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvListTasksWithinSingleList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvTaskCheckFreeStackSpace", - "What": "Function", - "defdec": "Dec", - "display": "uint16_t prvTaskCheckFreeStackSpace(const uint8_t *)", - "location": { - "column": "32", - "line": "512", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvTaskCheckFreeStackSpace", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvGetExpectedIdleTime", - "What": "Function", - "defdec": "Dec", - "display": "TickType_t prvGetExpectedIdleTime(void)", - "location": { - "column": "20", - "line": "527", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvGetExpectedIdleTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvResetNextTaskUnblockTime", - "What": "Function", - "defdec": "Dec", - "display": "void prvResetNextTaskUnblockTime(void)", - "location": { - "column": "13", - "line": "535", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvResetNextTaskUnblockTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvInitialiseNewTask", - "What": "Function", - "defdec": "Dec", - "display": "void prvInitialiseNewTask(TaskFunction_t, const char *const, const uint32_t, void *const, UBaseType_t, TaskHandle_t *const, TCB_t *, const MemoryRegion_t *const)", - "location": { - "column": "13", - "line": "551", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvInitialiseNewTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvAddNewTaskToReadyList", - "What": "Function", - "defdec": "Dec", - "display": "void prvAddNewTaskToReadyList(TCB_t *)", - "location": { - "column": "13", - "line": "564", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvAddNewTaskToReadyList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskCreate", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskCreate(TaskFunction_t, const char *const, const uint16_t, void *const, UBaseType_t, TaskHandle_t *const)", - "location": { - "column": "13", - "line": "733", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskCreate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@31842@F@xTaskCreate@pxNewTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxNewTCB", - "location": { - "column": "9", - "line": "740", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxNewTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@31861@F@xTaskCreate@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "13", - "line": "741", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@32982@F@xTaskCreate@pxStack", - "What": "Variable", - "defdec": "Def", - "display": "pxStack", - "location": { - "column": "16", - "line": "770", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxStack", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvInitialiseNewTask", - "What": "Function", - "defdec": "Def", - "display": "void prvInitialiseNewTask(TaskFunction_t, const char *const, const uint32_t, void *const, UBaseType_t, TaskHandle_t *const, TCB_t *, const MemoryRegion_t *const)", - "location": { - "column": "13", - "line": "824", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvInitialiseNewTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@35283@F@prvInitialiseNewTask@pxTopOfStack", - "What": "Variable", - "defdec": "Def", - "display": "pxTopOfStack", - "location": { - "column": "14", - "line": "833", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTopOfStack", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@35311@F@prvInitialiseNewTask@x", - "What": "Variable", - "defdec": "Def", - "display": "x", - "location": { - "column": "13", - "line": "834", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "x", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvAddNewTaskToReadyList", - "What": "Function", - "defdec": "Def", - "display": "void prvAddNewTaskToReadyList(TCB_t *)", - "location": { - "column": "13", - "line": "1077", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvAddNewTaskToReadyList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskDelete", - "What": "Function", - "defdec": "Def", - "display": "void vTaskDelete(TaskHandle_t)", - "location": { - "column": "7", - "line": "1162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskDelete", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@45410@F@vTaskDelete@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "9", - "line": "1164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskDelayUntil", - "What": "Function", - "defdec": "Def", - "display": "void vTaskDelayUntil(TickType_t *const, const TickType_t)", - "location": { - "column": "7", - "line": "1257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskDelayUntil", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@48396@F@vTaskDelayUntil@xTimeToWake", - "What": "Variable", - "defdec": "Def", - "display": "xTimeToWake", - "location": { - "column": "13", - "line": "1259", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTimeToWake", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@48422@F@vTaskDelayUntil@xAlreadyYielded", - "What": "Variable", - "defdec": "Def", - "display": "xAlreadyYielded", - "location": { - "column": "13", - "line": "1260", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xAlreadyYielded", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@48422@F@vTaskDelayUntil@xShouldDelay", - "What": "Variable", - "defdec": "Dec", - "display": "xShouldDelay", - "location": { - "column": "30", - "line": "1260", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xShouldDelay", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@48717@F@vTaskDelayUntil@xConstTickCount", - "What": "Variable", - "defdec": "Def", - "display": "xConstTickCount", - "location": { - "column": "21", - "line": "1270", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xConstTickCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskDelay", - "What": "Function", - "defdec": "Def", - "display": "void vTaskDelay(const TickType_t)", - "location": { - "column": "7", - "line": "1341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskDelay", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@50757@F@vTaskDelay@xAlreadyYielded", - "What": "Variable", - "defdec": "Def", - "display": "xAlreadyYielded", - "location": { - "column": "13", - "line": "1343", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xAlreadyYielded", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@eTaskGetState", - "What": "Function", - "defdec": "Def", - "display": "eTaskState eTaskGetState(TaskHandle_t)", - "location": { - "column": "13", - "line": "1386", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "eTaskGetState", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@51967@F@eTaskGetState@eReturn", - "What": "Variable", - "defdec": "Def", - "display": "eReturn", - "location": { - "column": "13", - "line": "1388", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "eReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@51989@F@eTaskGetState@pxStateList", - "What": "Variable", - "defdec": "Def", - "display": "pxStateList", - "location": { - "column": "17", - "line": "1389", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxStateList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@51989@F@eTaskGetState@pxDelayedList", - "What": "Variable", - "defdec": "Dec", - "display": "pxDelayedList", - "location": { - "column": "31", - "line": "1389", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxDelayedList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@51989@F@eTaskGetState@pxOverflowedDelayedList", - "What": "Variable", - "defdec": "Dec", - "display": "pxOverflowedDelayedList", - "location": { - "column": "47", - "line": "1389", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxOverflowedDelayedList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@52061@F@eTaskGetState@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "22", - "line": "1390", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxTaskPriorityGet", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t uxTaskPriorityGet(const TaskHandle_t)", - "location": { - "column": "14", - "line": "1478", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxTaskPriorityGet", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@54544@F@uxTaskPriorityGet@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "15", - "line": "1480", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@54566@F@uxTaskPriorityGet@uxReturn", - "What": "Variable", - "defdec": "Def", - "display": "uxReturn", - "location": { - "column": "14", - "line": "1481", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxTaskPriorityGetFromISR", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t uxTaskPriorityGetFromISR(const TaskHandle_t)", - "location": { - "column": "14", - "line": "1500", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxTaskPriorityGetFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@55106@F@uxTaskPriorityGetFromISR@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "15", - "line": "1502", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@55128@F@uxTaskPriorityGetFromISR@uxReturn", - "What": "Variable", - "defdec": "Def", - "display": "uxReturn", - "location": { - "column": "14", - "line": "1503", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@55128@F@uxTaskPriorityGetFromISR@uxSavedInterruptState", - "What": "Variable", - "defdec": "Dec", - "display": "uxSavedInterruptState", - "location": { - "column": "24", - "line": "1503", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxSavedInterruptState", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskPrioritySet", - "What": "Function", - "defdec": "Def", - "display": "void vTaskPrioritySet(TaskHandle_t, UBaseType_t)", - "location": { - "column": "7", - "line": "1540", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskPrioritySet", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@56865@F@vTaskPrioritySet@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "9", - "line": "1542", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@56881@F@vTaskPrioritySet@uxCurrentBasePriority", - "What": "Variable", - "defdec": "Def", - "display": "uxCurrentBasePriority", - "location": { - "column": "14", - "line": "1543", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxCurrentBasePriority", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@56881@F@vTaskPrioritySet@uxPriorityUsedOnEntry", - "What": "Variable", - "defdec": "Dec", - "display": "uxPriorityUsedOnEntry", - "location": { - "column": "37", - "line": "1543", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxPriorityUsedOnEntry", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@56941@F@vTaskPrioritySet@xYieldRequired", - "What": "Variable", - "defdec": "Def", - "display": "xYieldRequired", - "location": { - "column": "13", - "line": "1544", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xYieldRequired", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskSuspend", - "What": "Function", - "defdec": "Def", - "display": "void vTaskSuspend(TaskHandle_t)", - "location": { - "column": "7", - "line": "1704", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskSuspend", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@61817@F@vTaskSuspend@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "9", - "line": "1706", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvTaskIsTaskSuspended", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t prvTaskIsTaskSuspended(const TaskHandle_t)", - "location": { - "column": "20", - "line": "1805", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvTaskIsTaskSuspended", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@64447@F@prvTaskIsTaskSuspended@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "13", - "line": "1807", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@64479@F@prvTaskIsTaskSuspended@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "22", - "line": "1808", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskResume", - "What": "Function", - "defdec": "Def", - "display": "void vTaskResume(TaskHandle_t)", - "location": { - "column": "7", - "line": "1851", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskResume", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@65807@F@vTaskResume@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "16", - "line": "1853", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskResumeFromISR", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskResumeFromISR(TaskHandle_t)", - "location": { - "column": "13", - "line": "1905", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskResumeFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@67249@F@xTaskResumeFromISR@xYieldRequired", - "What": "Variable", - "defdec": "Def", - "display": "xYieldRequired", - "location": { - "column": "13", - "line": "1907", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xYieldRequired", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@67288@F@xTaskResumeFromISR@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "16", - "line": "1908", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@67327@F@xTaskResumeFromISR@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "14", - "line": "1909", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskStartScheduler", - "What": "Function", - "defdec": "Def", - "display": "void vTaskStartScheduler(void)", - "location": { - "column": "6", - "line": "1975", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskStartScheduler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@69796@F@vTaskStartScheduler@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "1977", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskEndScheduler", - "What": "Function", - "defdec": "Def", - "display": "void vTaskEndScheduler(void)", - "location": { - "column": "6", - "line": "2099", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskEndScheduler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskSuspendAll", - "What": "Function", - "defdec": "Def", - "display": "void vTaskSuspendAll(void)", - "location": { - "column": "6", - "line": "2110", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskSuspendAll", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvGetExpectedIdleTime", - "What": "Function", - "defdec": "Def", - "display": "TickType_t prvGetExpectedIdleTime(void)", - "location": { - "column": "20", - "line": "2123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvGetExpectedIdleTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@74982@F@prvGetExpectedIdleTime@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "13", - "line": "2125", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@75004@F@prvGetExpectedIdleTime@uxHigherPriorityReadyTasks", - "What": "Variable", - "defdec": "Def", - "display": "uxHigherPriorityReadyTasks", - "location": { - "column": "14", - "line": "2126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxHigherPriorityReadyTasks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskResumeAll", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskResumeAll(void)", - "location": { - "column": "12", - "line": "2184", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskResumeAll", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@76818@F@xTaskResumeAll@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "8", - "line": "2186", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@76840@F@xTaskResumeAll@xAlreadyYielded", - "What": "Variable", - "defdec": "Def", - "display": "xAlreadyYielded", - "location": { - "column": "12", - "line": "2187", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xAlreadyYielded", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@76879@F@xTaskResumeAll@xTicksToNextUnblockTime", - "What": "Variable", - "defdec": "Def", - "display": "xTicksToNextUnblockTime", - "location": { - "column": "12", - "line": "2188", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTicksToNextUnblockTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskGetTickCount", - "What": "Function", - "defdec": "Def", - "display": "TickType_t xTaskGetTickCount(void)", - "location": { - "column": "12", - "line": "2316", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskGetTickCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@81555@F@xTaskGetTickCount@xTicks", - "What": "Variable", - "defdec": "Def", - "display": "xTicks", - "location": { - "column": "12", - "line": "2318", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTicks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskGetTickCountFromISR", - "What": "Function", - "defdec": "Def", - "display": "TickType_t xTaskGetTickCountFromISR(void)", - "location": { - "column": "12", - "line": "2331", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskGetTickCountFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@81881@F@xTaskGetTickCountFromISR@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "2333", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@81902@F@xTaskGetTickCountFromISR@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "13", - "line": "2334", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxTaskGetNumberOfTasks", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t uxTaskGetNumberOfTasks(void)", - "location": { - "column": "13", - "line": "2362", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxTaskGetNumberOfTasks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@pcTaskGetName", - "What": "Function", - "defdec": "Def", - "display": "char * pcTaskGetName(TaskHandle_t)", - "location": { - "column": "7", - "line": "2370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pcTaskGetName", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@83689@F@pcTaskGetName@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "8", - "line": "2372", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxTaskGetSystemState", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t uxTaskGetSystemState(TaskStatus_t *const, const UBaseType_t, uint32_t *const)", - "location": { - "column": "14", - "line": "2517", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxTaskGetSystemState", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@87818@F@uxTaskGetSystemState@uxTask", - "What": "Variable", - "defdec": "Def", - "display": "uxTask", - "location": { - "column": "14", - "line": "2519", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@87818@F@uxTaskGetSystemState@uxQueue", - "What": "Variable", - "defdec": "Dec", - "display": "uxQueue", - "location": { - "column": "26", - "line": "2519", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskStepTick", - "What": "Function", - "defdec": "Def", - "display": "void vTaskStepTick(const TickType_t)", - "location": { - "column": "7", - "line": "2608", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskStepTick", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskCatchUpTicks", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskCatchUpTicks(TickType_t)", - "location": { - "column": "12", - "line": "2621", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskCatchUpTicks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@91299@F@xTaskCatchUpTicks@xYieldRequired", - "What": "Variable", - "defdec": "Def", - "display": "xYieldRequired", - "location": { - "column": "12", - "line": "2623", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xYieldRequired", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskIncrementTick", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskIncrementTick(void)", - "location": { - "column": "12", - "line": "2715", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskIncrementTick", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@94028@F@xTaskIncrementTick@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "9", - "line": "2717", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@94044@F@xTaskIncrementTick@xItemValue", - "What": "Variable", - "defdec": "Def", - "display": "xItemValue", - "location": { - "column": "12", - "line": "2718", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xItemValue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@94068@F@xTaskIncrementTick@xSwitchRequired", - "What": "Variable", - "defdec": "Def", - "display": "xSwitchRequired", - "location": { - "column": "12", - "line": "2719", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xSwitchRequired", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@94465@F@xTaskIncrementTick@xConstTickCount", - "What": "Variable", - "defdec": "Def", - "display": "xConstTickCount", - "location": { - "column": "20", - "line": "2729", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xConstTickCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@94818@F@xTaskIncrementTick@pxTemp", - "What": "Variable", - "defdec": "Def", - "display": "pxTemp", - "location": { - "column": "4", - "line": "2737", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTemp", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskSwitchContext", - "What": "Function", - "defdec": "Def", - "display": "void vTaskSwitchContext(void)", - "location": { - "column": "6", - "line": "2997", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskSwitchContext", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@103361@F@vTaskSwitchContext@pulStack", - "What": "Variable", - "defdec": "Def", - "display": "pulStack", - "location": { - "column": "3", - "line": "3038", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pulStack", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@103361@F@vTaskSwitchContext@ulCheckValue", - "What": "Variable", - "defdec": "Def", - "display": "ulCheckValue", - "location": { - "column": "3", - "line": "3038", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "ulCheckValue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@103672@F@vTaskSwitchContext@uxTopPriority", - "What": "Variable", - "defdec": "Def", - "display": "uxTopPriority", - "location": { - "column": "3", - "line": "3049", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxTopPriority", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@103672@F@vTaskSwitchContext@pxConstList", - "What": "Variable", - "defdec": "Def", - "display": "pxConstList", - "location": { - "column": "3", - "line": "3049", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxConstList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskPlaceOnEventList", - "What": "Function", - "defdec": "Def", - "display": "void vTaskPlaceOnEventList(List_t *const, const TickType_t)", - "location": { - "column": "6", - "line": "3072", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskPlaceOnEventList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskPlaceOnUnorderedEventList", - "What": "Function", - "defdec": "Def", - "display": "void vTaskPlaceOnUnorderedEventList(List_t *, const TickType_t, const TickType_t)", - "location": { - "column": "6", - "line": "3089", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskPlaceOnUnorderedEventList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskPlaceOnEventListRestricted", - "What": "Function", - "defdec": "Def", - "display": "void vTaskPlaceOnEventListRestricted(List_t *const, TickType_t, const BaseType_t)", - "location": { - "column": "7", - "line": "3115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskPlaceOnEventListRestricted", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskRemoveFromEventList", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskRemoveFromEventList(const List_t *const)", - "location": { - "column": "12", - "line": "3146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskRemoveFromEventList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@107833@F@xTaskRemoveFromEventList@pxUnblockedTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxUnblockedTCB", - "location": { - "column": "8", - "line": "3148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxUnblockedTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@107857@F@xTaskRemoveFromEventList@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "3149", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskRemoveFromUnorderedEventList", - "What": "Function", - "defdec": "Def", - "display": "void vTaskRemoveFromUnorderedEventList(ListItem_t *, const TickType_t)", - "location": { - "column": "6", - "line": "3214", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskRemoveFromUnorderedEventList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@110617@F@vTaskRemoveFromUnorderedEventList@pxUnblockedTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxUnblockedTCB", - "location": { - "column": "8", - "line": "3216", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxUnblockedTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskSetTimeOutState", - "What": "Function", - "defdec": "Def", - "display": "void vTaskSetTimeOutState(TimeOut_t *const)", - "location": { - "column": "6", - "line": "3248", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskSetTimeOutState", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskInternalSetTimeOutState", - "What": "Function", - "defdec": "Def", - "display": "void vTaskInternalSetTimeOutState(TimeOut_t *const)", - "location": { - "column": "6", - "line": "3260", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskInternalSetTimeOutState", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskCheckForTimeOut", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskCheckForTimeOut(TimeOut_t *const, TickType_t *const)", - "location": { - "column": "12", - "line": "3268", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskCheckForTimeOut", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@112797@F@xTaskCheckForTimeOut@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "3270", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@112988@F@xTaskCheckForTimeOut@xConstTickCount", - "What": "Variable", - "defdec": "Def", - "display": "xConstTickCount", - "location": { - "column": "20", - "line": "3278", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xConstTickCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@113038@F@xTaskCheckForTimeOut@xElapsedTime", - "What": "Variable", - "defdec": "Def", - "display": "xElapsedTime", - "location": { - "column": "20", - "line": "3279", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xElapsedTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskMissedYield", - "What": "Function", - "defdec": "Def", - "display": "void vTaskMissedYield(void)", - "location": { - "column": "6", - "line": "3331", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskMissedYield", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxTaskGetTaskNumber", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t uxTaskGetTaskNumber(TaskHandle_t)", - "location": { - "column": "14", - "line": "3339", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxTaskGetTaskNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@115037@F@uxTaskGetTaskNumber@uxReturn", - "What": "Variable", - "defdec": "Def", - "display": "uxReturn", - "location": { - "column": "14", - "line": "3341", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@115061@F@uxTaskGetTaskNumber@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "15", - "line": "3342", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskSetTaskNumber", - "What": "Function", - "defdec": "Def", - "display": "void vTaskSetTaskNumber(TaskHandle_t, const UBaseType_t)", - "location": { - "column": "7", - "line": "3362", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskSetTaskNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@115465@F@vTaskSetTaskNumber@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "10", - "line": "3364", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvIdleTask", - "What": "Function", - "defdec": "Def", - "display": "void prvIdleTask(void *)", - "location": { - "column": "8", - "line": "3386", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvIdleTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@118589@F@prvIdleTask@xExpectedIdleTime", - "What": "Variable", - "defdec": "Def", - "display": "xExpectedIdleTime", - "location": { - "column": "14", - "line": "3456", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xExpectedIdleTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@eTaskConfirmSleepModeStatus", - "What": "Function", - "defdec": "Def", - "display": "eSleepModeStatus eTaskConfirmSleepModeStatus(void)", - "location": { - "column": "19", - "line": "3505", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "eTaskConfirmSleepModeStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@120187@F@eTaskConfirmSleepModeStatus@uxNonApplicationTasks", - "What": "Variable", - "defdec": "Def", - "display": "uxNonApplicationTasks", - "location": { - "column": "20", - "line": "3508", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxNonApplicationTasks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@120234@F@eTaskConfirmSleepModeStatus@eReturn", - "What": "Variable", - "defdec": "Def", - "display": "eReturn", - "location": { - "column": "19", - "line": "3509", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "eReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvInitialiseTaskLists", - "What": "Function", - "defdec": "Def", - "display": "void prvInitialiseTaskLists(void)", - "location": { - "column": "13", - "line": "3598", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvInitialiseTaskLists", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@122768@F@prvInitialiseTaskLists@uxPriority", - "What": "Variable", - "defdec": "Def", - "display": "uxPriority", - "location": { - "column": "13", - "line": "3600", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxPriority", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvCheckTasksWaitingTermination", - "What": "Function", - "defdec": "Def", - "display": "void prvCheckTasksWaitingTermination(void)", - "location": { - "column": "13", - "line": "3630", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvCheckTasksWaitingTermination", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@123769@F@prvCheckTasksWaitingTermination@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "10", - "line": "3637", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskGetInfo", - "What": "Function", - "defdec": "Def", - "display": "void vTaskGetInfo(TaskHandle_t, TaskStatus_t *, BaseType_t, eTaskState)", - "location": { - "column": "7", - "line": "3661", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskGetInfo", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@124726@F@vTaskGetInfo@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "9", - "line": "3663", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvListTasksWithinSingleList", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t prvListTasksWithinSingleList(TaskStatus_t *, List_t *, eTaskState)", - "location": { - "column": "21", - "line": "3757", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvListTasksWithinSingleList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@127341@F@prvListTasksWithinSingleList@pxNextTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxNextTCB", - "location": { - "column": "29", - "line": "3759", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxNextTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@127341@F@prvListTasksWithinSingleList@pxFirstTCB", - "What": "Variable", - "defdec": "Dec", - "display": "pxFirstTCB", - "location": { - "column": "41", - "line": "3759", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxFirstTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@127374@F@prvListTasksWithinSingleList@uxTask", - "What": "Variable", - "defdec": "Def", - "display": "uxTask", - "location": { - "column": "14", - "line": "3760", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@127472@F@prvListTasksWithinSingleList@pxConstList", - "What": "Variable", - "defdec": "Def", - "display": "pxConstList", - "location": { - "column": "4", - "line": "3764", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxConstList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@127961@F@prvListTasksWithinSingleList@pxConstList", - "What": "Variable", - "defdec": "Def", - "display": "pxConstList", - "location": { - "column": "5", - "line": "3772", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxConstList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvTaskCheckFreeStackSpace", - "What": "Function", - "defdec": "Def", - "display": "uint16_t prvTaskCheckFreeStackSpace(const uint8_t *)", - "location": { - "column": "32", - "line": "3790", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvTaskCheckFreeStackSpace", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@128768@F@prvTaskCheckFreeStackSpace@ulCount", - "What": "Variable", - "defdec": "Def", - "display": "ulCount", - "location": { - "column": "11", - "line": "3792", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "ulCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvDeleteTCB", - "What": "Function", - "defdec": "Def", - "display": "void prvDeleteTCB(TCB_t *)", - "location": { - "column": "14", - "line": "3878", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvDeleteTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvResetNextTaskUnblockTime", - "What": "Function", - "defdec": "Def", - "display": "void prvResetNextTaskUnblockTime(void)", - "location": { - "column": "13", - "line": "3934", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvResetNextTaskUnblockTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@133531@F@prvResetNextTaskUnblockTime@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "8", - "line": "3936", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskGetCurrentTaskHandle", - "What": "Function", - "defdec": "Def", - "display": "TaskHandle_t xTaskGetCurrentTaskHandle(void)", - "location": { - "column": "15", - "line": "3960", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskGetCurrentTaskHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@134687@F@xTaskGetCurrentTaskHandle@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "15", - "line": "3962", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskGetSchedulerState", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskGetSchedulerState(void)", - "location": { - "column": "13", - "line": "3977", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskGetSchedulerState", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@135224@F@xTaskGetSchedulerState@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "13", - "line": "3979", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskPriorityInherit", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskPriorityInherit(const TaskHandle_t)", - "location": { - "column": "13", - "line": "4005", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskPriorityInherit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@135813@F@xTaskPriorityInherit@pxMutexHolderTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxMutexHolderTCB", - "location": { - "column": "16", - "line": "4007", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxMutexHolderTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@135863@F@xTaskPriorityInherit@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "13", - "line": "4008", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskPriorityDisinherit", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskPriorityDisinherit(const TaskHandle_t)", - "location": { - "column": "13", - "line": "4095", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskPriorityDisinherit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@139024@F@xTaskPriorityDisinherit@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "16", - "line": "4097", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@139063@F@xTaskPriorityDisinherit@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "13", - "line": "4098", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskPriorityDisinheritAfterTimeout", - "What": "Function", - "defdec": "Def", - "display": "void vTaskPriorityDisinheritAfterTimeout(const TaskHandle_t, UBaseType_t)", - "location": { - "column": "7", - "line": "4175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskPriorityDisinheritAfterTimeout", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@141893@F@vTaskPriorityDisinheritAfterTimeout@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "16", - "line": "4177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@141932@F@vTaskPriorityDisinheritAfterTimeout@uxPriorityUsedOnEntry", - "What": "Variable", - "defdec": "Def", - "display": "uxPriorityUsedOnEntry", - "location": { - "column": "14", - "line": "4178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxPriorityUsedOnEntry", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@141932@F@vTaskPriorityDisinheritAfterTimeout@uxPriorityToUse", - "What": "Variable", - "defdec": "Dec", - "display": "uxPriorityToUse", - "location": { - "column": "37", - "line": "4178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxPriorityToUse", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@141986@F@vTaskPriorityDisinheritAfterTimeout@uxOnlyOneMutexHeld", - "What": "Variable", - "defdec": "Def", - "display": "uxOnlyOneMutexHeld", - "location": { - "column": "20", - "line": "4179", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxOnlyOneMutexHeld", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxTaskResetEventItemValue", - "What": "Function", - "defdec": "Def", - "display": "TickType_t uxTaskResetEventItemValue(void)", - "location": { - "column": "12", - "line": "4593", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxTaskResetEventItemValue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@157160@F@uxTaskResetEventItemValue@uxReturn", - "What": "Variable", - "defdec": "Def", - "display": "uxReturn", - "location": { - "column": "12", - "line": "4595", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@pvTaskIncrementMutexHeldCount", - "What": "Function", - "defdec": "Def", - "display": "TaskHandle_t pvTaskIncrementMutexHeldCount(void)", - "location": { - "column": "15", - "line": "4609", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pvTaskIncrementMutexHeldCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@ulTaskNotifyTake", - "What": "Function", - "defdec": "Def", - "display": "uint32_t ulTaskNotifyTake(BaseType_t, TickType_t)", - "location": { - "column": "11", - "line": "4626", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "ulTaskNotifyTake", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@158234@F@ulTaskNotifyTake@ulReturn", - "What": "Variable", - "defdec": "Def", - "display": "ulReturn", - "location": { - "column": "11", - "line": "4628", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "ulReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskNotifyWait", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskNotifyWait(uint32_t, uint32_t, uint32_t *, TickType_t)", - "location": { - "column": "13", - "line": "4694", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskNotifyWait", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@159909@F@xTaskNotifyWait@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "13", - "line": "4696", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskGenericNotify", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskGenericNotify(TaskHandle_t, uint32_t, eNotifyAction, uint32_t *)", - "location": { - "column": "13", - "line": "4774", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskGenericNotify", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@162306@F@xTaskGenericNotify@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "10", - "line": "4776", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@162323@F@xTaskGenericNotify@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "13", - "line": "4777", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@162354@F@xTaskGenericNotify@ucOriginalNotifyState", - "What": "Variable", - "defdec": "Def", - "display": "ucOriginalNotifyState", - "location": { - "column": "10", - "line": "4778", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "ucOriginalNotifyState", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskGenericNotifyFromISR", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskGenericNotifyFromISR(TaskHandle_t, uint32_t, eNotifyAction, uint32_t *, BaseType_t *)", - "location": { - "column": "13", - "line": "4888", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskGenericNotifyFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@165523@F@xTaskGenericNotifyFromISR@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "10", - "line": "4890", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@165540@F@xTaskGenericNotifyFromISR@ucOriginalNotifyState", - "What": "Variable", - "defdec": "Def", - "display": "ucOriginalNotifyState", - "location": { - "column": "10", - "line": "4891", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "ucOriginalNotifyState", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@165573@F@xTaskGenericNotifyFromISR@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "13", - "line": "4892", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@165604@F@xTaskGenericNotifyFromISR@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "14", - "line": "4893", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTaskNotifyGiveFromISR", - "What": "Function", - "defdec": "Def", - "display": "void vTaskNotifyGiveFromISR(TaskHandle_t, BaseType_t *)", - "location": { - "column": "7", - "line": "5017", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "vTaskNotifyGiveFromISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@169680@F@vTaskNotifyGiveFromISR@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "10", - "line": "5019", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@169697@F@vTaskNotifyGiveFromISR@ucOriginalNotifyState", - "What": "Variable", - "defdec": "Def", - "display": "ucOriginalNotifyState", - "location": { - "column": "10", - "line": "5020", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "ucOriginalNotifyState", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@169730@F@vTaskNotifyGiveFromISR@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "14", - "line": "5021", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTaskNotifyStateClear", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTaskNotifyStateClear(TaskHandle_t)", - "location": { - "column": "13", - "line": "5104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTaskNotifyStateClear", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@172834@F@xTaskNotifyStateClear@pxTCB", - "What": "Variable", - "defdec": "Def", - "display": "pxTCB", - "location": { - "column": "9", - "line": "5106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "pxTCB", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@172850@F@xTaskNotifyStateClear@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "13", - "line": "5107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@F@prvAddCurrentTaskToDelayedList", - "What": "Function", - "defdec": "Def", - "display": "void prvAddCurrentTaskToDelayedList(TickType_t, const BaseType_t)", - "location": { - "column": "13", - "line": "5143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "prvAddCurrentTaskToDelayedList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@173805@F@prvAddCurrentTaskToDelayedList@xTimeToWake", - "What": "Variable", - "defdec": "Def", - "display": "xTimeToWake", - "location": { - "column": "12", - "line": "5145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xTimeToWake", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:tasks.c@173830@F@prvAddCurrentTaskToDelayedList@xConstTickCount", - "What": "Variable", - "defdec": "Def", - "display": "xConstTickCount", - "location": { - "column": "18", - "line": "5146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\tasks.c" - }, - "name": "xConstTickCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:event_groups.h@1335@macro@EVENT_GROUPS_H", - "What": "MacroDef", - "defdec": "Def", - "display": "EVENT_GROUPS_H", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "EVENT_GROUPS_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@EventGroupDef_t", - "What": "Struct", - "defdec": "Dec", - "display": "EventGroupDef_t", - "location": { - "column": "8", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "members": [], - "name": "EventGroupDef_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:event_groups.h@T@EventGroupHandle_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct EventGroupDef_t *", - "location": { - "column": "34", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "EventGroupHandle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:event_groups.h@T@EventBits_t", - "What": "Typedef", - "defdec": "Def", - "display": "TickType_t", - "location": { - "column": "20", - "line": "92", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "EventBits_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xEventGroupCreate", - "What": "Function", - "defdec": "Dec", - "display": "EventGroupHandle_t xEventGroupCreate(void)", - "location": { - "column": "21", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "xEventGroupCreate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xEventGroupWaitBits", - "What": "Function", - "defdec": "Dec", - "display": "EventBits_t xEventGroupWaitBits(EventGroupHandle_t, const EventBits_t, const BaseType_t, const BaseType_t, TickType_t)", - "location": { - "column": "13", - "line": "295", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "xEventGroupWaitBits", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xEventGroupClearBits", - "What": "Function", - "defdec": "Dec", - "display": "EventBits_t xEventGroupClearBits(EventGroupHandle_t, const EventBits_t)", - "location": { - "column": "13", - "line": "352", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "xEventGroupClearBits", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xEventGroupClearBitsFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xEventGroupClearBitsFromISR(EventGroupHandle_t, const EventBits_t)", - "location": { - "column": "13", - "line": "408", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "xEventGroupClearBitsFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xEventGroupSetBits", - "What": "Function", - "defdec": "Dec", - "display": "EventBits_t xEventGroupSetBits(EventGroupHandle_t, const EventBits_t)", - "location": { - "column": "13", - "line": "485", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "xEventGroupSetBits", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xEventGroupSetBitsFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xEventGroupSetBitsFromISR(EventGroupHandle_t, const EventBits_t, BaseType_t *)", - "location": { - "column": "13", - "line": "560", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "xEventGroupSetBitsFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xEventGroupSync", - "What": "Function", - "defdec": "Dec", - "display": "EventBits_t xEventGroupSync(EventGroupHandle_t, const EventBits_t, const EventBits_t, TickType_t)", - "location": { - "column": "13", - "line": "689", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "xEventGroupSync", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:event_groups.h@28839@macro@xEventGroupGetBits", - "What": "MacroDef", - "defdec": "Def", - "display": "xEventGroupGetBits", - "location": { - "column": "9", - "line": "708", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "xEventGroupGetBits", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xEventGroupGetBitsFromISR", - "What": "Function", - "defdec": "Dec", - "display": "EventBits_t xEventGroupGetBitsFromISR(EventGroupHandle_t)", - "location": { - "column": "13", - "line": "725", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "xEventGroupGetBitsFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vEventGroupDelete", - "What": "Function", - "defdec": "Dec", - "display": "void vEventGroupDelete(EventGroupHandle_t)", - "location": { - "column": "6", - "line": "739", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "vEventGroupDelete", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vEventGroupSetBitsCallback", - "What": "Function", - "defdec": "Dec", - "display": "void vEventGroupSetBitsCallback(void *, const uint32_t)", - "location": { - "column": "6", - "line": "742", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "vEventGroupSetBitsCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vEventGroupClearBitsCallback", - "What": "Function", - "defdec": "Dec", - "display": "void vEventGroupClearBitsCallback(void *, const uint32_t)", - "location": { - "column": "6", - "line": "743", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "vEventGroupClearBitsCallback", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxEventGroupGetNumber", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxEventGroupGetNumber(void *)", - "location": { - "column": "14", - "line": "747", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "uxEventGroupGetNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vEventGroupSetNumber", - "What": "Function", - "defdec": "Dec", - "display": "void vEventGroupSetNumber(void *, UBaseType_t)", - "location": { - "column": "7", - "line": "748", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\event_groups.h" - }, - "name": "vEventGroupSetNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vListInitialise", - "What": "Function", - "defdec": "Def", - "display": "void vListInitialise(List_t *const)", - "location": { - "column": "6", - "line": "37", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\list.c" - }, - "name": "vListInitialise", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vListInitialiseItem", - "What": "Function", - "defdec": "Def", - "display": "void vListInitialiseItem(ListItem_t *const)", - "location": { - "column": "6", - "line": "62", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\list.c" - }, - "name": "vListInitialiseItem", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vListInsertEnd", - "What": "Function", - "defdec": "Def", - "display": "void vListInsertEnd(List_t *const, ListItem_t *const)", - "location": { - "column": "6", - "line": "74", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\list.c" - }, - "name": "vListInsertEnd", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:list.c@3440@F@vListInsertEnd@pxIndex", - "What": "Variable", - "defdec": "Def", - "display": "pxIndex", - "location": { - "column": "20", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\list.c" - }, - "name": "pxIndex", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vListInsert", - "What": "Function", - "defdec": "Def", - "display": "void vListInsert(List_t *const, ListItem_t *const)", - "location": { - "column": "6", - "line": "103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\list.c" - }, - "name": "vListInsert", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:list.c@4504@F@vListInsert@pxIterator", - "What": "Variable", - "defdec": "Def", - "display": "pxIterator", - "location": { - "column": "13", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\list.c" - }, - "name": "pxIterator", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:list.c@4529@F@vListInsert@xValueOfInsertion", - "What": "Variable", - "defdec": "Def", - "display": "xValueOfInsertion", - "location": { - "column": "18", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\list.c" - }, - "name": "xValueOfInsertion", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxListRemove", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t uxListRemove(ListItem_t *const)", - "location": { - "column": "13", - "line": "170", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\list.c" - }, - "name": "uxListRemove", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:list.c@7822@F@uxListRemove@pxList", - "What": "Variable", - "defdec": "Def", - "display": "pxList", - "location": { - "column": "16", - "line": "174", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\list.c" - }, - "name": "pxList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stream_buffer.h@2640@macro@STREAM_BUFFER_H", - "What": "MacroDef", - "defdec": "Def", - "display": "STREAM_BUFFER_H", - "location": { - "column": "9", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "STREAM_BUFFER_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@StreamBufferDef_t", - "What": "Struct", - "defdec": "Dec", - "display": "StreamBufferDef_t", - "location": { - "column": "8", - "line": "68", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "members": [], - "name": "StreamBufferDef_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stream_buffer.h@T@StreamBufferHandle_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct StreamBufferDef_t *", - "location": { - "column": "36", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "StreamBufferHandle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stream_buffer.h@5979@macro@xStreamBufferCreate", - "What": "MacroDef", - "defdec": "Def", - "display": "xStreamBufferCreate", - "location": { - "column": "9", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferCreate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stream_buffer.h@9730@macro@xStreamBufferCreateStatic", - "What": "MacroDef", - "defdec": "Def", - "display": "xStreamBufferCreateStatic", - "location": { - "column": "9", - "line": "218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferCreateStatic", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferSend", - "What": "Function", - "defdec": "Dec", - "display": "size_t xStreamBufferSend(StreamBufferHandle_t, const void *, size_t, TickType_t)", - "location": { - "column": "8", - "line": "312", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferSend", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferSendFromISR", - "What": "Function", - "defdec": "Dec", - "display": "size_t xStreamBufferSendFromISR(StreamBufferHandle_t, const void *, size_t, BaseType_t *const)", - "location": { - "column": "8", - "line": "413", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferSendFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferReceive", - "What": "Function", - "defdec": "Dec", - "display": "size_t xStreamBufferReceive(StreamBufferHandle_t, void *, size_t, TickType_t)", - "location": { - "column": "8", - "line": "502", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferReceive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferReceiveFromISR", - "What": "Function", - "defdec": "Dec", - "display": "size_t xStreamBufferReceiveFromISR(StreamBufferHandle_t, void *, size_t, BaseType_t *const)", - "location": { - "column": "8", - "line": "588", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferReceiveFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vStreamBufferDelete", - "What": "Function", - "defdec": "Dec", - "display": "void vStreamBufferDelete(StreamBufferHandle_t)", - "location": { - "column": "6", - "line": "613", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "vStreamBufferDelete", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferIsFull", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xStreamBufferIsFull(StreamBufferHandle_t)", - "location": { - "column": "12", - "line": "633", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferIsFull", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferIsEmpty", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xStreamBufferIsEmpty(StreamBufferHandle_t)", - "location": { - "column": "12", - "line": "653", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferIsEmpty", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferReset", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xStreamBufferReset(StreamBufferHandle_t)", - "location": { - "column": "12", - "line": "676", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferReset", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferSpacesAvailable", - "What": "Function", - "defdec": "Dec", - "display": "size_t xStreamBufferSpacesAvailable(StreamBufferHandle_t)", - "location": { - "column": "8", - "line": "697", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferSpacesAvailable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferBytesAvailable", - "What": "Function", - "defdec": "Dec", - "display": "size_t xStreamBufferBytesAvailable(StreamBufferHandle_t)", - "location": { - "column": "8", - "line": "718", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferBytesAvailable", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferSetTriggerLevel", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xStreamBufferSetTriggerLevel(StreamBufferHandle_t, size_t)", - "location": { - "column": "12", - "line": "755", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferSetTriggerLevel", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferSendCompletedFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xStreamBufferSendCompletedFromISR(StreamBufferHandle_t, BaseType_t *)", - "location": { - "column": "12", - "line": "794", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferSendCompletedFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferReceiveCompletedFromISR", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xStreamBufferReceiveCompletedFromISR(StreamBufferHandle_t, BaseType_t *)", - "location": { - "column": "12", - "line": "834", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferReceiveCompletedFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferGenericCreate", - "What": "Function", - "defdec": "Dec", - "display": "StreamBufferHandle_t xStreamBufferGenericCreate(size_t, size_t, BaseType_t)", - "location": { - "column": "22", - "line": "837", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferGenericCreate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferGenericCreateStatic", - "What": "Function", - "defdec": "Dec", - "display": "StreamBufferHandle_t xStreamBufferGenericCreateStatic(size_t, size_t, BaseType_t, uint8_t *const, StaticStreamBuffer_t *const)", - "location": { - "column": "22", - "line": "841", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferGenericCreateStatic", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xStreamBufferNextMessageLengthBytes", - "What": "Function", - "defdec": "Dec", - "display": "size_t xStreamBufferNextMessageLengthBytes(StreamBufferHandle_t)", - "location": { - "column": "8", - "line": "847", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "xStreamBufferNextMessageLengthBytes", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vStreamBufferSetStreamBufferNumber", - "What": "Function", - "defdec": "Dec", - "display": "void vStreamBufferSetStreamBufferNumber(StreamBufferHandle_t, UBaseType_t)", - "location": { - "column": "7", - "line": "850", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "vStreamBufferSetStreamBufferNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@uxStreamBufferGetStreamBufferNumber", - "What": "Function", - "defdec": "Dec", - "display": "UBaseType_t uxStreamBufferGetStreamBufferNumber(StreamBufferHandle_t)", - "location": { - "column": "14", - "line": "851", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "uxStreamBufferGetStreamBufferNumber", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@ucStreamBufferGetStreamBufferType", - "What": "Function", - "defdec": "Dec", - "display": "uint8_t ucStreamBufferGetStreamBufferType(StreamBufferHandle_t)", - "location": { - "column": "10", - "line": "852", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stream_buffer.h" - }, - "name": "ucStreamBufferGetStreamBufferType", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:croutine.h@1333@macro@CO_ROUTINE_H", - "What": "MacroDef", - "defdec": "Def", - "display": "CO_ROUTINE_H", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "CO_ROUTINE_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:croutine.h@T@CoRoutineHandle_t", - "What": "Typedef", - "defdec": "Def", - "display": "void *", - "location": { - "column": "16", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "CoRoutineHandle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:croutine.h@T@crCOROUTINE_CODE", - "What": "Typedef", - "defdec": "Def", - "display": "void (*)(CoRoutineHandle_t, UBaseType_t)", - "location": { - "column": "16", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "crCOROUTINE_CODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@S@corCoRoutineControlBlock", - "What": "Struct", - "defdec": "Def", - "display": "corCoRoutineControlBlock", - "location": { - "column": "16", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "members": [ - { - "ID": "c:@S@corCoRoutineControlBlock@FI@pxCoRoutineFunction", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxCoRoutineFunction", - "location": { - "column": "20", - "line": "51", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "pxCoRoutineFunction", - "origin": "user_include", - "scope": "corCoRoutineControlBlock" - }, - { - "ID": "c:@S@corCoRoutineControlBlock@FI@xGenericListItem", - "What": "FieldDecl", - "defdec": "Def", - "display": "xGenericListItem", - "location": { - "column": "15", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "xGenericListItem", - "origin": "user_include", - "scope": "corCoRoutineControlBlock" - }, - { - "ID": "c:@S@corCoRoutineControlBlock@FI@xEventListItem", - "What": "FieldDecl", - "defdec": "Def", - "display": "xEventListItem", - "location": { - "column": "15", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "xEventListItem", - "origin": "user_include", - "scope": "corCoRoutineControlBlock" - }, - { - "ID": "c:@S@corCoRoutineControlBlock@FI@uxPriority", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxPriority", - "location": { - "column": "16", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "uxPriority", - "origin": "user_include", - "scope": "corCoRoutineControlBlock" - }, - { - "ID": "c:@S@corCoRoutineControlBlock@FI@uxIndex", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxIndex", - "location": { - "column": "16", - "line": "55", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "uxIndex", - "origin": "user_include", - "scope": "corCoRoutineControlBlock" - }, - { - "ID": "c:@S@corCoRoutineControlBlock@FI@uxState", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxState", - "location": { - "column": "14", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "uxState", - "origin": "user_include", - "scope": "corCoRoutineControlBlock" - } - ], - "name": "corCoRoutineControlBlock", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:croutine.h@T@CRCB_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct corCoRoutineControlBlock", - "location": { - "column": "3", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "CRCB_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xCoRoutineCreate", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xCoRoutineCreate(crCOROUTINE_CODE, UBaseType_t, UBaseType_t)", - "location": { - "column": "12", - "line": "131", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "xCoRoutineCreate", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vCoRoutineSchedule", - "What": "Function", - "defdec": "Dec", - "display": "void vCoRoutineSchedule(void)", - "location": { - "column": "6", - "line": "173", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "vCoRoutineSchedule", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:croutine.h@7357@macro@crSTART", - "What": "MacroDef", - "defdec": "Def", - "display": "crSTART", - "location": { - "column": "9", - "line": "204", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "crSTART", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:croutine.h@8156@macro@crEND", - "What": "MacroDef", - "defdec": "Def", - "display": "crEND", - "location": { - "column": "9", - "line": "235", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "crEND", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:croutine.h@8340@macro@crSET_STATE0", - "What": "MacroDef", - "defdec": "Def", - "display": "crSET_STATE0", - "location": { - "column": "9", - "line": "241", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "crSET_STATE0", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:croutine.h@8457@macro@crSET_STATE1", - "What": "MacroDef", - "defdec": "Def", - "display": "crSET_STATE1", - "location": { - "column": "9", - "line": "242", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "crSET_STATE1", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:croutine.h@10110@macro@crDELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "crDELAY", - "location": { - "column": "9", - "line": "290", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "crDELAY", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:croutine.h@13533@macro@crQUEUE_SEND", - "What": "MacroDef", - "defdec": "Def", - "display": "crQUEUE_SEND", - "location": { - "column": "9", - "line": "380", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "crQUEUE_SEND", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:croutine.h@17249@macro@crQUEUE_RECEIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "crQUEUE_RECEIVE", - "location": { - "column": "9", - "line": "472", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "crQUEUE_RECEIVE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:croutine.h@21521@macro@crQUEUE_SEND_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "crQUEUE_SEND_FROM_ISR", - "location": { - "column": "9", - "line": "581", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "crQUEUE_SEND_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:croutine.h@25558@macro@crQUEUE_RECEIVE_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "crQUEUE_RECEIVE_FROM_ISR", - "location": { - "column": "9", - "line": "694", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "crQUEUE_RECEIVE_FROM_ISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@vCoRoutineAddToDelayedList", - "What": "Function", - "defdec": "Dec", - "display": "void vCoRoutineAddToDelayedList(TickType_t, List_t *)", - "location": { - "column": "6", - "line": "705", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "vCoRoutineAddToDelayedList", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@xCoRoutineRemoveFromEventList", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t xCoRoutineRemoveFromEventList(const List_t *)", - "location": { - "column": "12", - "line": "714", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\croutine.h" - }, - "name": "xCoRoutineRemoveFromEventList", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stack_macros.h@1335@macro@STACK_MACROS_H", - "What": "MacroDef", - "defdec": "Def", - "display": "STACK_MACROS_H", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stack_macros.h" - }, - "name": "STACK_MACROS_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:stack_macros.h@3528@macro@taskCHECK_FOR_STACK_OVERFLOW", - "What": "MacroDef", - "defdec": "Def", - "display": "taskCHECK_FOR_STACK_OVERFLOW", - "location": { - "column": "10", - "line": "80", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\stack_macros.h" - }, - "name": "taskCHECK_FOR_STACK_OVERFLOW", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:timers.c@1569@macro@MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "What": "MacroDef", - "defdec": "Def", - "display": "MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "location": { - "column": "9", - "line": "34", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "MPU_WRAPPERS_INCLUDED_FROM_API_FILE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@2612@macro@tmrNO_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrNO_DELAY", - "location": { - "column": "9", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "tmrNO_DELAY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@2831@macro@configTIMER_SERVICE_TASK_NAME", - "What": "MacroDef", - "defdec": "Def", - "display": "configTIMER_SERVICE_TASK_NAME", - "location": { - "column": "10", - "line": "64", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "configTIMER_SERVICE_TASK_NAME", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@2963@macro@tmrSTATUS_IS_ACTIVE", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrSTATUS_IS_ACTIVE", - "location": { - "column": "9", - "line": "68", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "tmrSTATUS_IS_ACTIVE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@3017@macro@tmrSTATUS_IS_STATICALLY_ALLOCATED", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrSTATUS_IS_STATICALLY_ALLOCATED", - "location": { - "column": "9", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "tmrSTATUS_IS_STATICALLY_ALLOCATED", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@3081@macro@tmrSTATUS_IS_AUTORELOAD", - "What": "MacroDef", - "defdec": "Def", - "display": "tmrSTATUS_IS_AUTORELOAD", - "location": { - "column": "9", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "tmrSTATUS_IS_AUTORELOAD", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@tmrTimerControl", - "What": "Struct", - "defdec": "Def", - "display": "tmrTimerControl", - "location": { - "column": "16", - "line": "73", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "members": [ - { - "ID": "c:@S@tmrTimerControl@FI@pcTimerName", - "What": "FieldDecl", - "defdec": "Def", - "display": "pcTimerName", - "location": { - "column": "17", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pcTimerName", - "origin": "project_file", - "scope": "tmrTimerControl" - }, - { - "ID": "c:@S@tmrTimerControl@FI@xTimerListItem", - "What": "FieldDecl", - "defdec": "Def", - "display": "xTimerListItem", - "location": { - "column": "16", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerListItem", - "origin": "project_file", - "scope": "tmrTimerControl" - }, - { - "ID": "c:@S@tmrTimerControl@FI@xTimerPeriodInTicks", - "What": "FieldDecl", - "defdec": "Def", - "display": "xTimerPeriodInTicks", - "location": { - "column": "16", - "line": "77", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerPeriodInTicks", - "origin": "project_file", - "scope": "tmrTimerControl" - }, - { - "ID": "c:@S@tmrTimerControl@FI@pvTimerID", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvTimerID", - "location": { - "column": "13", - "line": "78", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pvTimerID", - "origin": "project_file", - "scope": "tmrTimerControl" - }, - { - "ID": "c:@S@tmrTimerControl@FI@pxCallbackFunction", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxCallbackFunction", - "location": { - "column": "26", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxCallbackFunction", - "origin": "project_file", - "scope": "tmrTimerControl" - }, - { - "ID": "c:@S@tmrTimerControl@FI@uxTimerNumber", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxTimerNumber", - "location": { - "column": "17", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "uxTimerNumber", - "origin": "project_file", - "scope": "tmrTimerControl" - }, - { - "ID": "c:@S@tmrTimerControl@FI@ucStatus", - "What": "FieldDecl", - "defdec": "Def", - "display": "ucStatus", - "location": { - "column": "14", - "line": "83", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "ucStatus", - "origin": "project_file", - "scope": "tmrTimerControl" - } - ], - "name": "tmrTimerControl", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@T@xTIMER", - "What": "Typedef", - "defdec": "Def", - "display": "struct tmrTimerControl", - "location": { - "column": "3", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTIMER", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@T@Timer_t", - "What": "Typedef", - "defdec": "Def", - "display": "xTIMER", - "location": { - "column": "16", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "Timer_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@tmrTimerParameters", - "What": "Struct", - "defdec": "Def", - "display": "tmrTimerParameters", - "location": { - "column": "16", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "members": [ - { - "ID": "c:@S@tmrTimerParameters@FI@xMessageValue", - "What": "FieldDecl", - "defdec": "Def", - "display": "xMessageValue", - "location": { - "column": "15", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xMessageValue", - "origin": "project_file", - "scope": "tmrTimerParameters" - }, - { - "ID": "c:@S@tmrTimerParameters@FI@pxTimer", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxTimer", - "location": { - "column": "14", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxTimer", - "origin": "project_file", - "scope": "tmrTimerParameters" - } - ], - "name": "tmrTimerParameters", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@T@TimerParameter_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct tmrTimerParameters", - "location": { - "column": "3", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "TimerParameter_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@tmrCallbackParameters", - "What": "Struct", - "defdec": "Def", - "display": "tmrCallbackParameters", - "location": { - "column": "16", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "members": [ - { - "ID": "c:@S@tmrCallbackParameters@FI@pxCallbackFunction", - "What": "FieldDecl", - "defdec": "Def", - "display": "pxCallbackFunction", - "location": { - "column": "19", - "line": "104", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxCallbackFunction", - "origin": "project_file", - "scope": "tmrCallbackParameters" - }, - { - "ID": "c:@S@tmrCallbackParameters@FI@pvParameter1", - "What": "FieldDecl", - "defdec": "Def", - "display": "pvParameter1", - "location": { - "column": "8", - "line": "105", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pvParameter1", - "origin": "project_file", - "scope": "tmrCallbackParameters" - }, - { - "ID": "c:@S@tmrCallbackParameters@FI@ulParameter2", - "What": "FieldDecl", - "defdec": "Def", - "display": "ulParameter2", - "location": { - "column": "11", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "ulParameter2", - "origin": "project_file", - "scope": "tmrCallbackParameters" - } - ], - "name": "tmrCallbackParameters", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@T@CallbackParameters_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct tmrCallbackParameters", - "location": { - "column": "3", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "CallbackParameters_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@tmrTimerQueueMessage", - "What": "Struct", - "defdec": "Def", - "display": "tmrTimerQueueMessage", - "location": { - "column": "16", - "line": "111", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "members": [ - { - "ID": "c:@S@tmrTimerQueueMessage@FI@xMessageID", - "What": "FieldDecl", - "defdec": "Def", - "display": "xMessageID", - "location": { - "column": "15", - "line": "113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xMessageID", - "origin": "project_file", - "scope": "tmrTimerQueueMessage" - }, - { - "ID": "c:@S@tmrTimerQueueMessage@U@timers.c@5726", - "What": "Union", - "defdec": "Def", - "display": "", - "location": { - "column": "2", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "members": [ - { - "ID": "c:@S@tmrTimerQueueMessage@U@timers.c@5726@FI@xTimerParameters", - "What": "FieldDecl", - "defdec": "Def", - "display": "xTimerParameters", - "location": { - "column": "20", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerParameters", - "origin": "project_file", - "scope": "tmrTimerQueueMessage::_anonymous_timers_c_114_2" - } - ], - "name": "", - "origin": "project_file", - "scope": "tmrTimerQueueMessage" - }, - { - "ID": "c:@S@tmrTimerQueueMessage@FI@u", - "What": "FieldDecl", - "defdec": "Def", - "display": "u", - "location": { - "column": "4", - "line": "123", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "u", - "origin": "project_file", - "scope": "tmrTimerQueueMessage" - } - ], - "name": "tmrTimerQueueMessage", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@T@DaemonTaskMessage_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct tmrTimerQueueMessage", - "location": { - "column": "3", - "line": "124", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "DaemonTaskMessage_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@xActiveTimerList1", - "What": "Variable", - "defdec": "Dec", - "display": "xActiveTimerList1", - "location": { - "column": "31", - "line": "135", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xActiveTimerList1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@xActiveTimerList2", - "What": "Variable", - "defdec": "Dec", - "display": "xActiveTimerList2", - "location": { - "column": "31", - "line": "136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xActiveTimerList2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@pxCurrentTimerList", - "What": "Variable", - "defdec": "Dec", - "display": "pxCurrentTimerList", - "location": { - "column": "32", - "line": "137", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxCurrentTimerList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@pxOverflowTimerList", - "What": "Variable", - "defdec": "Dec", - "display": "pxOverflowTimerList", - "location": { - "column": "32", - "line": "138", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxOverflowTimerList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@xTimerQueue", - "What": "Variable", - "defdec": "Def", - "display": "xTimerQueue", - "location": { - "column": "38", - "line": "141", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@xTimerTaskHandle", - "What": "Variable", - "defdec": "Def", - "display": "xTimerTaskHandle", - "location": { - "column": "37", - "line": "142", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerTaskHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvCheckForValidListAndQueue", - "What": "Function", - "defdec": "Dec", - "display": "void prvCheckForValidListAndQueue(void)", - "location": { - "column": "13", - "line": "162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvCheckForValidListAndQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvTimerTask", - "What": "Function", - "defdec": "Dec", - "display": "void prvTimerTask(void *)", - "location": { - "column": "8", - "line": "169", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvTimerTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvProcessReceivedCommands", - "What": "Function", - "defdec": "Dec", - "display": "void prvProcessReceivedCommands(void)", - "location": { - "column": "13", - "line": "175", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvProcessReceivedCommands", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvInsertTimerInActiveList", - "What": "Function", - "defdec": "Dec", - "display": "BaseType_t prvInsertTimerInActiveList(Timer_t *const, const TickType_t, const TickType_t, const TickType_t)", - "location": { - "column": "19", - "line": "181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvInsertTimerInActiveList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvProcessExpiredTimer", - "What": "Function", - "defdec": "Dec", - "display": "void prvProcessExpiredTimer(const TickType_t, const TickType_t)", - "location": { - "column": "13", - "line": "187", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvProcessExpiredTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvSwitchTimerLists", - "What": "Function", - "defdec": "Dec", - "display": "void prvSwitchTimerLists(void)", - "location": { - "column": "13", - "line": "193", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvSwitchTimerLists", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvSampleTimeNow", - "What": "Function", - "defdec": "Dec", - "display": "TickType_t prvSampleTimeNow(BaseType_t *const)", - "location": { - "column": "19", - "line": "199", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvSampleTimeNow", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvGetNextExpireTime", - "What": "Function", - "defdec": "Dec", - "display": "TickType_t prvGetNextExpireTime(BaseType_t *const)", - "location": { - "column": "19", - "line": "207", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvGetNextExpireTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvProcessTimerOrBlockTask", - "What": "Function", - "defdec": "Dec", - "display": "void prvProcessTimerOrBlockTask(const TickType_t, BaseType_t)", - "location": { - "column": "13", - "line": "213", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvProcessTimerOrBlockTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvInitialiseNewTimer", - "What": "Function", - "defdec": "Dec", - "display": "void prvInitialiseNewTimer(const char *const, const TickType_t, const UBaseType_t, void *const, TimerCallbackFunction_t, Timer_t *)", - "location": { - "column": "13", - "line": "219", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvInitialiseNewTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTimerCreateTimerTask", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTimerCreateTimerTask(void)", - "location": { - "column": "12", - "line": "227", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerCreateTimerTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@10585@F@xTimerCreateTimerTask@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "229", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTimerCreate", - "What": "Function", - "defdec": "Def", - "display": "TimerHandle_t xTimerCreate(const char *const, const TickType_t, const UBaseType_t, void *const, TimerCallbackFunction_t)", - "location": { - "column": "16", - "line": "282", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerCreate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@12518@F@xTimerCreate@pxNewTimer", - "What": "Variable", - "defdec": "Def", - "display": "pxNewTimer", - "location": { - "column": "11", - "line": "288", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxNewTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvInitialiseNewTimer", - "What": "Function", - "defdec": "Def", - "display": "void prvInitialiseNewTimer(const char *const, const TickType_t, const UBaseType_t, void *const, TimerCallbackFunction_t, Timer_t *)", - "location": { - "column": "13", - "line": "349", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvInitialiseNewTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTimerGenericCommand", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTimerGenericCommand(TimerHandle_t, const BaseType_t, const TickType_t, BaseType_t *const, const TickType_t)", - "location": { - "column": "12", - "line": "381", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerGenericCommand", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@16440@F@xTimerGenericCommand@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "383", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@16470@F@xTimerGenericCommand@xMessage", - "What": "Variable", - "defdec": "Def", - "display": "xMessage", - "location": { - "column": "21", - "line": "384", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xMessage", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTimerGetTimerDaemonTaskHandle", - "What": "Function", - "defdec": "Def", - "display": "TaskHandle_t xTimerGetTimerDaemonTaskHandle(void)", - "location": { - "column": "14", - "line": "424", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerGetTimerDaemonTaskHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTimerGetPeriod", - "What": "Function", - "defdec": "Def", - "display": "TickType_t xTimerGetPeriod(TimerHandle_t)", - "location": { - "column": "12", - "line": "433", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerGetPeriod", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@17915@F@xTimerGetPeriod@pxTimer", - "What": "Variable", - "defdec": "Def", - "display": "pxTimer", - "location": { - "column": "10", - "line": "435", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTimerSetReloadMode", - "What": "Function", - "defdec": "Def", - "display": "void vTimerSetReloadMode(TimerHandle_t, const UBaseType_t)", - "location": { - "column": "6", - "line": "442", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "vTimerSetReloadMode", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@18165@F@vTimerSetReloadMode@pxTimer", - "What": "Variable", - "defdec": "Def", - "display": "pxTimer", - "location": { - "column": "11", - "line": "444", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTimerGetExpiryTime", - "What": "Function", - "defdec": "Def", - "display": "TickType_t xTimerGetExpiryTime(TimerHandle_t)", - "location": { - "column": "12", - "line": "462", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerGetExpiryTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@18569@F@xTimerGetExpiryTime@pxTimer", - "What": "Variable", - "defdec": "Def", - "display": "pxTimer", - "location": { - "column": "11", - "line": "464", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@18599@F@xTimerGetExpiryTime@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "465", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@pcTimerGetName", - "What": "Function", - "defdec": "Def", - "display": "const char * pcTimerGetName(TimerHandle_t)", - "location": { - "column": "14", - "line": "473", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pcTimerGetName", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@18952@F@pcTimerGetName@pxTimer", - "What": "Variable", - "defdec": "Def", - "display": "pxTimer", - "location": { - "column": "10", - "line": "475", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvProcessExpiredTimer", - "What": "Function", - "defdec": "Def", - "display": "void prvProcessExpiredTimer(const TickType_t, const TickType_t)", - "location": { - "column": "13", - "line": "482", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvProcessExpiredTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@19211@F@prvProcessExpiredTimer@xResult", - "What": "Variable", - "defdec": "Def", - "display": "xResult", - "location": { - "column": "12", - "line": "484", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xResult", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@19232@F@prvProcessExpiredTimer@pxTimer", - "What": "Variable", - "defdec": "Def", - "display": "pxTimer", - "location": { - "column": "17", - "line": "485", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvTimerTask", - "What": "Function", - "defdec": "Def", - "display": "void prvTimerTask(void *)", - "location": { - "column": "8", - "line": "523", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvTimerTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@20918@F@prvTimerTask@xNextExpireTime", - "What": "Variable", - "defdec": "Def", - "display": "xNextExpireTime", - "location": { - "column": "12", - "line": "525", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xNextExpireTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@20947@F@prvTimerTask@xListWasEmpty", - "What": "Variable", - "defdec": "Def", - "display": "xListWasEmpty", - "location": { - "column": "12", - "line": "526", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xListWasEmpty", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvProcessTimerOrBlockTask", - "What": "Function", - "defdec": "Def", - "display": "void prvProcessTimerOrBlockTask(const TickType_t, BaseType_t)", - "location": { - "column": "13", - "line": "559", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvProcessTimerOrBlockTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@22185@F@prvProcessTimerOrBlockTask@xTimeNow", - "What": "Variable", - "defdec": "Def", - "display": "xTimeNow", - "location": { - "column": "12", - "line": "561", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimeNow", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@22207@F@prvProcessTimerOrBlockTask@xTimerListsWereSwitched", - "What": "Variable", - "defdec": "Def", - "display": "xTimerListsWereSwitched", - "location": { - "column": "12", - "line": "562", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerListsWereSwitched", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvGetNextExpireTime", - "What": "Function", - "defdec": "Def", - "display": "TickType_t prvGetNextExpireTime(BaseType_t *const)", - "location": { - "column": "19", - "line": "619", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvGetNextExpireTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@24220@F@prvGetNextExpireTime@xNextExpireTime", - "What": "Variable", - "defdec": "Def", - "display": "xNextExpireTime", - "location": { - "column": "12", - "line": "621", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xNextExpireTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvSampleTimeNow", - "What": "Function", - "defdec": "Def", - "display": "TickType_t prvSampleTimeNow(BaseType_t *const)", - "location": { - "column": "19", - "line": "645", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvSampleTimeNow", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@25181@F@prvSampleTimeNow@xTimeNow", - "What": "Variable", - "defdec": "Def", - "display": "xTimeNow", - "location": { - "column": "12", - "line": "647", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimeNow", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@25219@F@prvSampleTimeNow@xLastTime", - "What": "Variable", - "defdec": "Def", - "display": "xLastTime", - "location": { - "column": "35", - "line": "648", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xLastTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvInsertTimerInActiveList", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t prvInsertTimerInActiveList(Timer_t *const, const TickType_t, const TickType_t, const TickType_t)", - "location": { - "column": "19", - "line": "668", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvInsertTimerInActiveList", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@25806@F@prvInsertTimerInActiveList@xProcessTimerNow", - "What": "Variable", - "defdec": "Def", - "display": "xProcessTimerNow", - "location": { - "column": "12", - "line": "670", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xProcessTimerNow", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvProcessReceivedCommands", - "What": "Function", - "defdec": "Def", - "display": "void prvProcessReceivedCommands(void)", - "location": { - "column": "13", - "line": "709", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvProcessReceivedCommands", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@27166@F@prvProcessReceivedCommands@xMessage", - "What": "Variable", - "defdec": "Def", - "display": "xMessage", - "location": { - "column": "21", - "line": "711", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xMessage", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@27197@F@prvProcessReceivedCommands@pxTimer", - "What": "Variable", - "defdec": "Def", - "display": "pxTimer", - "location": { - "column": "10", - "line": "712", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@27216@F@prvProcessReceivedCommands@xTimerListsWereSwitched", - "What": "Variable", - "defdec": "Def", - "display": "xTimerListsWereSwitched", - "location": { - "column": "12", - "line": "713", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerListsWereSwitched", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@27216@F@prvProcessReceivedCommands@xResult", - "What": "Variable", - "defdec": "Dec", - "display": "xResult", - "location": { - "column": "37", - "line": "713", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xResult", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@27262@F@prvProcessReceivedCommands@xTimeNow", - "What": "Variable", - "defdec": "Def", - "display": "xTimeNow", - "location": { - "column": "12", - "line": "714", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimeNow", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvSwitchTimerLists", - "What": "Function", - "defdec": "Def", - "display": "void prvSwitchTimerLists(void)", - "location": { - "column": "13", - "line": "857", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvSwitchTimerLists", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@32588@F@prvSwitchTimerLists@xNextExpireTime", - "What": "Variable", - "defdec": "Def", - "display": "xNextExpireTime", - "location": { - "column": "12", - "line": "859", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xNextExpireTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@32588@F@prvSwitchTimerLists@xReloadTime", - "What": "Variable", - "defdec": "Dec", - "display": "xReloadTime", - "location": { - "column": "29", - "line": "859", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xReloadTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@32630@F@prvSwitchTimerLists@pxTemp", - "What": "Variable", - "defdec": "Def", - "display": "pxTemp", - "location": { - "column": "9", - "line": "860", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxTemp", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@32647@F@prvSwitchTimerLists@pxTimer", - "What": "Variable", - "defdec": "Def", - "display": "pxTimer", - "location": { - "column": "10", - "line": "861", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@32666@F@prvSwitchTimerLists@xResult", - "What": "Variable", - "defdec": "Def", - "display": "xResult", - "location": { - "column": "12", - "line": "862", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xResult", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@F@prvCheckForValidListAndQueue", - "What": "Function", - "defdec": "Def", - "display": "void prvCheckForValidListAndQueue(void)", - "location": { - "column": "13", - "line": "916", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "prvCheckForValidListAndQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xTimerIsTimerActive", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xTimerIsTimerActive(TimerHandle_t)", - "location": { - "column": "12", - "line": "967", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xTimerIsTimerActive", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@36730@F@xTimerIsTimerActive@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "969", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@36751@F@xTimerIsTimerActive@pxTimer", - "What": "Variable", - "defdec": "Def", - "display": "pxTimer", - "location": { - "column": "10", - "line": "970", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@pvTimerGetTimerID", - "What": "Function", - "defdec": "Def", - "display": "void * pvTimerGetTimerID(const TimerHandle_t)", - "location": { - "column": "7", - "line": "992", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pvTimerGetTimerID", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@37256@F@pvTimerGetTimerID@pxTimer", - "What": "Variable", - "defdec": "Def", - "display": "pxTimer", - "location": { - "column": "17", - "line": "994", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@37291@F@pvTimerGetTimerID@pvReturn", - "What": "Variable", - "defdec": "Def", - "display": "pvReturn", - "location": { - "column": "7", - "line": "995", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pvReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTimerSetTimerID", - "What": "Function", - "defdec": "Def", - "display": "void vTimerSetTimerID(TimerHandle_t, void *)", - "location": { - "column": "6", - "line": "1009", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "vTimerSetTimerID", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:timers.c@37583@F@vTimerSetTimerID@pxTimer", - "What": "Variable", - "defdec": "Def", - "display": "pxTimer", - "location": { - "column": "17", - "line": "1011", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "pxTimer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@uxTimerGetTimerNumber", - "What": "Function", - "defdec": "Def", - "display": "UBaseType_t uxTimerGetTimerNumber(TimerHandle_t)", - "location": { - "column": "14", - "line": "1078", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "uxTimerGetTimerNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vTimerSetTimerNumber", - "What": "Function", - "defdec": "Def", - "display": "void vTimerSetTimerNumber(TimerHandle_t, UBaseType_t)", - "location": { - "column": "7", - "line": "1088", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\timers.c" - }, - "name": "vTimerSetTimerNumber", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:semphr.h@1332@macro@SEMAPHORE_H", - "What": "MacroDef", - "defdec": "Def", - "display": "SEMAPHORE_H", - "location": { - "column": "9", - "line": "29", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "SEMAPHORE_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@T@SemaphoreHandle_t", - "What": "Typedef", - "defdec": "Def", - "display": "QueueHandle_t", - "location": { - "column": "23", - "line": "37", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "SemaphoreHandle_t", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@1539@macro@semBINARY_SEMAPHORE_QUEUE_LENGTH", - "What": "MacroDef", - "defdec": "Def", - "display": "semBINARY_SEMAPHORE_QUEUE_LENGTH", - "location": { - "column": "9", - "line": "39", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "semBINARY_SEMAPHORE_QUEUE_LENGTH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@1600@macro@semSEMAPHORE_QUEUE_ITEM_LENGTH", - "What": "MacroDef", - "defdec": "Def", - "display": "semSEMAPHORE_QUEUE_ITEM_LENGTH", - "location": { - "column": "9", - "line": "40", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "semSEMAPHORE_QUEUE_ITEM_LENGTH", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@1660@macro@semGIVE_BLOCK_TIME", - "What": "MacroDef", - "defdec": "Def", - "display": "semGIVE_BLOCK_TIME", - "location": { - "column": "9", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "semGIVE_BLOCK_TIME", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@3893@macro@vSemaphoreCreateBinary", - "What": "MacroDef", - "defdec": "Def", - "display": "vSemaphoreCreateBinary", - "location": { - "column": "10", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "vSemaphoreCreateBinary", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@7063@macro@xSemaphoreCreateBinary", - "What": "MacroDef", - "defdec": "Def", - "display": "xSemaphoreCreateBinary", - "location": { - "column": "10", - "line": "162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "xSemaphoreCreateBinary", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@12355@macro@xSemaphoreTake", - "What": "MacroDef", - "defdec": "Def", - "display": "xSemaphoreTake", - "location": { - "column": "9", - "line": "289", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "xSemaphoreTake", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@16207@macro@xSemaphoreTakeRecursive", - "What": "MacroDef", - "defdec": "Def", - "display": "xSemaphoreTakeRecursive", - "location": { - "column": "10", - "line": "383", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "xSemaphoreTakeRecursive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@18465@macro@xSemaphoreGive", - "What": "MacroDef", - "defdec": "Def", - "display": "xSemaphoreGive", - "location": { - "column": "9", - "line": "447", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "xSemaphoreGive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@21765@macro@xSemaphoreGiveRecursive", - "What": "MacroDef", - "defdec": "Def", - "display": "xSemaphoreGiveRecursive", - "location": { - "column": "10", - "line": "532", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "xSemaphoreGiveRecursive", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@24878@macro@xSemaphoreGiveFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "xSemaphoreGiveFromISR", - "location": { - "column": "9", - "line": "624", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "xSemaphoreGiveFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@26476@macro@xSemaphoreTakeFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "xSemaphoreTakeFromISR", - "location": { - "column": "9", - "line": "658", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "xSemaphoreTakeFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@28974@macro@xSemaphoreCreateMutex", - "What": "MacroDef", - "defdec": "Def", - "display": "xSemaphoreCreateMutex", - "location": { - "column": "10", - "line": "716", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "xSemaphoreCreateMutex", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@34686@macro@xSemaphoreCreateRecursiveMutex", - "What": "MacroDef", - "defdec": "Def", - "display": "xSemaphoreCreateRecursiveMutex", - "location": { - "column": "10", - "line": "845", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "xSemaphoreCreateRecursiveMutex", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@41859@macro@xSemaphoreCreateCounting", - "What": "MacroDef", - "defdec": "Def", - "display": "xSemaphoreCreateCounting", - "location": { - "column": "10", - "line": "998", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "xSemaphoreCreateCounting", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@46635@macro@vSemaphoreDelete", - "What": "MacroDef", - "defdec": "Def", - "display": "vSemaphoreDelete", - "location": { - "column": "9", - "line": "1098", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "vSemaphoreDelete", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@47285@macro@xSemaphoreGetMutexHolder", - "What": "MacroDef", - "defdec": "Def", - "display": "xSemaphoreGetMutexHolder", - "location": { - "column": "9", - "line": "1113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "xSemaphoreGetMutexHolder", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@47685@macro@xSemaphoreGetMutexHolderFromISR", - "What": "MacroDef", - "defdec": "Def", - "display": "xSemaphoreGetMutexHolderFromISR", - "location": { - "column": "9", - "line": "1124", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "xSemaphoreGetMutexHolderFromISR", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:semphr.h@48165@macro@uxSemaphoreGetCount", - "What": "MacroDef", - "defdec": "Def", - "display": "uxSemaphoreGetCount", - "location": { - "column": "9", - "line": "1136", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Source\\include\\semphr.h" - }, - "name": "uxSemaphoreGetCount", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:blocktim.c@1741@macro@bktPRIMARY_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "bktPRIMARY_PRIORITY", - "location": { - "column": "10", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "bktPRIMARY_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@1842@macro@bktSECONDARY_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "bktSECONDARY_PRIORITY", - "location": { - "column": "10", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "bktSECONDARY_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@1952@macro@bktBLOCK_TIME_TASK_STACK_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "bktBLOCK_TIME_TASK_STACK_SIZE", - "location": { - "column": "10", - "line": "52", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "bktBLOCK_TIME_TASK_STACK_SIZE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@2049@macro@bktQUEUE_LENGTH", - "What": "MacroDef", - "defdec": "Def", - "display": "bktQUEUE_LENGTH", - "location": { - "column": "9", - "line": "56", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "bktQUEUE_LENGTH", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@2083@macro@bktSHORT_WAIT", - "What": "MacroDef", - "defdec": "Def", - "display": "bktSHORT_WAIT", - "location": { - "column": "9", - "line": "57", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "bktSHORT_WAIT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@2144@macro@bktPRIMARY_BLOCK_TIME", - "What": "MacroDef", - "defdec": "Def", - "display": "bktPRIMARY_BLOCK_TIME", - "location": { - "column": "9", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "bktPRIMARY_BLOCK_TIME", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@2183@macro@bktALLOWABLE_MARGIN", - "What": "MacroDef", - "defdec": "Def", - "display": "bktALLOWABLE_MARGIN", - "location": { - "column": "9", - "line": "59", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "bktALLOWABLE_MARGIN", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@2221@macro@bktTIME_TO_BLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "bktTIME_TO_BLOCK", - "location": { - "column": "9", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "bktTIME_TO_BLOCK", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@2257@macro@bktDONT_BLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "bktDONT_BLOCK", - "location": { - "column": "9", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "bktDONT_BLOCK", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@2304@macro@bktRUN_INDICATOR", - "What": "MacroDef", - "defdec": "Def", - "display": "bktRUN_INDICATOR", - "location": { - "column": "9", - "line": "62", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "bktRUN_INDICATOR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@F@vPrimaryBlockTimeTestTask", - "What": "Function", - "defdec": "Dec", - "display": "void vPrimaryBlockTimeTestTask(void *)", - "location": { - "column": "13", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "vPrimaryBlockTimeTestTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@F@vSecondaryBlockTimeTestTask", - "What": "Function", - "defdec": "Dec", - "display": "void vSecondaryBlockTimeTestTask(void *)", - "location": { - "column": "13", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "vSecondaryBlockTimeTestTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@F@prvBasicDelayTests", - "What": "Function", - "defdec": "Dec", - "display": "void prvBasicDelayTests(void)", - "location": { - "column": "13", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "prvBasicDelayTests", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@xTestQueue", - "What": "Variable", - "defdec": "Dec", - "display": "xTestQueue", - "location": { - "column": "22", - "line": "86", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xTestQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@xSecondary", - "What": "Variable", - "defdec": "Dec", - "display": "xSecondary", - "location": { - "column": "21", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xSecondary", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@xPrimaryCycles", - "What": "Variable", - "defdec": "Def", - "display": "xPrimaryCycles", - "location": { - "column": "28", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xPrimaryCycles", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@xSecondaryCycles", - "What": "Variable", - "defdec": "Def", - "display": "xSecondaryCycles", - "location": { - "column": "48", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xSecondaryCycles", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@xErrorOccurred", - "What": "Variable", - "defdec": "Def", - "display": "xErrorOccurred", - "location": { - "column": "28", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xErrorOccurred", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@xRunIndicator", - "What": "Variable", - "defdec": "Dec", - "display": "xRunIndicator", - "location": { - "column": "29", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xRunIndicator", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vCreateBlockTimeTasks", - "What": "Function", - "defdec": "Def", - "display": "void vCreateBlockTimeTasks(void)", - "location": { - "column": "6", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "vCreateBlockTimeTasks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@F@vPrimaryBlockTimeTestTask", - "What": "Function", - "defdec": "Def", - "display": "void vPrimaryBlockTimeTestTask(void *)", - "location": { - "column": "13", - "line": "124", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "vPrimaryBlockTimeTestTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@4757@F@vPrimaryBlockTimeTestTask@xItem", - "What": "Variable", - "defdec": "Def", - "display": "xItem", - "location": { - "column": "12", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xItem", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@4757@F@vPrimaryBlockTimeTestTask@xData", - "What": "Variable", - "defdec": "Dec", - "display": "xData", - "location": { - "column": "19", - "line": "126", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xData", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@4783@F@vPrimaryBlockTimeTestTask@xTimeWhenBlocking", - "What": "Variable", - "defdec": "Def", - "display": "xTimeWhenBlocking", - "location": { - "column": "12", - "line": "127", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xTimeWhenBlocking", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@4814@F@vPrimaryBlockTimeTestTask@xTimeToBlock", - "What": "Variable", - "defdec": "Def", - "display": "xTimeToBlock", - "location": { - "column": "12", - "line": "128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xTimeToBlock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@4814@F@vPrimaryBlockTimeTestTask@xBlockedTime", - "What": "Variable", - "defdec": "Dec", - "display": "xBlockedTime", - "location": { - "column": "26", - "line": "128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xBlockedTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@F@vSecondaryBlockTimeTestTask", - "What": "Function", - "defdec": "Def", - "display": "void vSecondaryBlockTimeTestTask(void *)", - "location": { - "column": "13", - "line": "382", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "vSecondaryBlockTimeTestTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@12754@F@vSecondaryBlockTimeTestTask@xTimeWhenBlocking", - "What": "Variable", - "defdec": "Def", - "display": "xTimeWhenBlocking", - "location": { - "column": "12", - "line": "384", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xTimeWhenBlocking", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@12754@F@vSecondaryBlockTimeTestTask@xBlockedTime", - "What": "Variable", - "defdec": "Dec", - "display": "xBlockedTime", - "location": { - "column": "31", - "line": "384", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xBlockedTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@12799@F@vSecondaryBlockTimeTestTask@xData", - "What": "Variable", - "defdec": "Def", - "display": "xData", - "location": { - "column": "12", - "line": "385", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xData", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@F@prvBasicDelayTests", - "What": "Function", - "defdec": "Def", - "display": "void prvBasicDelayTests(void)", - "location": { - "column": "13", - "line": "472", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "prvBasicDelayTests", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@15392@F@prvBasicDelayTests@xPreTime", - "What": "Variable", - "defdec": "Def", - "display": "xPreTime", - "location": { - "column": "12", - "line": "474", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xPreTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@15392@F@prvBasicDelayTests@xPostTime", - "What": "Variable", - "defdec": "Dec", - "display": "xPostTime", - "location": { - "column": "22", - "line": "474", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xPostTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@15392@F@prvBasicDelayTests@x", - "What": "Variable", - "defdec": "Dec", - "display": "x", - "location": { - "column": "33", - "line": "474", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "x", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@15392@F@prvBasicDelayTests@xLastUnblockTime", - "What": "Variable", - "defdec": "Dec", - "display": "xLastUnblockTime", - "location": { - "column": "36", - "line": "474", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xLastUnblockTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@15392@F@prvBasicDelayTests@xExpectedUnblockTime", - "What": "Variable", - "defdec": "Dec", - "display": "xExpectedUnblockTime", - "location": { - "column": "54", - "line": "474", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xExpectedUnblockTime", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@15468@F@prvBasicDelayTests@xPeriod", - "What": "Variable", - "defdec": "Def", - "display": "xPeriod", - "location": { - "column": "18", - "line": "475", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xPeriod", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@15468@F@prvBasicDelayTests@xCycles", - "What": "Variable", - "defdec": "Dec", - "display": "xCycles", - "location": { - "column": "32", - "line": "475", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xCycles", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@15468@F@prvBasicDelayTests@xAllowableMargin", - "What": "Variable", - "defdec": "Dec", - "display": "xAllowableMargin", - "location": { - "column": "45", - "line": "475", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xAllowableMargin", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xAreBlockTimeTestTasksStillRunning", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xAreBlockTimeTestTasksStillRunning(void)", - "location": { - "column": "12", - "line": "519", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xAreBlockTimeTestTasksStillRunning", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@16962@F@xAreBlockTimeTestTasksStillRunning@xLastPrimaryCycleCount", - "What": "Variable", - "defdec": "Def", - "display": "xLastPrimaryCycleCount", - "location": { - "column": "19", - "line": "521", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xLastPrimaryCycleCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@16962@F@xAreBlockTimeTestTasksStillRunning@xLastSecondaryCycleCount", - "What": "Variable", - "defdec": "Dec", - "display": "xLastSecondaryCycleCount", - "location": { - "column": "47", - "line": "521", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xLastSecondaryCycleCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:blocktim.c@17039@F@xAreBlockTimeTestTasksStillRunning@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "522", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\blocktim.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@2513@macro@intqHIGHER_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "intqHIGHER_PRIORITY", - "location": { - "column": "10", - "line": "61", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "intqHIGHER_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@2580@macro@intqLOWER_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "intqLOWER_PRIORITY", - "location": { - "column": "9", - "line": "63", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "intqLOWER_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@2737@macro@intqNUM_VALUES_TO_LOG", - "What": "MacroDef", - "defdec": "Def", - "display": "intqNUM_VALUES_TO_LOG", - "location": { - "column": "9", - "line": "67", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "intqNUM_VALUES_TO_LOG", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@2776@macro@intqSHORT_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "intqSHORT_DELAY", - "location": { - "column": "9", - "line": "68", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "intqSHORT_DELAY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@3145@macro@intqVALUE_OVERRUN", - "What": "MacroDef", - "defdec": "Def", - "display": "intqVALUE_OVERRUN", - "location": { - "column": "9", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "intqVALUE_OVERRUN", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@3268@macro@intqONE_TICK_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "intqONE_TICK_DELAY", - "location": { - "column": "9", - "line": "79", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "intqONE_TICK_DELAY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@3543@macro@intqHIGH_PRIORITY_TASK1", - "What": "MacroDef", - "defdec": "Def", - "display": "intqHIGH_PRIORITY_TASK1", - "location": { - "column": "9", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "intqHIGH_PRIORITY_TASK1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@3598@macro@intqHIGH_PRIORITY_TASK2", - "What": "MacroDef", - "defdec": "Def", - "display": "intqHIGH_PRIORITY_TASK2", - "location": { - "column": "9", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "intqHIGH_PRIORITY_TASK2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@3653@macro@intqLOW_PRIORITY_TASK", - "What": "MacroDef", - "defdec": "Def", - "display": "intqLOW_PRIORITY_TASK", - "location": { - "column": "9", - "line": "86", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "intqLOW_PRIORITY_TASK", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@3706@macro@intqFIRST_INTERRUPT", - "What": "MacroDef", - "defdec": "Def", - "display": "intqFIRST_INTERRUPT", - "location": { - "column": "9", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "intqFIRST_INTERRUPT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@3758@macro@intqSECOND_INTERRUPT", - "What": "MacroDef", - "defdec": "Def", - "display": "intqSECOND_INTERRUPT", - "location": { - "column": "9", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "intqSECOND_INTERRUPT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@3810@macro@intqQUEUE_LENGTH", - "What": "MacroDef", - "defdec": "Def", - "display": "intqQUEUE_LENGTH", - "location": { - "column": "9", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "intqQUEUE_LENGTH", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@4005@macro@intqMIN_ACCEPTABLE_TASK_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "intqMIN_ACCEPTABLE_TASK_COUNT", - "location": { - "column": "9", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "intqMIN_ACCEPTABLE_TASK_COUNT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@4162@macro@timerNORMALLY_EMPTY_TX", - "What": "MacroDef", - "defdec": "Def", - "display": "timerNORMALLY_EMPTY_TX", - "location": { - "column": "9", - "line": "97", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "timerNORMALLY_EMPTY_TX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@5089@macro@timerNORMALLY_FULL_TX", - "What": "MacroDef", - "defdec": "Def", - "display": "timerNORMALLY_FULL_TX", - "location": { - "column": "9", - "line": "114", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "timerNORMALLY_FULL_TX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@6001@macro@timerNORMALLY_EMPTY_RX", - "What": "MacroDef", - "defdec": "Def", - "display": "timerNORMALLY_EMPTY_RX", - "location": { - "column": "9", - "line": "131", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "timerNORMALLY_EMPTY_RX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@6525@macro@timerNORMALLY_FULL_RX", - "What": "MacroDef", - "defdec": "Def", - "display": "timerNORMALLY_FULL_RX", - "location": { - "column": "9", - "line": "143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "timerNORMALLY_FULL_RX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@xNormallyEmptyQueue", - "What": "Variable", - "defdec": "Dec", - "display": "xNormallyEmptyQueue", - "location": { - "column": "22", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xNormallyEmptyQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@xNormallyFullQueue", - "What": "Variable", - "defdec": "Dec", - "display": "xNormallyFullQueue", - "location": { - "column": "43", - "line": "153", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xNormallyFullQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@uxHighPriorityLoops1", - "What": "Variable", - "defdec": "Def", - "display": "uxHighPriorityLoops1", - "location": { - "column": "29", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxHighPriorityLoops1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@uxHighPriorityLoops2", - "What": "Variable", - "defdec": "Def", - "display": "uxHighPriorityLoops2", - "location": { - "column": "55", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxHighPriorityLoops2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@uxLowPriorityLoops1", - "What": "Variable", - "defdec": "Def", - "display": "uxLowPriorityLoops1", - "location": { - "column": "81", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxLowPriorityLoops1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@uxLowPriorityLoops2", - "What": "Variable", - "defdec": "Def", - "display": "uxLowPriorityLoops2", - "location": { - "column": "106", - "line": "156", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxLowPriorityLoops2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@xErrorStatus", - "What": "Variable", - "defdec": "Def", - "display": "xErrorStatus", - "location": { - "column": "19", - "line": "160", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xErrorStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@xErrorLine", - "What": "Variable", - "defdec": "Def", - "display": "xErrorLine", - "location": { - "column": "29", - "line": "161", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xErrorLine", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@xWasSuspended", - "What": "Variable", - "defdec": "Def", - "display": "xWasSuspended", - "location": { - "column": "19", - "line": "164", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xWasSuspended", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@uxValueForNormallyEmptyQueue", - "What": "Variable", - "defdec": "Def", - "display": "uxValueForNormallyEmptyQueue", - "location": { - "column": "29", - "line": "168", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxValueForNormallyEmptyQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@uxValueForNormallyFullQueue", - "What": "Variable", - "defdec": "Def", - "display": "uxValueForNormallyFullQueue", - "location": { - "column": "63", - "line": "168", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxValueForNormallyFullQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@xHighPriorityNormallyEmptyTask1", - "What": "Variable", - "defdec": "Dec", - "display": "xHighPriorityNormallyEmptyTask1", - "location": { - "column": "14", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xHighPriorityNormallyEmptyTask1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@xHighPriorityNormallyEmptyTask2", - "What": "Variable", - "defdec": "Dec", - "display": "xHighPriorityNormallyEmptyTask2", - "location": { - "column": "47", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xHighPriorityNormallyEmptyTask2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@xHighPriorityNormallyFullTask1", - "What": "Variable", - "defdec": "Dec", - "display": "xHighPriorityNormallyFullTask1", - "location": { - "column": "80", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xHighPriorityNormallyFullTask1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@xHighPriorityNormallyFullTask2", - "What": "Variable", - "defdec": "Dec", - "display": "xHighPriorityNormallyFullTask2", - "location": { - "column": "112", - "line": "171", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xHighPriorityNormallyFullTask2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@ucNormallyEmptyReceivedValues", - "What": "Variable", - "defdec": "Def", - "display": "ucNormallyEmptyReceivedValues", - "location": { - "column": "16", - "line": "177", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "ucNormallyEmptyReceivedValues", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@ucNormallyFullReceivedValues", - "What": "Variable", - "defdec": "Def", - "display": "ucNormallyFullReceivedValues", - "location": { - "column": "16", - "line": "178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "ucNormallyFullReceivedValues", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prvLowerPriorityNormallyEmptyTask", - "What": "Function", - "defdec": "Dec", - "display": "void prvLowerPriorityNormallyEmptyTask(void *)", - "location": { - "column": "13", - "line": "181", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prvLowerPriorityNormallyEmptyTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prvLowerPriorityNormallyFullTask", - "What": "Function", - "defdec": "Dec", - "display": "void prvLowerPriorityNormallyFullTask(void *)", - "location": { - "column": "13", - "line": "182", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prvLowerPriorityNormallyFullTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prvHigherPriorityNormallyEmptyTask", - "What": "Function", - "defdec": "Dec", - "display": "void prvHigherPriorityNormallyEmptyTask(void *)", - "location": { - "column": "13", - "line": "183", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prvHigherPriorityNormallyEmptyTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prv1stHigherPriorityNormallyFullTask", - "What": "Function", - "defdec": "Dec", - "display": "void prv1stHigherPriorityNormallyFullTask(void *)", - "location": { - "column": "13", - "line": "184", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prv1stHigherPriorityNormallyFullTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prv2ndHigherPriorityNormallyFullTask", - "What": "Function", - "defdec": "Dec", - "display": "void prv2ndHigherPriorityNormallyFullTask(void *)", - "location": { - "column": "13", - "line": "185", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prv2ndHigherPriorityNormallyFullTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prvRecordValue_NormallyEmpty", - "What": "Function", - "defdec": "Dec", - "display": "void prvRecordValue_NormallyEmpty(UBaseType_t, UBaseType_t)", - "location": { - "column": "13", - "line": "189", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prvRecordValue_NormallyEmpty", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prvRecordValue_NormallyFull", - "What": "Function", - "defdec": "Dec", - "display": "void prvRecordValue_NormallyFull(UBaseType_t, UBaseType_t)", - "location": { - "column": "13", - "line": "190", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prvRecordValue_NormallyFull", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prvQueueAccessLogError", - "What": "Function", - "defdec": "Dec", - "display": "void prvQueueAccessLogError(UBaseType_t)", - "location": { - "column": "13", - "line": "193", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prvQueueAccessLogError", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vStartInterruptQueueTasks", - "What": "Function", - "defdec": "Def", - "display": "void vStartInterruptQueueTasks(void)", - "location": { - "column": "6", - "line": "197", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "vStartInterruptQueueTasks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prvRecordValue_NormallyFull", - "What": "Function", - "defdec": "Def", - "display": "void prvRecordValue_NormallyFull(UBaseType_t, UBaseType_t)", - "location": { - "column": "13", - "line": "223", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prvRecordValue_NormallyFull", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prvRecordValue_NormallyEmpty", - "What": "Function", - "defdec": "Def", - "display": "void prvRecordValue_NormallyEmpty(UBaseType_t, UBaseType_t)", - "location": { - "column": "13", - "line": "240", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prvRecordValue_NormallyEmpty", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prvQueueAccessLogError", - "What": "Function", - "defdec": "Def", - "display": "void prvQueueAccessLogError(UBaseType_t)", - "location": { - "column": "13", - "line": "257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prvQueueAccessLogError", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prvHigherPriorityNormallyEmptyTask", - "What": "Function", - "defdec": "Def", - "display": "void prvHigherPriorityNormallyEmptyTask(void *)", - "location": { - "column": "13", - "line": "265", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prvHigherPriorityNormallyEmptyTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@12572@F@prvHigherPriorityNormallyEmptyTask@uxRxed", - "What": "Variable", - "defdec": "Def", - "display": "uxRxed", - "location": { - "column": "13", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxRxed", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@12572@F@prvHigherPriorityNormallyEmptyTask@ux", - "What": "Variable", - "defdec": "Dec", - "display": "ux", - "location": { - "column": "21", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "ux", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@12572@F@prvHigherPriorityNormallyEmptyTask@uxTask1", - "What": "Variable", - "defdec": "Dec", - "display": "uxTask1", - "location": { - "column": "25", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxTask1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@12572@F@prvHigherPriorityNormallyEmptyTask@uxTask2", - "What": "Variable", - "defdec": "Dec", - "display": "uxTask2", - "location": { - "column": "34", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxTask2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@12572@F@prvHigherPriorityNormallyEmptyTask@uxInterrupts", - "What": "Variable", - "defdec": "Dec", - "display": "uxInterrupts", - "location": { - "column": "43", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxInterrupts", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@12572@F@prvHigherPriorityNormallyEmptyTask@uxErrorCount1", - "What": "Variable", - "defdec": "Dec", - "display": "uxErrorCount1", - "location": { - "column": "57", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxErrorCount1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@12572@F@prvHigherPriorityNormallyEmptyTask@uxErrorCount2", - "What": "Variable", - "defdec": "Dec", - "display": "uxErrorCount2", - "location": { - "column": "76", - "line": "267", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxErrorCount2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prvLowerPriorityNormallyEmptyTask", - "What": "Function", - "defdec": "Def", - "display": "void prvLowerPriorityNormallyEmptyTask(void *)", - "location": { - "column": "13", - "line": "388", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prvLowerPriorityNormallyEmptyTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@16251@F@prvLowerPriorityNormallyEmptyTask@uxValue", - "What": "Variable", - "defdec": "Def", - "display": "uxValue", - "location": { - "column": "13", - "line": "390", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxValue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@16251@F@prvLowerPriorityNormallyEmptyTask@uxRxed", - "What": "Variable", - "defdec": "Dec", - "display": "uxRxed", - "location": { - "column": "22", - "line": "390", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxRxed", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prv1stHigherPriorityNormallyFullTask", - "What": "Function", - "defdec": "Def", - "display": "void prv1stHigherPriorityNormallyFullTask(void *)", - "location": { - "column": "13", - "line": "436", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prv1stHigherPriorityNormallyFullTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@17603@F@prv1stHigherPriorityNormallyFullTask@uxValueToTx", - "What": "Variable", - "defdec": "Def", - "display": "uxValueToTx", - "location": { - "column": "13", - "line": "438", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxValueToTx", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@17603@F@prv1stHigherPriorityNormallyFullTask@ux", - "What": "Variable", - "defdec": "Dec", - "display": "ux", - "location": { - "column": "26", - "line": "438", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "ux", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@17603@F@prv1stHigherPriorityNormallyFullTask@uxInterrupts", - "What": "Variable", - "defdec": "Dec", - "display": "uxInterrupts", - "location": { - "column": "30", - "line": "438", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxInterrupts", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prv2ndHigherPriorityNormallyFullTask", - "What": "Function", - "defdec": "Def", - "display": "void prv2ndHigherPriorityNormallyFullTask(void *)", - "location": { - "column": "13", - "line": "539", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prv2ndHigherPriorityNormallyFullTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@20673@F@prv2ndHigherPriorityNormallyFullTask@uxValueToTx", - "What": "Variable", - "defdec": "Def", - "display": "uxValueToTx", - "location": { - "column": "13", - "line": "541", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxValueToTx", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@20673@F@prv2ndHigherPriorityNormallyFullTask@ux", - "What": "Variable", - "defdec": "Dec", - "display": "ux", - "location": { - "column": "26", - "line": "541", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "ux", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@F@prvLowerPriorityNormallyFullTask", - "What": "Function", - "defdec": "Def", - "display": "void prvLowerPriorityNormallyFullTask(void *)", - "location": { - "column": "13", - "line": "585", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "prvLowerPriorityNormallyFullTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@21773@F@prvLowerPriorityNormallyFullTask@uxValue", - "What": "Variable", - "defdec": "Def", - "display": "uxValue", - "location": { - "column": "13", - "line": "587", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxValue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@21773@F@prvLowerPriorityNormallyFullTask@uxTxed", - "What": "Variable", - "defdec": "Dec", - "display": "uxTxed", - "location": { - "column": "22", - "line": "587", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxTxed", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xFirstTimerHandler", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xFirstTimerHandler(void)", - "location": { - "column": "12", - "line": "626", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xFirstTimerHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@22905@F@xFirstTimerHandler@xHigherPriorityTaskWoken", - "What": "Variable", - "defdec": "Def", - "display": "xHigherPriorityTaskWoken", - "location": { - "column": "12", - "line": "628", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xHigherPriorityTaskWoken", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@22953@F@xFirstTimerHandler@uxRxedValue", - "What": "Variable", - "defdec": "Def", - "display": "uxRxedValue", - "location": { - "column": "13", - "line": "629", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxRxedValue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@22979@F@xFirstTimerHandler@uxNextOperation", - "What": "Variable", - "defdec": "Def", - "display": "uxNextOperation", - "location": { - "column": "20", - "line": "630", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxNextOperation", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@23197@F@xFirstTimerHandler@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "3", - "line": "639", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@23226@F@xFirstTimerHandler@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "3", - "line": "640", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@23255@F@xFirstTimerHandler@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "3", - "line": "641", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xSecondTimerHandler", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xSecondTimerHandler(void)", - "location": { - "column": "12", - "line": "654", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xSecondTimerHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@23535@F@xSecondTimerHandler@uxRxedValue", - "What": "Variable", - "defdec": "Def", - "display": "uxRxedValue", - "location": { - "column": "13", - "line": "656", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxRxedValue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@23561@F@xSecondTimerHandler@xHigherPriorityTaskWoken", - "What": "Variable", - "defdec": "Def", - "display": "xHigherPriorityTaskWoken", - "location": { - "column": "12", - "line": "657", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xHigherPriorityTaskWoken", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@23609@F@xSecondTimerHandler@uxNextOperation", - "What": "Variable", - "defdec": "Def", - "display": "uxNextOperation", - "location": { - "column": "20", - "line": "658", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxNextOperation", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@23827@F@xSecondTimerHandler@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "3", - "line": "667", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@23856@F@xSecondTimerHandler@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "3", - "line": "668", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@23988@F@xSecondTimerHandler@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "3", - "line": "676", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@24016@F@xSecondTimerHandler@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "3", - "line": "677", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@24044@F@xSecondTimerHandler@uxSavedInterruptStatus", - "What": "Variable", - "defdec": "Def", - "display": "uxSavedInterruptStatus", - "location": { - "column": "3", - "line": "678", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxSavedInterruptStatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xAreIntQueueTasksStillRunning", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xAreIntQueueTasksStillRunning(void)", - "location": { - "column": "12", - "line": "686", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "xAreIntQueueTasksStillRunning", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@24236@F@xAreIntQueueTasksStillRunning@uxLastHighPriorityLoops1", - "What": "Variable", - "defdec": "Def", - "display": "uxLastHighPriorityLoops1", - "location": { - "column": "20", - "line": "688", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxLastHighPriorityLoops1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@24236@F@xAreIntQueueTasksStillRunning@uxLastHighPriorityLoops2", - "What": "Variable", - "defdec": "Dec", - "display": "uxLastHighPriorityLoops2", - "location": { - "column": "50", - "line": "688", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxLastHighPriorityLoops2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@24236@F@xAreIntQueueTasksStillRunning@uxLastLowPriorityLoops1", - "What": "Variable", - "defdec": "Dec", - "display": "uxLastLowPriorityLoops1", - "location": { - "column": "80", - "line": "688", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxLastLowPriorityLoops1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:IntQueue.c@24236@F@xAreIntQueueTasksStillRunning@uxLastLowPriorityLoops2", - "What": "Variable", - "defdec": "Dec", - "display": "uxLastLowPriorityLoops2", - "location": { - "column": "109", - "line": "688", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\IntQueue.c" - }, - "name": "uxLastLowPriorityLoops2", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@1620@macro@countMAX_COUNT_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "countMAX_COUNT_VALUE", - "location": { - "column": "9", - "line": "42", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "countMAX_COUNT_VALUE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@1905@macro@countSTART_AT_MAX_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "countSTART_AT_MAX_COUNT", - "location": { - "column": "9", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "countSTART_AT_MAX_COUNT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@1947@macro@countSTART_AT_ZERO", - "What": "MacroDef", - "defdec": "Def", - "display": "countSTART_AT_ZERO", - "location": { - "column": "9", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "countSTART_AT_ZERO", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@2144@macro@countNUM_TEST_TASKS", - "What": "MacroDef", - "defdec": "Def", - "display": "countNUM_TEST_TASKS", - "location": { - "column": "9", - "line": "53", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "countNUM_TEST_TASKS", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@2180@macro@countDONT_BLOCK", - "What": "MacroDef", - "defdec": "Def", - "display": "countDONT_BLOCK", - "location": { - "column": "9", - "line": "54", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "countDONT_BLOCK", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@xErrorDetected", - "What": "Variable", - "defdec": "Def", - "display": "xErrorDetected", - "location": { - "column": "28", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "xErrorDetected", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@F@prvCountingSemaphoreTask", - "What": "Function", - "defdec": "Dec", - "display": "void prvCountingSemaphoreTask(void *)", - "location": { - "column": "13", - "line": "70", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "prvCountingSemaphoreTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@F@prvIncrementSemaphoreCount", - "What": "Function", - "defdec": "Dec", - "display": "void prvIncrementSemaphoreCount(SemaphoreHandle_t, volatile UBaseType_t *)", - "location": { - "column": "13", - "line": "76", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "prvIncrementSemaphoreCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@F@prvDecrementSemaphoreCount", - "What": "Function", - "defdec": "Dec", - "display": "void prvDecrementSemaphoreCount(SemaphoreHandle_t, volatile UBaseType_t *)", - "location": { - "column": "13", - "line": "82", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "prvDecrementSemaphoreCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@COUNT_SEM_STRUCT", - "What": "Struct", - "defdec": "Def", - "display": "COUNT_SEM_STRUCT", - "location": { - "column": "16", - "line": "87", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "members": [ - { - "ID": "c:@S@COUNT_SEM_STRUCT@FI@xSemaphore", - "What": "FieldDecl", - "defdec": "Def", - "display": "xSemaphore", - "location": { - "column": "20", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "xSemaphore", - "origin": "project_file", - "scope": "COUNT_SEM_STRUCT" - }, - { - "ID": "c:@S@COUNT_SEM_STRUCT@FI@uxExpectedStartCount", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxExpectedStartCount", - "location": { - "column": "14", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "uxExpectedStartCount", - "origin": "project_file", - "scope": "COUNT_SEM_STRUCT" - }, - { - "ID": "c:@S@COUNT_SEM_STRUCT@FI@uxLoopCounter", - "What": "FieldDecl", - "defdec": "Def", - "display": "uxLoopCounter", - "location": { - "column": "23", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "uxLoopCounter", - "origin": "project_file", - "scope": "COUNT_SEM_STRUCT" - } - ], - "name": "COUNT_SEM_STRUCT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@T@xCountSemStruct", - "What": "Typedef", - "defdec": "Def", - "display": "struct COUNT_SEM_STRUCT", - "location": { - "column": "3", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "xCountSemStruct", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@xParameters", - "What": "Variable", - "defdec": "Dec", - "display": "xParameters", - "location": { - "column": "24", - "line": "103", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "xParameters", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vStartCountingSemaphoreTasks", - "What": "Function", - "defdec": "Def", - "display": "void vStartCountingSemaphoreTasks(void)", - "location": { - "column": "6", - "line": "107", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "vStartCountingSemaphoreTasks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@F@prvDecrementSemaphoreCount", - "What": "Function", - "defdec": "Def", - "display": "void prvDecrementSemaphoreCount(SemaphoreHandle_t, volatile UBaseType_t *)", - "location": { - "column": "13", - "line": "139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "prvDecrementSemaphoreCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@6047@F@prvDecrementSemaphoreCount@ux", - "What": "Variable", - "defdec": "Def", - "display": "ux", - "location": { - "column": "13", - "line": "141", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "ux", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@F@prvIncrementSemaphoreCount", - "What": "Function", - "defdec": "Def", - "display": "void prvIncrementSemaphoreCount(SemaphoreHandle_t, volatile UBaseType_t *)", - "location": { - "column": "13", - "line": "178", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "prvIncrementSemaphoreCount", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@7161@F@prvIncrementSemaphoreCount@ux", - "What": "Variable", - "defdec": "Def", - "display": "ux", - "location": { - "column": "13", - "line": "180", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "ux", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@F@prvCountingSemaphoreTask", - "What": "Function", - "defdec": "Def", - "display": "void prvCountingSemaphoreTask(void *)", - "location": { - "column": "13", - "line": "216", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "prvCountingSemaphoreTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@8123@F@prvCountingSemaphoreTask@pxParameter", - "What": "Variable", - "defdec": "Def", - "display": "pxParameter", - "location": { - "column": "18", - "line": "218", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "pxParameter", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xAreCountingSemaphoreTasksStillRunning", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xAreCountingSemaphoreTasksStillRunning(void)", - "location": { - "column": "12", - "line": "254", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "xAreCountingSemaphoreTasksStillRunning", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@9375@F@xAreCountingSemaphoreTasksStillRunning@uxLastCount0", - "What": "Variable", - "defdec": "Def", - "display": "uxLastCount0", - "location": { - "column": "20", - "line": "256", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "uxLastCount0", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@9375@F@xAreCountingSemaphoreTasksStillRunning@uxLastCount1", - "What": "Variable", - "defdec": "Dec", - "display": "uxLastCount1", - "location": { - "column": "38", - "line": "256", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "uxLastCount1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:countsem.c@9431@F@xAreCountingSemaphoreTasksStillRunning@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "257", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\countsem.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@3562@macro@recmuCONTROLLING_TASK_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "recmuCONTROLLING_TASK_PRIORITY", - "location": { - "column": "10", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "recmuCONTROLLING_TASK_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@3635@macro@recmuBLOCKING_TASK_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "recmuBLOCKING_TASK_PRIORITY", - "location": { - "column": "9", - "line": "77", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "recmuBLOCKING_TASK_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@3698@macro@recmuPOLLING_TASK_PRIORITY", - "What": "MacroDef", - "defdec": "Def", - "display": "recmuPOLLING_TASK_PRIORITY", - "location": { - "column": "9", - "line": "78", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "recmuPOLLING_TASK_PRIORITY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@3795@macro@recmuMAX_COUNT", - "What": "MacroDef", - "defdec": "Def", - "display": "recmuMAX_COUNT", - "location": { - "column": "9", - "line": "81", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "recmuMAX_COUNT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@3845@macro@recmuSHORT_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "recmuSHORT_DELAY", - "location": { - "column": "9", - "line": "84", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "recmuSHORT_DELAY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@3898@macro@recmuNO_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "recmuNO_DELAY", - "location": { - "column": "9", - "line": "85", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "recmuNO_DELAY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@3946@macro@recmu15ms_DELAY", - "What": "MacroDef", - "defdec": "Def", - "display": "recmu15ms_DELAY", - "location": { - "column": "9", - "line": "86", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "recmu15ms_DELAY", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@4053@macro@recmuRECURSIVE_MUTEX_TEST_TASK_STACK_SIZE", - "What": "MacroDef", - "defdec": "Def", - "display": "recmuRECURSIVE_MUTEX_TEST_TASK_STACK_SIZE", - "location": { - "column": "10", - "line": "89", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "recmuRECURSIVE_MUTEX_TEST_TASK_STACK_SIZE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@F@prvRecursiveMutexControllingTask", - "What": "Function", - "defdec": "Dec", - "display": "void prvRecursiveMutexControllingTask(void *)", - "location": { - "column": "13", - "line": "93", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "prvRecursiveMutexControllingTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@F@prvRecursiveMutexBlockingTask", - "What": "Function", - "defdec": "Dec", - "display": "void prvRecursiveMutexBlockingTask(void *)", - "location": { - "column": "13", - "line": "94", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "prvRecursiveMutexBlockingTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@F@prvRecursiveMutexPollingTask", - "What": "Function", - "defdec": "Dec", - "display": "void prvRecursiveMutexPollingTask(void *)", - "location": { - "column": "13", - "line": "95", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "prvRecursiveMutexPollingTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@xMutex", - "What": "Variable", - "defdec": "Dec", - "display": "xMutex", - "location": { - "column": "26", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "xMutex", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@xErrorOccurred", - "What": "Variable", - "defdec": "Def", - "display": "xErrorOccurred", - "location": { - "column": "28", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "xErrorOccurred", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@xControllingIsSuspended", - "What": "Variable", - "defdec": "Def", - "display": "xControllingIsSuspended", - "location": { - "column": "54", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "xControllingIsSuspended", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@xBlockingIsSuspended", - "What": "Variable", - "defdec": "Def", - "display": "xBlockingIsSuspended", - "location": { - "column": "89", - "line": "101", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "xBlockingIsSuspended", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@uxControllingCycles", - "What": "Variable", - "defdec": "Def", - "display": "uxControllingCycles", - "location": { - "column": "29", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "uxControllingCycles", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@uxBlockingCycles", - "What": "Variable", - "defdec": "Def", - "display": "uxBlockingCycles", - "location": { - "column": "54", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "uxBlockingCycles", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@uxPollingCycles", - "What": "Variable", - "defdec": "Def", - "display": "uxPollingCycles", - "location": { - "column": "76", - "line": "102", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "uxPollingCycles", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@xControllingTaskHandle", - "What": "Variable", - "defdec": "Dec", - "display": "xControllingTaskHandle", - "location": { - "column": "21", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "xControllingTaskHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@xBlockingTaskHandle", - "What": "Variable", - "defdec": "Dec", - "display": "xBlockingTaskHandle", - "location": { - "column": "45", - "line": "106", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "xBlockingTaskHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@vStartRecursiveMutexTasks", - "What": "Function", - "defdec": "Def", - "display": "void vStartRecursiveMutexTasks(void)", - "location": { - "column": "6", - "line": "110", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "vStartRecursiveMutexTasks", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@F@prvRecursiveMutexControllingTask", - "What": "Function", - "defdec": "Def", - "display": "void prvRecursiveMutexControllingTask(void *)", - "location": { - "column": "13", - "line": "133", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "prvRecursiveMutexControllingTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@6208@F@prvRecursiveMutexControllingTask@ux", - "What": "Variable", - "defdec": "Def", - "display": "ux", - "location": { - "column": "13", - "line": "135", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "ux", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@F@prvRecursiveMutexBlockingTask", - "What": "Function", - "defdec": "Def", - "display": "void prvRecursiveMutexBlockingTask(void *)", - "location": { - "column": "13", - "line": "216", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "prvRecursiveMutexBlockingTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@F@prvRecursiveMutexPollingTask", - "What": "Function", - "defdec": "Def", - "display": "void prvRecursiveMutexPollingTask(void *)", - "location": { - "column": "13", - "line": "272", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "prvRecursiveMutexPollingTask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@xAreRecursiveMutexTasksStillRunning", - "What": "Function", - "defdec": "Def", - "display": "BaseType_t xAreRecursiveMutexTasksStillRunning(void)", - "location": { - "column": "12", - "line": "367", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "xAreRecursiveMutexTasksStillRunning", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@13942@F@xAreRecursiveMutexTasksStillRunning@xReturn", - "What": "Variable", - "defdec": "Def", - "display": "xReturn", - "location": { - "column": "12", - "line": "369", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "xReturn", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@13963@F@xAreRecursiveMutexTasksStillRunning@uxLastControllingCycles", - "What": "Variable", - "defdec": "Def", - "display": "uxLastControllingCycles", - "location": { - "column": "20", - "line": "370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "uxLastControllingCycles", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@13963@F@xAreRecursiveMutexTasksStillRunning@uxLastBlockingCycles", - "What": "Variable", - "defdec": "Dec", - "display": "uxLastBlockingCycles", - "location": { - "column": "49", - "line": "370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "uxLastBlockingCycles", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:recmutex.c@13963@F@xAreRecursiveMutexTasksStillRunning@uxLastPollingCycles", - "What": "Variable", - "defdec": "Dec", - "display": "uxLastPollingCycles", - "location": { - "column": "75", - "line": "370", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\Common\\Minimal\\recmutex.c" - }, - "name": "uxLastPollingCycles", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@__aeabi_assert", - "What": "Function", - "defdec": "Def", - "display": "void __aeabi_assert(const char *, const char *, int)", - "location": { - "column": "6", - "line": "15", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_assert.c" - }, - "name": "__aeabi_assert", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@2429@macro@DEBUG_CONSOLE_FUNCTION_PREFIX", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_FUNCTION_PREFIX", - "location": { - "column": "9", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DEBUG_CONSOLE_FUNCTION_PREFIX", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@2578@macro@DEBUG_CONSOLE_BACKSPACE", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_BACKSPACE", - "location": { - "column": "9", - "line": "75", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DEBUG_CONSOLE_BACKSPACE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@s_debugConsoleReadWaitSemaphore", - "What": "Variable", - "defdec": "Dec", - "display": "s_debugConsoleReadWaitSemaphore", - "location": { - "column": "25", - "line": "88", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "s_debugConsoleReadWaitSemaphore", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@3392@macro@IS_RUNNING_IN_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "IS_RUNNING_IN_ISR", - "location": { - "column": "9", - "line": "99", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "IS_RUNNING_IN_ISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@5597@macro@DEBUG_CONSOLE_CREATE_MUTEX_SEMAPHORE", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_CREATE_MUTEX_SEMAPHORE", - "location": { - "column": "9", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DEBUG_CONSOLE_CREATE_MUTEX_SEMAPHORE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@5650@macro@DEBUG_CONSOLE_TAKE_MUTEX_SEMAPHORE_BLOCKING", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_TAKE_MUTEX_SEMAPHORE_BLOCKING", - "location": { - "column": "9", - "line": "146", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DEBUG_CONSOLE_TAKE_MUTEX_SEMAPHORE_BLOCKING", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@5710@macro@DEBUG_CONSOLE_GIVE_MUTEX_SEMAPHORE", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_GIVE_MUTEX_SEMAPHORE", - "location": { - "column": "9", - "line": "147", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DEBUG_CONSOLE_GIVE_MUTEX_SEMAPHORE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@5761@macro@DEBUG_CONSOLE_TAKE_MUTEX_SEMAPHORE_NONBLOCKING", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_TAKE_MUTEX_SEMAPHORE_NONBLOCKING", - "location": { - "column": "9", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DEBUG_CONSOLE_TAKE_MUTEX_SEMAPHORE_NONBLOCKING", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@5848@macro@DEBUG_CONSOLE_CREATE_BINARY_SEMAPHORE", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_CREATE_BINARY_SEMAPHORE", - "location": { - "column": "9", - "line": "150", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DEBUG_CONSOLE_CREATE_BINARY_SEMAPHORE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@6423@macro@DEBUG_CONSOLE_TAKE_BINARY_SEMAPHORE_BLOCKING", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_TAKE_BINARY_SEMAPHORE_BLOCKING", - "location": { - "column": "9", - "line": "161", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DEBUG_CONSOLE_TAKE_BINARY_SEMAPHORE_BLOCKING", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@6485@macro@DEBUG_CONSOLE_GIVE_BINARY_SEMAPHORE_FROM_ISR", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_GIVE_BINARY_SEMAPHORE_FROM_ISR", - "location": { - "column": "9", - "line": "162", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DEBUG_CONSOLE_GIVE_BINARY_SEMAPHORE_FROM_ISR", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@S@_debug_console_state_struct", - "What": "Struct", - "defdec": "Def", - "display": "_debug_console_state_struct", - "location": { - "column": "16", - "line": "187", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "members": [ - { - "ID": "c:@S@_debug_console_state_struct@FI@serialHandleBuffer", - "What": "FieldDecl", - "defdec": "Def", - "display": "serialHandleBuffer", - "location": { - "column": "13", - "line": "189", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "serialHandleBuffer", - "origin": "project_file", - "scope": "_debug_console_state_struct" - }, - { - "ID": "c:@S@_debug_console_state_struct@FI@serialHandle", - "What": "FieldDecl", - "defdec": "Def", - "display": "serialHandle", - "location": { - "column": "21", - "line": "190", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "serialHandle", - "origin": "project_file", - "scope": "_debug_console_state_struct" - }, - { - "ID": "c:@S@_debug_console_state_struct@FI@serialWriteHandleBuffer", - "What": "FieldDecl", - "defdec": "Def", - "display": "serialWriteHandleBuffer", - "location": { - "column": "13", - "line": "195", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "serialWriteHandleBuffer", - "origin": "project_file", - "scope": "_debug_console_state_struct" - }, - { - "ID": "c:@S@_debug_console_state_struct@FI@serialReadHandleBuffer", - "What": "FieldDecl", - "defdec": "Def", - "display": "serialReadHandleBuffer", - "location": { - "column": "13", - "line": "196", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "serialReadHandleBuffer", - "origin": "project_file", - "scope": "_debug_console_state_struct" - } - ], - "name": "_debug_console_state_struct", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@T@debug_console_state_struct_t", - "What": "Typedef", - "defdec": "Def", - "display": "struct _debug_console_state_struct", - "location": { - "column": "3", - "line": "197", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "debug_console_state_struct_t", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@s_debugConsoleState", - "What": "Variable", - "defdec": "Dec", - "display": "s_debugConsoleState", - "location": { - "column": "37", - "line": "204", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "s_debugConsoleState", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@g_serialHandle", - "What": "Variable", - "defdec": "Dec", - "display": "g_serialHandle", - "location": { - "column": "17", - "line": "205", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "g_serialHandle", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@F@DbgConsole_PrintCallback", - "What": "Function", - "defdec": "Dec", - "display": "void DbgConsole_PrintCallback(char *, int32_t *, char, int)", - "location": { - "column": "13", - "line": "221", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_PrintCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_ReadOneCharacter", - "What": "Function", - "defdec": "Dec", - "display": "status_t DbgConsole_ReadOneCharacter(uint8_t *)", - "location": { - "column": "10", - "line": "224", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_ReadOneCharacter", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_SendData", - "What": "Function", - "defdec": "Dec", - "display": "int DbgConsole_SendData(uint8_t *, size_t)", - "location": { - "column": "5", - "line": "225", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_SendData", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_SendDataReliable", - "What": "Function", - "defdec": "Dec", - "display": "int DbgConsole_SendDataReliable(uint8_t *, size_t)", - "location": { - "column": "5", - "line": "226", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_SendDataReliable", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_ReadLine", - "What": "Function", - "defdec": "Dec", - "display": "int DbgConsole_ReadLine(uint8_t *, size_t)", - "location": { - "column": "5", - "line": "227", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_ReadLine", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_ReadCharacter", - "What": "Function", - "defdec": "Dec", - "display": "int DbgConsole_ReadCharacter(uint8_t *)", - "location": { - "column": "5", - "line": "228", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_ReadCharacter", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Flush", - "What": "Function", - "defdec": "Dec", - "display": "status_t DbgConsole_Flush(void)", - "location": { - "column": "40", - "line": "233", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_Flush", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_ReadOneCharacter", - "What": "Function", - "defdec": "Def", - "display": "status_t DbgConsole_ReadOneCharacter(uint8_t *)", - "location": { - "column": "10", - "line": "318", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_ReadOneCharacter", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@12381@F@DbgConsole_ReadOneCharacter@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "14", - "line": "326", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_SendData", - "What": "Function", - "defdec": "Def", - "display": "int DbgConsole_SendData(uint8_t *, size_t)", - "location": { - "column": "5", - "line": "385", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_SendData", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@14058@F@DbgConsole_SendData@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "14", - "line": "387", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_SendDataReliable", - "What": "Function", - "defdec": "Def", - "display": "int DbgConsole_SendDataReliable(uint8_t *, size_t)", - "location": { - "column": "5", - "line": "452", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_SendDataReliable", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@16901@F@DbgConsole_SendDataReliable@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "14", - "line": "462", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_ReadLine", - "What": "Function", - "defdec": "Def", - "display": "int DbgConsole_ReadLine(uint8_t *, size_t)", - "location": { - "column": "5", - "line": "523", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_ReadLine", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@19034@F@DbgConsole_ReadLine@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "9", - "line": "525", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_ReadCharacter", - "What": "Function", - "defdec": "Def", - "display": "int DbgConsole_ReadCharacter(uint8_t *)", - "location": { - "column": "5", - "line": "578", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_ReadCharacter", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@20376@F@DbgConsole_ReadCharacter@ret", - "What": "Variable", - "defdec": "Def", - "display": "ret", - "location": { - "column": "9", - "line": "580", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "ret", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@F@DbgConsole_PrintCallback", - "What": "Function", - "defdec": "Def", - "display": "void DbgConsole_PrintCallback(char *, int32_t *, char, int)", - "location": { - "column": "13", - "line": "606", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_PrintCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@21058@F@DbgConsole_PrintCallback@i", - "What": "Variable", - "defdec": "Def", - "display": "i", - "location": { - "column": "9", - "line": "608", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "i", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Init", - "What": "Function", - "defdec": "Def", - "display": "status_t DbgConsole_Init(uint8_t, uint32_t, serial_port_type_t, uint32_t)", - "location": { - "column": "10", - "line": "627", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_Init", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@21693@F@DbgConsole_Init@serialConfig", - "What": "Variable", - "defdec": "Def", - "display": "serialConfig", - "location": { - "column": "29", - "line": "629", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "serialConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@21736@F@DbgConsole_Init@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "14", - "line": "630", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@21870@F@DbgConsole_Init@uartConfig", - "What": "Variable", - "defdec": "Def", - "display": "uartConfig", - "location": { - "column": "31", - "line": "633", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "uartConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Deinit", - "What": "Function", - "defdec": "Def", - "display": "status_t DbgConsole_Deinit(void)", - "location": { - "column": "10", - "line": "751", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_Deinit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Flush", - "What": "Function", - "defdec": "Def", - "display": "status_t DbgConsole_Flush(void)", - "location": { - "column": "40", - "line": "774", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_Flush", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Printf", - "What": "Function", - "defdec": "Def", - "display": "int DbgConsole_Printf(const char *, ...)", - "location": { - "column": "5", - "line": "813", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_Printf", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@28169@F@DbgConsole_Printf@ap", - "What": "Variable", - "defdec": "Def", - "display": "ap", - "location": { - "column": "13", - "line": "815", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "ap", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@28186@F@DbgConsole_Printf@logLength", - "What": "Variable", - "defdec": "Def", - "display": "logLength", - "location": { - "column": "9", - "line": "816", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "logLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@28186@F@DbgConsole_Printf@dbgResult", - "What": "Variable", - "defdec": "Dec", - "display": "dbgResult", - "location": { - "column": "24", - "line": "816", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "dbgResult", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@28225@F@DbgConsole_Printf@printBuf", - "What": "Variable", - "defdec": "Def", - "display": "printBuf", - "location": { - "column": "10", - "line": "817", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "printBuf", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Putchar", - "What": "Function", - "defdec": "Def", - "display": "int DbgConsole_Putchar(int)", - "location": { - "column": "5", - "line": "836", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_Putchar", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Scanf", - "What": "Function", - "defdec": "Def", - "display": "int DbgConsole_Scanf(char *, ...)", - "location": { - "column": "5", - "line": "843", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_Scanf", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@28976@F@DbgConsole_Scanf@ap", - "What": "Variable", - "defdec": "Def", - "display": "ap", - "location": { - "column": "13", - "line": "845", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "ap", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@28993@F@DbgConsole_Scanf@formatResult", - "What": "Variable", - "defdec": "Def", - "display": "formatResult", - "location": { - "column": "9", - "line": "846", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "formatResult", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@29016@F@DbgConsole_Scanf@scanfBuf", - "What": "Variable", - "defdec": "Def", - "display": "scanfBuf", - "location": { - "column": "10", - "line": "847", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "scanfBuf", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@DbgConsole_Getchar", - "What": "Function", - "defdec": "Def", - "display": "int DbgConsole_Getchar(void)", - "location": { - "column": "5", - "line": "895", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "DbgConsole_Getchar", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@30495@F@DbgConsole_Getchar@ch", - "What": "Variable", - "defdec": "Def", - "display": "ch", - "location": { - "column": "13", - "line": "897", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "ch", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@__write", - "What": "Function", - "defdec": "Def", - "display": "size_t __write(int, const unsigned char *, size_t)", - "location": { - "column": "8", - "line": "912", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "__write", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@__read", - "What": "Function", - "defdec": "Def", - "display": "size_t __read(int, unsigned char *, size_t)", - "location": { - "column": "8", - "line": "936", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "__read", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@31641@F@__read@ch", - "What": "Variable", - "defdec": "Def", - "display": "ch", - "location": { - "column": "13", - "line": "938", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "ch", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console.c@31667@F@__read@actualSize", - "What": "Variable", - "defdec": "Def", - "display": "actualSize", - "location": { - "column": "9", - "line": "939", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console.c" - }, - "name": "actualSize", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:math.h@96@macro@_MATH", - "What": "MacroDef", - "defdec": "Def", - "display": "_MATH", - "location": { - "column": "9", - "line": "4", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "_MATH", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@1130@macro@HUGE_VAL", - "What": "MacroDef", - "defdec": "Def", - "display": "HUGE_VAL", - "location": { - "column": "11", - "line": "41", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "HUGE_VAL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@1197@macro@HUGE_VALF", - "What": "MacroDef", - "defdec": "Def", - "display": "HUGE_VALF", - "location": { - "column": "13", - "line": "44", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "HUGE_VALF", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@1251@macro@HUGE_VALL", - "What": "MacroDef", - "defdec": "Def", - "display": "HUGE_VALL", - "location": { - "column": "13", - "line": "45", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "HUGE_VALL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@1305@macro@INFINITY", - "What": "MacroDef", - "defdec": "Def", - "display": "INFINITY", - "location": { - "column": "13", - "line": "46", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "INFINITY", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@1359@macro@NAN", - "What": "MacroDef", - "defdec": "Def", - "display": "NAN", - "location": { - "column": "13", - "line": "47", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "NAN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@T@float_t", - "What": "Typedef", - "defdec": "Def", - "display": "float", - "location": { - "column": "17", - "line": "52", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "float_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@T@double_t", - "What": "Typedef", - "defdec": "Def", - "display": "double", - "location": { - "column": "18", - "line": "53", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "double_t", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@acos", - "What": "Function", - "defdec": "Dec", - "display": "double acos(double)", - "location": { - "column": "43", - "line": "59", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "acos", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@asin", - "What": "Function", - "defdec": "Dec", - "display": "double asin(double)", - "location": { - "column": "43", - "line": "60", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "asin", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atan", - "What": "Function", - "defdec": "Dec", - "display": "double atan(double)", - "location": { - "column": "43", - "line": "61", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "atan", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atan2", - "What": "Function", - "defdec": "Dec", - "display": "double atan2(double, double)", - "location": { - "column": "43", - "line": "62", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "atan2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@ceil", - "What": "Function", - "defdec": "Dec", - "display": "double ceil(double)", - "location": { - "column": "43", - "line": "63", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "ceil", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@cos", - "What": "Function", - "defdec": "Dec", - "display": "double cos(double)", - "location": { - "column": "43", - "line": "64", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "cos", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@cosh", - "What": "Function", - "defdec": "Dec", - "display": "double cosh(double)", - "location": { - "column": "43", - "line": "65", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "cosh", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@exp", - "What": "Function", - "defdec": "Dec", - "display": "double exp(double)", - "location": { - "column": "43", - "line": "66", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "exp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fabs", - "What": "Function", - "defdec": "Dec", - "display": "double fabs(double)", - "location": { - "column": "43", - "line": "67", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fabs", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@floor", - "What": "Function", - "defdec": "Dec", - "display": "double floor(double)", - "location": { - "column": "43", - "line": "68", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "floor", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fmod", - "What": "Function", - "defdec": "Dec", - "display": "double fmod(double, double)", - "location": { - "column": "43", - "line": "69", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fmod", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@frexp", - "What": "Function", - "defdec": "Dec", - "display": "double frexp(double, int *)", - "location": { - "column": "43", - "line": "70", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "frexp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@ldexp", - "What": "Function", - "defdec": "Dec", - "display": "double ldexp(double, int)", - "location": { - "column": "43", - "line": "71", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "ldexp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@log", - "What": "Function", - "defdec": "Dec", - "display": "double log(double)", - "location": { - "column": "43", - "line": "72", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "log", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@log10", - "What": "Function", - "defdec": "Dec", - "display": "double log10(double)", - "location": { - "column": "43", - "line": "73", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "log10", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@modf", - "What": "Function", - "defdec": "Dec", - "display": "double modf(double, double *)", - "location": { - "column": "43", - "line": "74", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "modf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@pow", - "What": "Function", - "defdec": "Dec", - "display": "double pow(double, double)", - "location": { - "column": "43", - "line": "75", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "pow", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@sin", - "What": "Function", - "defdec": "Dec", - "display": "double sin(double)", - "location": { - "column": "43", - "line": "76", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "sin", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@sinh", - "What": "Function", - "defdec": "Dec", - "display": "double sinh(double)", - "location": { - "column": "43", - "line": "77", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "sinh", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@sqrt", - "What": "Function", - "defdec": "Dec", - "display": "double sqrt(double)", - "location": { - "column": "43", - "line": "78", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "sqrt", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@tan", - "What": "Function", - "defdec": "Dec", - "display": "double tan(double)", - "location": { - "column": "43", - "line": "79", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "tan", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@tanh", - "What": "Function", - "defdec": "Dec", - "display": "double tanh(double)", - "location": { - "column": "43", - "line": "80", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "tanh", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@acosh", - "What": "Function", - "defdec": "Dec", - "display": "double acosh(double)", - "location": { - "column": "43", - "line": "83", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "acosh", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@asinh", - "What": "Function", - "defdec": "Dec", - "display": "double asinh(double)", - "location": { - "column": "43", - "line": "84", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "asinh", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atanh", - "What": "Function", - "defdec": "Dec", - "display": "double atanh(double)", - "location": { - "column": "43", - "line": "85", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "atanh", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@cbrt", - "What": "Function", - "defdec": "Dec", - "display": "double cbrt(double)", - "location": { - "column": "43", - "line": "86", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "cbrt", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@copysign", - "What": "Function", - "defdec": "Dec", - "display": "double copysign(double, double)", - "location": { - "column": "43", - "line": "87", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "copysign", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@erf", - "What": "Function", - "defdec": "Dec", - "display": "double erf(double)", - "location": { - "column": "43", - "line": "89", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "erf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@erfc", - "What": "Function", - "defdec": "Dec", - "display": "double erfc(double)", - "location": { - "column": "43", - "line": "90", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "erfc", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@expm1", - "What": "Function", - "defdec": "Dec", - "display": "double expm1(double)", - "location": { - "column": "43", - "line": "91", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "expm1", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@exp2", - "What": "Function", - "defdec": "Dec", - "display": "double exp2(double)", - "location": { - "column": "43", - "line": "93", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "exp2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fdim", - "What": "Function", - "defdec": "Dec", - "display": "double fdim(double, double)", - "location": { - "column": "43", - "line": "94", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fdim", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fma", - "What": "Function", - "defdec": "Dec", - "display": "double fma(double, double, double)", - "location": { - "column": "43", - "line": "96", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fma", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fmax", - "What": "Function", - "defdec": "Dec", - "display": "double fmax(double, double)", - "location": { - "column": "43", - "line": "98", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fmax", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fmin", - "What": "Function", - "defdec": "Dec", - "display": "double fmin(double, double)", - "location": { - "column": "43", - "line": "99", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fmin", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@hypot", - "What": "Function", - "defdec": "Dec", - "display": "double hypot(double, double)", - "location": { - "column": "43", - "line": "100", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "hypot", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@ilogb", - "What": "Function", - "defdec": "Dec", - "display": "int ilogb(double)", - "location": { - "column": "43", - "line": "101", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "ilogb", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@lgamma", - "What": "Function", - "defdec": "Dec", - "display": "double lgamma(double)", - "location": { - "column": "43", - "line": "103", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "lgamma", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@llrint", - "What": "Function", - "defdec": "Dec", - "display": "long long llrint(double)", - "location": { - "column": "43", - "line": "105", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "llrint", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@llround", - "What": "Function", - "defdec": "Dec", - "display": "long long llround(double)", - "location": { - "column": "43", - "line": "106", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "llround", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@log1p", - "What": "Function", - "defdec": "Dec", - "display": "double log1p(double)", - "location": { - "column": "43", - "line": "107", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "log1p", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@log2", - "What": "Function", - "defdec": "Dec", - "display": "double log2(double)", - "location": { - "column": "43", - "line": "108", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "log2", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@logb", - "What": "Function", - "defdec": "Dec", - "display": "double logb(double)", - "location": { - "column": "43", - "line": "109", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "logb", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@lrint", - "What": "Function", - "defdec": "Dec", - "display": "long lrint(double)", - "location": { - "column": "43", - "line": "110", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "lrint", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@lround", - "What": "Function", - "defdec": "Dec", - "display": "long lround(double)", - "location": { - "column": "43", - "line": "111", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "lround", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@nan", - "What": "Function", - "defdec": "Dec", - "display": "double nan(const char *)", - "location": { - "column": "43", - "line": "112", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "nan", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@nearbyint", - "What": "Function", - "defdec": "Dec", - "display": "double nearbyint(double)", - "location": { - "column": "43", - "line": "113", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "nearbyint", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@nextafter", - "What": "Function", - "defdec": "Dec", - "display": "double nextafter(double, double)", - "location": { - "column": "43", - "line": "114", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "nextafter", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@nexttoward", - "What": "Function", - "defdec": "Dec", - "display": "double nexttoward(double, long double)", - "location": { - "column": "43", - "line": "115", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "nexttoward", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@remainder", - "What": "Function", - "defdec": "Dec", - "display": "double remainder(double, double)", - "location": { - "column": "43", - "line": "116", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "remainder", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@remquo", - "What": "Function", - "defdec": "Dec", - "display": "double remquo(double, double, int *)", - "location": { - "column": "43", - "line": "117", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "remquo", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@rint", - "What": "Function", - "defdec": "Dec", - "display": "double rint(double)", - "location": { - "column": "43", - "line": "118", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "rint", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@round", - "What": "Function", - "defdec": "Dec", - "display": "double round(double)", - "location": { - "column": "43", - "line": "119", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "round", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@scalbn", - "What": "Function", - "defdec": "Dec", - "display": "double scalbn(double, int)", - "location": { - "column": "43", - "line": "120", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "scalbn", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@scalbln", - "What": "Function", - "defdec": "Dec", - "display": "double scalbln(double, long)", - "location": { - "column": "43", - "line": "121", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "scalbln", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@tgamma", - "What": "Function", - "defdec": "Dec", - "display": "double tgamma(double)", - "location": { - "column": "43", - "line": "123", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "tgamma", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@trunc", - "What": "Function", - "defdec": "Dec", - "display": "double trunc(double)", - "location": { - "column": "43", - "line": "125", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "trunc", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@acosf", - "What": "Function", - "defdec": "Dec", - "display": "float acosf(float)", - "location": { - "column": "43", - "line": "128", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "acosf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@acoshf", - "What": "Function", - "defdec": "Dec", - "display": "float acoshf(float)", - "location": { - "column": "43", - "line": "129", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "acoshf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@asinf", - "What": "Function", - "defdec": "Dec", - "display": "float asinf(float)", - "location": { - "column": "43", - "line": "130", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "asinf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@asinhf", - "What": "Function", - "defdec": "Dec", - "display": "float asinhf(float)", - "location": { - "column": "43", - "line": "131", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "asinhf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atanf", - "What": "Function", - "defdec": "Dec", - "display": "float atanf(float)", - "location": { - "column": "43", - "line": "132", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "atanf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atanhf", - "What": "Function", - "defdec": "Dec", - "display": "float atanhf(float)", - "location": { - "column": "43", - "line": "133", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "atanhf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atan2f", - "What": "Function", - "defdec": "Dec", - "display": "float atan2f(float, float)", - "location": { - "column": "43", - "line": "134", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "atan2f", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@ceilf", - "What": "Function", - "defdec": "Dec", - "display": "float ceilf(float)", - "location": { - "column": "43", - "line": "135", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "ceilf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@coshf", - "What": "Function", - "defdec": "Dec", - "display": "float coshf(float)", - "location": { - "column": "43", - "line": "136", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "coshf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@cosf", - "What": "Function", - "defdec": "Dec", - "display": "float cosf(float)", - "location": { - "column": "43", - "line": "137", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "cosf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@cbrtf", - "What": "Function", - "defdec": "Dec", - "display": "float cbrtf(float)", - "location": { - "column": "43", - "line": "138", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "cbrtf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@copysignf", - "What": "Function", - "defdec": "Dec", - "display": "float copysignf(float, float)", - "location": { - "column": "43", - "line": "139", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "copysignf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@erff", - "What": "Function", - "defdec": "Dec", - "display": "float erff(float)", - "location": { - "column": "43", - "line": "141", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "erff", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@erfcf", - "What": "Function", - "defdec": "Dec", - "display": "float erfcf(float)", - "location": { - "column": "43", - "line": "142", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "erfcf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@expf", - "What": "Function", - "defdec": "Dec", - "display": "float expf(float)", - "location": { - "column": "43", - "line": "144", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "expf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@expm1f", - "What": "Function", - "defdec": "Dec", - "display": "float expm1f(float)", - "location": { - "column": "43", - "line": "146", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "expm1f", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@exp2f", - "What": "Function", - "defdec": "Dec", - "display": "float exp2f(float)", - "location": { - "column": "43", - "line": "148", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "exp2f", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fabsf", - "What": "Function", - "defdec": "Dec", - "display": "float fabsf(float)", - "location": { - "column": "43", - "line": "149", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fabsf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fdimf", - "What": "Function", - "defdec": "Dec", - "display": "float fdimf(float, float)", - "location": { - "column": "43", - "line": "150", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fdimf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@floorf", - "What": "Function", - "defdec": "Dec", - "display": "float floorf(float)", - "location": { - "column": "43", - "line": "151", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "floorf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fmaf", - "What": "Function", - "defdec": "Dec", - "display": "float fmaf(float, float, float)", - "location": { - "column": "43", - "line": "153", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fmaf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fmaxf", - "What": "Function", - "defdec": "Dec", - "display": "float fmaxf(float, float)", - "location": { - "column": "43", - "line": "155", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fmaxf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fminf", - "What": "Function", - "defdec": "Dec", - "display": "float fminf(float, float)", - "location": { - "column": "43", - "line": "156", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fminf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fmodf", - "What": "Function", - "defdec": "Dec", - "display": "float fmodf(float, float)", - "location": { - "column": "43", - "line": "157", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fmodf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@frexpf", - "What": "Function", - "defdec": "Dec", - "display": "float frexpf(float, int *)", - "location": { - "column": "43", - "line": "158", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "frexpf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@hypotf", - "What": "Function", - "defdec": "Dec", - "display": "float hypotf(float, float)", - "location": { - "column": "43", - "line": "159", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "hypotf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@ilogbf", - "What": "Function", - "defdec": "Dec", - "display": "int ilogbf(float)", - "location": { - "column": "43", - "line": "160", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "ilogbf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@ldexpf", - "What": "Function", - "defdec": "Dec", - "display": "float ldexpf(float, int)", - "location": { - "column": "43", - "line": "161", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "ldexpf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@lgammaf", - "What": "Function", - "defdec": "Dec", - "display": "float lgammaf(float)", - "location": { - "column": "43", - "line": "163", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "lgammaf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@llrintf", - "What": "Function", - "defdec": "Dec", - "display": "long long llrintf(float)", - "location": { - "column": "43", - "line": "165", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "llrintf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@llroundf", - "What": "Function", - "defdec": "Dec", - "display": "long long llroundf(float)", - "location": { - "column": "43", - "line": "166", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "llroundf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@logbf", - "What": "Function", - "defdec": "Dec", - "display": "float logbf(float)", - "location": { - "column": "43", - "line": "167", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "logbf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@logf", - "What": "Function", - "defdec": "Dec", - "display": "float logf(float)", - "location": { - "column": "43", - "line": "168", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "logf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@log1pf", - "What": "Function", - "defdec": "Dec", - "display": "float log1pf(float)", - "location": { - "column": "43", - "line": "169", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "log1pf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@log2f", - "What": "Function", - "defdec": "Dec", - "display": "float log2f(float)", - "location": { - "column": "43", - "line": "170", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "log2f", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@log10f", - "What": "Function", - "defdec": "Dec", - "display": "float log10f(float)", - "location": { - "column": "43", - "line": "171", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "log10f", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@lrintf", - "What": "Function", - "defdec": "Dec", - "display": "long lrintf(float)", - "location": { - "column": "43", - "line": "172", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "lrintf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@lroundf", - "What": "Function", - "defdec": "Dec", - "display": "long lroundf(float)", - "location": { - "column": "43", - "line": "173", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "lroundf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@modff", - "What": "Function", - "defdec": "Dec", - "display": "float modff(float, float *)", - "location": { - "column": "43", - "line": "174", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "modff", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@nanf", - "What": "Function", - "defdec": "Dec", - "display": "float nanf(const char *)", - "location": { - "column": "43", - "line": "175", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "nanf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@nearbyintf", - "What": "Function", - "defdec": "Dec", - "display": "float nearbyintf(float)", - "location": { - "column": "43", - "line": "176", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "nearbyintf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@nextafterf", - "What": "Function", - "defdec": "Dec", - "display": "float nextafterf(float, float)", - "location": { - "column": "43", - "line": "177", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "nextafterf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@nexttowardf", - "What": "Function", - "defdec": "Dec", - "display": "float nexttowardf(float, long double)", - "location": { - "column": "43", - "line": "178", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "nexttowardf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@powf", - "What": "Function", - "defdec": "Dec", - "display": "float powf(float, float)", - "location": { - "column": "43", - "line": "179", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "powf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@remainderf", - "What": "Function", - "defdec": "Dec", - "display": "float remainderf(float, float)", - "location": { - "column": "43", - "line": "180", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "remainderf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@remquof", - "What": "Function", - "defdec": "Dec", - "display": "float remquof(float, float, int *)", - "location": { - "column": "43", - "line": "181", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "remquof", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@rintf", - "What": "Function", - "defdec": "Dec", - "display": "float rintf(float)", - "location": { - "column": "43", - "line": "182", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "rintf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@roundf", - "What": "Function", - "defdec": "Dec", - "display": "float roundf(float)", - "location": { - "column": "43", - "line": "183", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "roundf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@scalbnf", - "What": "Function", - "defdec": "Dec", - "display": "float scalbnf(float, int)", - "location": { - "column": "43", - "line": "184", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "scalbnf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@scalblnf", - "What": "Function", - "defdec": "Dec", - "display": "float scalblnf(float, long)", - "location": { - "column": "43", - "line": "185", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "scalblnf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@sinf", - "What": "Function", - "defdec": "Dec", - "display": "float sinf(float)", - "location": { - "column": "43", - "line": "186", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "sinf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@sinhf", - "What": "Function", - "defdec": "Dec", - "display": "float sinhf(float)", - "location": { - "column": "43", - "line": "187", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "sinhf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@sqrtf", - "What": "Function", - "defdec": "Dec", - "display": "float sqrtf(float)", - "location": { - "column": "43", - "line": "188", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "sqrtf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@tanf", - "What": "Function", - "defdec": "Dec", - "display": "float tanf(float)", - "location": { - "column": "43", - "line": "189", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "tanf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@tanhf", - "What": "Function", - "defdec": "Dec", - "display": "float tanhf(float)", - "location": { - "column": "43", - "line": "190", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "tanhf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@tgammaf", - "What": "Function", - "defdec": "Dec", - "display": "float tgammaf(float)", - "location": { - "column": "43", - "line": "192", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "tgammaf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@truncf", - "What": "Function", - "defdec": "Dec", - "display": "float truncf(float)", - "location": { - "column": "43", - "line": "194", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "truncf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@acoshl", - "What": "Function", - "defdec": "Dec", - "display": "long double acoshl(long double)", - "location": { - "column": "43", - "line": "197", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "acoshl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@acosl", - "What": "Function", - "defdec": "Dec", - "display": "long double acosl(long double)", - "location": { - "column": "43", - "line": "198", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "acosl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@asinhl", - "What": "Function", - "defdec": "Dec", - "display": "long double asinhl(long double)", - "location": { - "column": "43", - "line": "199", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "asinhl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@asinl", - "What": "Function", - "defdec": "Dec", - "display": "long double asinl(long double)", - "location": { - "column": "43", - "line": "200", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "asinl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atanl", - "What": "Function", - "defdec": "Dec", - "display": "long double atanl(long double)", - "location": { - "column": "43", - "line": "201", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "atanl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atanhl", - "What": "Function", - "defdec": "Dec", - "display": "long double atanhl(long double)", - "location": { - "column": "43", - "line": "202", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "atanhl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@atan2l", - "What": "Function", - "defdec": "Dec", - "display": "long double atan2l(long double, long double)", - "location": { - "column": "43", - "line": "203", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "atan2l", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@ceill", - "What": "Function", - "defdec": "Dec", - "display": "long double ceill(long double)", - "location": { - "column": "43", - "line": "204", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "ceill", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@cbrtl", - "What": "Function", - "defdec": "Dec", - "display": "long double cbrtl(long double)", - "location": { - "column": "43", - "line": "205", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "cbrtl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@copysignl", - "What": "Function", - "defdec": "Dec", - "display": "long double copysignl(long double, long double)", - "location": { - "column": "43", - "line": "206", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "copysignl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@coshl", - "What": "Function", - "defdec": "Dec", - "display": "long double coshl(long double)", - "location": { - "column": "43", - "line": "207", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "coshl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@cosl", - "What": "Function", - "defdec": "Dec", - "display": "long double cosl(long double)", - "location": { - "column": "43", - "line": "208", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "cosl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@erfl", - "What": "Function", - "defdec": "Dec", - "display": "long double erfl(long double)", - "location": { - "column": "43", - "line": "210", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "erfl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@erfcl", - "What": "Function", - "defdec": "Dec", - "display": "long double erfcl(long double)", - "location": { - "column": "43", - "line": "211", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "erfcl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@expl", - "What": "Function", - "defdec": "Dec", - "display": "long double expl(long double)", - "location": { - "column": "43", - "line": "213", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "expl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@expm1l", - "What": "Function", - "defdec": "Dec", - "display": "long double expm1l(long double)", - "location": { - "column": "43", - "line": "215", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "expm1l", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@exp2l", - "What": "Function", - "defdec": "Dec", - "display": "long double exp2l(long double)", - "location": { - "column": "43", - "line": "217", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "exp2l", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fabsl", - "What": "Function", - "defdec": "Dec", - "display": "long double fabsl(long double)", - "location": { - "column": "43", - "line": "218", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fabsl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fdiml", - "What": "Function", - "defdec": "Dec", - "display": "long double fdiml(long double, long double)", - "location": { - "column": "43", - "line": "219", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fdiml", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@floorl", - "What": "Function", - "defdec": "Dec", - "display": "long double floorl(long double)", - "location": { - "column": "43", - "line": "220", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "floorl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fmal", - "What": "Function", - "defdec": "Dec", - "display": "long double fmal(long double, long double, long double)", - "location": { - "column": "43", - "line": "222", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fmal", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fmaxl", - "What": "Function", - "defdec": "Dec", - "display": "long double fmaxl(long double, long double)", - "location": { - "column": "43", - "line": "225", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fmaxl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fminl", - "What": "Function", - "defdec": "Dec", - "display": "long double fminl(long double, long double)", - "location": { - "column": "43", - "line": "226", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fminl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@fmodl", - "What": "Function", - "defdec": "Dec", - "display": "long double fmodl(long double, long double)", - "location": { - "column": "43", - "line": "227", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fmodl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@frexpl", - "What": "Function", - "defdec": "Dec", - "display": "long double frexpl(long double, int *)", - "location": { - "column": "43", - "line": "228", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "frexpl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@hypotl", - "What": "Function", - "defdec": "Dec", - "display": "long double hypotl(long double, long double)", - "location": { - "column": "43", - "line": "229", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "hypotl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@ilogbl", - "What": "Function", - "defdec": "Dec", - "display": "int ilogbl(long double)", - "location": { - "column": "43", - "line": "230", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "ilogbl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@ldexpl", - "What": "Function", - "defdec": "Dec", - "display": "long double ldexpl(long double, int)", - "location": { - "column": "43", - "line": "231", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "ldexpl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@lgammal", - "What": "Function", - "defdec": "Dec", - "display": "long double lgammal(long double)", - "location": { - "column": "43", - "line": "233", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "lgammal", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@llrintl", - "What": "Function", - "defdec": "Dec", - "display": "long long llrintl(long double)", - "location": { - "column": "43", - "line": "235", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "llrintl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@llroundl", - "What": "Function", - "defdec": "Dec", - "display": "long long llroundl(long double)", - "location": { - "column": "43", - "line": "236", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "llroundl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@logbl", - "What": "Function", - "defdec": "Dec", - "display": "long double logbl(long double)", - "location": { - "column": "43", - "line": "237", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "logbl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@logl", - "What": "Function", - "defdec": "Dec", - "display": "long double logl(long double)", - "location": { - "column": "43", - "line": "238", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "logl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@log1pl", - "What": "Function", - "defdec": "Dec", - "display": "long double log1pl(long double)", - "location": { - "column": "43", - "line": "239", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "log1pl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@log10l", - "What": "Function", - "defdec": "Dec", - "display": "long double log10l(long double)", - "location": { - "column": "43", - "line": "240", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "log10l", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@log2l", - "What": "Function", - "defdec": "Dec", - "display": "long double log2l(long double)", - "location": { - "column": "43", - "line": "241", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "log2l", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@lrintl", - "What": "Function", - "defdec": "Dec", - "display": "long lrintl(long double)", - "location": { - "column": "43", - "line": "242", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "lrintl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@lroundl", - "What": "Function", - "defdec": "Dec", - "display": "long lroundl(long double)", - "location": { - "column": "43", - "line": "243", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "lroundl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@modfl", - "What": "Function", - "defdec": "Dec", - "display": "long double modfl(long double, long double *)", - "location": { - "column": "43", - "line": "244", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "modfl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@nanl", - "What": "Function", - "defdec": "Dec", - "display": "long double nanl(const char *)", - "location": { - "column": "43", - "line": "245", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "nanl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@nearbyintl", - "What": "Function", - "defdec": "Dec", - "display": "long double nearbyintl(long double)", - "location": { - "column": "43", - "line": "246", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "nearbyintl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@nextafterl", - "What": "Function", - "defdec": "Dec", - "display": "long double nextafterl(long double, long double)", - "location": { - "column": "43", - "line": "247", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "nextafterl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@nexttowardl", - "What": "Function", - "defdec": "Dec", - "display": "long double nexttowardl(long double, long double)", - "location": { - "column": "43", - "line": "248", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "nexttowardl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@powl", - "What": "Function", - "defdec": "Dec", - "display": "long double powl(long double, long double)", - "location": { - "column": "43", - "line": "249", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "powl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@remainderl", - "What": "Function", - "defdec": "Dec", - "display": "long double remainderl(long double, long double)", - "location": { - "column": "43", - "line": "250", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "remainderl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@remquol", - "What": "Function", - "defdec": "Dec", - "display": "long double remquol(long double, long double, int *)", - "location": { - "column": "43", - "line": "251", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "remquol", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@rintl", - "What": "Function", - "defdec": "Dec", - "display": "long double rintl(long double)", - "location": { - "column": "43", - "line": "253", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "rintl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@roundl", - "What": "Function", - "defdec": "Dec", - "display": "long double roundl(long double)", - "location": { - "column": "43", - "line": "254", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "roundl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@scalbnl", - "What": "Function", - "defdec": "Dec", - "display": "long double scalbnl(long double, int)", - "location": { - "column": "43", - "line": "255", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "scalbnl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@scalblnl", - "What": "Function", - "defdec": "Dec", - "display": "long double scalblnl(long double, long)", - "location": { - "column": "43", - "line": "256", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "scalblnl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@sinhl", - "What": "Function", - "defdec": "Dec", - "display": "long double sinhl(long double)", - "location": { - "column": "43", - "line": "257", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "sinhl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@sinl", - "What": "Function", - "defdec": "Dec", - "display": "long double sinl(long double)", - "location": { - "column": "43", - "line": "258", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "sinl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@sqrtl", - "What": "Function", - "defdec": "Dec", - "display": "long double sqrtl(long double)", - "location": { - "column": "43", - "line": "259", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "sqrtl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@tanl", - "What": "Function", - "defdec": "Dec", - "display": "long double tanl(long double)", - "location": { - "column": "43", - "line": "260", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "tanl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@tanhl", - "What": "Function", - "defdec": "Dec", - "display": "long double tanhl(long double)", - "location": { - "column": "43", - "line": "261", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "tanhl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@tgammal", - "What": "Function", - "defdec": "Dec", - "display": "long double tgammal(long double)", - "location": { - "column": "43", - "line": "263", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "tgammal", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@truncl", - "What": "Function", - "defdec": "Dec", - "display": "long double truncl(long double)", - "location": { - "column": "43", - "line": "265", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "truncl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_cos_medium", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_cos_medium(double)", - "location": { - "column": "43", - "line": "270", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_cos_medium", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_exp_medium", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_exp_medium(double)", - "location": { - "column": "43", - "line": "271", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_exp_medium", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log_medium", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_log_medium(double)", - "location": { - "column": "43", - "line": "272", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log_medium", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log10_medium", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_log10_medium(double)", - "location": { - "column": "43", - "line": "273", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log10_medium", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log2_medium", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_log2_medium(double)", - "location": { - "column": "43", - "line": "274", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log2_medium", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_pow_medium", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_pow_medium(double, double)", - "location": { - "column": "43", - "line": "275", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_pow_medium", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_sin_medium", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_sin_medium(double)", - "location": { - "column": "43", - "line": "276", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_sin_medium", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_tan_medium", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_tan_medium(double)", - "location": { - "column": "43", - "line": "277", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_tan_medium", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_cos_mediumf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_cos_mediumf(float)", - "location": { - "column": "43", - "line": "279", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_cos_mediumf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_exp_mediumf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_exp_mediumf(float)", - "location": { - "column": "43", - "line": "280", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_exp_mediumf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log_mediumf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_log_mediumf(float)", - "location": { - "column": "43", - "line": "281", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log_mediumf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log10_mediumf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_log10_mediumf(float)", - "location": { - "column": "43", - "line": "282", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log10_mediumf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log2_mediumf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_log2_mediumf(float)", - "location": { - "column": "43", - "line": "283", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log2_mediumf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_pow_mediumf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_pow_mediumf(float, float)", - "location": { - "column": "43", - "line": "284", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_pow_mediumf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_sin_mediumf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_sin_mediumf(float)", - "location": { - "column": "43", - "line": "285", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_sin_mediumf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_tan_mediumf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_tan_mediumf(float)", - "location": { - "column": "43", - "line": "286", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_tan_mediumf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_cos_mediuml", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_cos_mediuml(long double)", - "location": { - "column": "43", - "line": "288", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_cos_mediuml", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_exp_mediuml", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_exp_mediuml(long double)", - "location": { - "column": "43", - "line": "289", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_exp_mediuml", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log_mediuml", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_log_mediuml(long double)", - "location": { - "column": "43", - "line": "290", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log_mediuml", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log10_mediuml", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_log10_mediuml(long double)", - "location": { - "column": "43", - "line": "291", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log10_mediuml", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log2_mediuml", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_log2_mediuml(long double)", - "location": { - "column": "43", - "line": "292", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log2_mediuml", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_pow_mediuml", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_pow_mediuml(long double, long double)", - "location": { - "column": "43", - "line": "293", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_pow_mediuml", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_sin_mediuml", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_sin_mediuml(long double)", - "location": { - "column": "43", - "line": "295", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_sin_mediuml", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_tan_mediuml", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_tan_mediuml(long double)", - "location": { - "column": "43", - "line": "296", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_tan_mediuml", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_cos_accurate", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_cos_accurate(double)", - "location": { - "column": "43", - "line": "300", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_cos_accurate", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_pow_accurate", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_pow_accurate(double, double)", - "location": { - "column": "43", - "line": "301", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_pow_accurate", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_sin_accurate", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_sin_accurate(double)", - "location": { - "column": "43", - "line": "302", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_sin_accurate", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_tan_accurate", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_tan_accurate(double)", - "location": { - "column": "43", - "line": "303", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_tan_accurate", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_cos_accuratef", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_cos_accuratef(float)", - "location": { - "column": "43", - "line": "305", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_cos_accuratef", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_pow_accuratef", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_pow_accuratef(float, float)", - "location": { - "column": "43", - "line": "306", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_pow_accuratef", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_sin_accuratef", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_sin_accuratef(float)", - "location": { - "column": "43", - "line": "307", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_sin_accuratef", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_tan_accuratef", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_tan_accuratef(float)", - "location": { - "column": "43", - "line": "308", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_tan_accuratef", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_cos_accuratel", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_cos_accuratel(long double)", - "location": { - "column": "43", - "line": "310", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_cos_accuratel", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_pow_accuratel", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_pow_accuratel(long double, long double)", - "location": { - "column": "43", - "line": "311", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_pow_accuratel", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_sin_accuratel", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_sin_accuratel(long double)", - "location": { - "column": "43", - "line": "313", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_sin_accuratel", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_tan_accuratel", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_tan_accuratel(long double)", - "location": { - "column": "43", - "line": "314", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_tan_accuratel", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_cos_small", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_cos_small(double)", - "location": { - "column": "43", - "line": "318", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_cos_small", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_exp_small", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_exp_small(double)", - "location": { - "column": "43", - "line": "319", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_exp_small", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log_small", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_log_small(double)", - "location": { - "column": "43", - "line": "320", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log_small", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log10_small", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_log10_small(double)", - "location": { - "column": "43", - "line": "321", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log10_small", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log2_small", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_log2_small(double)", - "location": { - "column": "43", - "line": "322", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log2_small", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_pow_small", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_pow_small(double, double)", - "location": { - "column": "43", - "line": "323", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_pow_small", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_sin_small", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_sin_small(double)", - "location": { - "column": "43", - "line": "324", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_sin_small", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_tan_small", - "What": "Function", - "defdec": "Dec", - "display": "double __iar_tan_small(double)", - "location": { - "column": "43", - "line": "325", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_tan_small", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_cos_smallf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_cos_smallf(float)", - "location": { - "column": "43", - "line": "327", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_cos_smallf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_exp_smallf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_exp_smallf(float)", - "location": { - "column": "43", - "line": "328", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_exp_smallf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log_smallf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_log_smallf(float)", - "location": { - "column": "43", - "line": "329", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log_smallf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log10_smallf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_log10_smallf(float)", - "location": { - "column": "43", - "line": "330", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log10_smallf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log2_smallf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_log2_smallf(float)", - "location": { - "column": "43", - "line": "331", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log2_smallf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_pow_smallf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_pow_smallf(float, float)", - "location": { - "column": "43", - "line": "332", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_pow_smallf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_sin_smallf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_sin_smallf(float)", - "location": { - "column": "43", - "line": "333", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_sin_smallf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_tan_smallf", - "What": "Function", - "defdec": "Dec", - "display": "float __iar_tan_smallf(float)", - "location": { - "column": "43", - "line": "334", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_tan_smallf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_cos_smalll", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_cos_smalll(long double)", - "location": { - "column": "43", - "line": "336", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_cos_smalll", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_exp_smalll", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_exp_smalll(long double)", - "location": { - "column": "43", - "line": "337", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_exp_smalll", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log_smalll", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_log_smalll(long double)", - "location": { - "column": "43", - "line": "338", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log_smalll", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log10_smalll", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_log10_smalll(long double)", - "location": { - "column": "43", - "line": "339", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log10_smalll", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_log2_smalll", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_log2_smalll(long double)", - "location": { - "column": "43", - "line": "340", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_log2_smalll", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_pow_smalll", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_pow_smalll(long double, long double)", - "location": { - "column": "43", - "line": "341", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_pow_smalll", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_sin_smalll", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_sin_smalll(long double)", - "location": { - "column": "43", - "line": "343", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_sin_smalll", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_tan_smalll", - "What": "Function", - "defdec": "Dec", - "display": "long double __iar_tan_smalll(long double)", - "location": { - "column": "43", - "line": "344", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_tan_smalll", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@E@__FPclass", - "What": "Enum", - "defdec": "Def", - "display": "__FPclass", - "fields": [ - { - "ID": "c:@E@__FPclass@__kInfinity", - "What": "Enumerator", - "defdec": "Def", - "display": "__kInfinity", - "location": { - "column": "18", - "line": "498", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__kInfinity", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@E@__FPclass@__kNan", - "What": "Enumerator", - "defdec": "Def", - "display": "__kNan", - "location": { - "column": "31", - "line": "498", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__kNan", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@E@__FPclass@__kFinite", - "What": "Enumerator", - "defdec": "Def", - "display": "__kFinite", - "location": { - "column": "39", - "line": "498", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__kFinite", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@E@__FPclass@__kDenorm", - "What": "Enumerator", - "defdec": "Def", - "display": "__kDenorm", - "location": { - "column": "50", - "line": "498", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__kDenorm", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@E@__FPclass@__kZero", - "What": "Enumerator", - "defdec": "Def", - "display": "__kZero", - "location": { - "column": "61", - "line": "498", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__kZero", - "origin": "system_include", - "scope": null - } - ], - "location": { - "column": "6", - "line": "498", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__FPclass", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_FPclassify32", - "What": "Function", - "defdec": "Def", - "display": "int __iar_FPclassify32(float)", - "location": { - "column": "17", - "line": "501", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_FPclassify32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_FPclassify64", - "What": "Function", - "defdec": "Def", - "display": "int __iar_FPclassify64(double)", - "location": { - "column": "17", - "line": "524", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_FPclassify64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@27592@macro@__iar_signbitf", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_signbitf", - "location": { - "column": "11", - "line": "547", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_signbitf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@27639@macro@__iar_FPclassifyf", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_FPclassifyf", - "location": { - "column": "11", - "line": "548", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_FPclassifyf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@27689@macro@__iar_isinff", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_isinff", - "location": { - "column": "11", - "line": "549", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_isinff", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@27734@macro@__iar_isnanf", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_isnanf", - "location": { - "column": "11", - "line": "550", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_isnanf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@27779@macro@__iar_iszerof", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_iszerof", - "location": { - "column": "11", - "line": "551", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_iszerof", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@27825@macro@__iar_isnormalf", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_isnormalf", - "location": { - "column": "11", - "line": "552", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_isnormalf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@27873@macro@__iar_issubnormalf", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_issubnormalf", - "location": { - "column": "11", - "line": "553", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_issubnormalf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@27924@macro@__iar_isfinitef", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_isfinitef", - "location": { - "column": "11", - "line": "554", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_isfinitef", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@27972@macro@__iar_copysignf", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_copysignf", - "location": { - "column": "11", - "line": "555", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_copysignf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@28537@macro@__iar_signbit", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_signbit", - "location": { - "column": "11", - "line": "568", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_signbit", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@28584@macro@__iar_FPclassify", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_FPclassify", - "location": { - "column": "11", - "line": "569", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_FPclassify", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@28634@macro@__iar_isinf", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_isinf", - "location": { - "column": "11", - "line": "570", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_isinf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@28679@macro@__iar_isnan", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_isnan", - "location": { - "column": "11", - "line": "571", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_isnan", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@28724@macro@__iar_iszero", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_iszero", - "location": { - "column": "11", - "line": "572", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_iszero", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@28770@macro@__iar_isnormal", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_isnormal", - "location": { - "column": "11", - "line": "573", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_isnormal", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@28818@macro@__iar_issubnormal", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_issubnormal", - "location": { - "column": "11", - "line": "574", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_issubnormal", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@28869@macro@__iar_isfinite", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_isfinite", - "location": { - "column": "11", - "line": "575", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_isfinite", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@28917@macro@__iar_copysign", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_copysign", - "location": { - "column": "11", - "line": "576", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_copysign", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@29015@macro@__iar_signbitl", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_signbitl", - "location": { - "column": "11", - "line": "579", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_signbitl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@29060@macro@__iar_FPclassifyl", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_FPclassifyl", - "location": { - "column": "11", - "line": "580", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_FPclassifyl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@29108@macro@__iar_isinfl", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_isinfl", - "location": { - "column": "11", - "line": "581", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_isinfl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@29151@macro@__iar_isnanl", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_isnanl", - "location": { - "column": "11", - "line": "582", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_isnanl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@29194@macro@__iar_iszerol", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_iszerol", - "location": { - "column": "11", - "line": "583", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_iszerol", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@29238@macro@__iar_isnormall", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_isnormall", - "location": { - "column": "11", - "line": "584", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_isnormall", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@29284@macro@__iar_issubnormall", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_issubnormall", - "location": { - "column": "11", - "line": "585", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_issubnormall", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@29333@macro@__iar_isfinitel", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_isfinitel", - "location": { - "column": "11", - "line": "586", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_isfinitel", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@29379@macro@__iar_copysignl", - "What": "MacroDef", - "defdec": "Def", - "display": "__iar_copysignl", - "location": { - "column": "11", - "line": "587", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__iar_copysignl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@48803@macro@FP_INFINITE", - "What": "MacroDef", - "defdec": "Def", - "display": "FP_INFINITE", - "location": { - "column": "11", - "line": "1366", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "FP_INFINITE", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@48839@macro@FP_NAN", - "What": "MacroDef", - "defdec": "Def", - "display": "FP_NAN", - "location": { - "column": "11", - "line": "1367", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "FP_NAN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@48870@macro@FP_NORMAL", - "What": "MacroDef", - "defdec": "Def", - "display": "FP_NORMAL", - "location": { - "column": "11", - "line": "1368", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "FP_NORMAL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@48904@macro@FP_SUBNORMAL", - "What": "MacroDef", - "defdec": "Def", - "display": "FP_SUBNORMAL", - "location": { - "column": "11", - "line": "1369", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "FP_SUBNORMAL", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@48938@macro@FP_ZERO", - "What": "MacroDef", - "defdec": "Def", - "display": "FP_ZERO", - "location": { - "column": "11", - "line": "1370", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "FP_ZERO", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@48972@macro@MATH_ERRNO", - "What": "MacroDef", - "defdec": "Def", - "display": "MATH_ERRNO", - "location": { - "column": "11", - "line": "1372", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "MATH_ERRNO", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@48996@macro@MATH_ERREXCEPT", - "What": "MacroDef", - "defdec": "Def", - "display": "MATH_ERREXCEPT", - "location": { - "column": "11", - "line": "1373", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "MATH_ERREXCEPT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@49054@macro@math_errhandling", - "What": "MacroDef", - "defdec": "Def", - "display": "math_errhandling", - "location": { - "column": "13", - "line": "1375", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "math_errhandling", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@49223@macro@FP_ILOGB0", - "What": "MacroDef", - "defdec": "Def", - "display": "FP_ILOGB0", - "location": { - "column": "11", - "line": "1384", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "FP_ILOGB0", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@49267@macro@FP_ILOGBNAN", - "What": "MacroDef", - "defdec": "Def", - "display": "FP_ILOGBNAN", - "location": { - "column": "11", - "line": "1385", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "FP_ILOGBNAN", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__isnormalf", - "What": "Function", - "defdec": "Def", - "display": "__iar_FlagSType __isnormalf(float)", - "location": { - "column": "21", - "line": "1561", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__isnormalf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__isnormal", - "What": "Function", - "defdec": "Def", - "display": "__iar_FlagSType __isnormal(double)", - "location": { - "column": "21", - "line": "1566", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__isnormal", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__isnormall", - "What": "Function", - "defdec": "Def", - "display": "__iar_FlagSType __isnormall(long double)", - "location": { - "column": "21", - "line": "1571", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__isnormall", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__isinff", - "What": "Function", - "defdec": "Def", - "display": "__iar_FlagSType __isinff(float)", - "location": { - "column": "22", - "line": "1576", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__isinff", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__isinf", - "What": "Function", - "defdec": "Def", - "display": "__iar_FlagSType __isinf(double)", - "location": { - "column": "22", - "line": "1581", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__isinf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__isinfl", - "What": "Function", - "defdec": "Def", - "display": "__iar_FlagSType __isinfl(long double)", - "location": { - "column": "22", - "line": "1586", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__isinfl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@55250@macro@_CARGR", - "What": "MacroDef", - "defdec": "Def", - "display": "_CARGR", - "location": { - "column": "13", - "line": "1592", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "_CARGR", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@55326@macro@_CARG2R", - "What": "MacroDef", - "defdec": "Def", - "display": "_CARG2R", - "location": { - "column": "13", - "line": "1593", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "_CARG2R", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@55409@macro@fpclassify", - "What": "MacroDef", - "defdec": "Def", - "display": "fpclassify", - "location": { - "column": "13", - "line": "1595", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "fpclassify", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@55583@macro@signbit", - "What": "MacroDef", - "defdec": "Def", - "display": "signbit", - "location": { - "column": "13", - "line": "1598", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "signbit", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@55754@macro@isfinite", - "What": "MacroDef", - "defdec": "Def", - "display": "isfinite", - "location": { - "column": "13", - "line": "1601", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "isfinite", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@55926@macro@isinf", - "What": "MacroDef", - "defdec": "Def", - "display": "isinf", - "location": { - "column": "13", - "line": "1604", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "isinf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@56091@macro@isnan", - "What": "MacroDef", - "defdec": "Def", - "display": "isnan", - "location": { - "column": "13", - "line": "1607", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "isnan", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@56260@macro@isnormal", - "What": "MacroDef", - "defdec": "Def", - "display": "isnormal", - "location": { - "column": "13", - "line": "1610", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "isnormal", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__isunorderedf", - "What": "Function", - "defdec": "Def", - "display": "__iar_FlagSType __isunorderedf(float, float)", - "location": { - "column": "21", - "line": "1615", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__isunorderedf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__isunordered", - "What": "Function", - "defdec": "Def", - "display": "__iar_FlagSType __isunordered(double, double)", - "location": { - "column": "21", - "line": "1620", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__isunordered", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__isunorderedl", - "What": "Function", - "defdec": "Def", - "display": "__iar_FlagSType __isunorderedl(long double, long double)", - "location": { - "column": "21", - "line": "1625", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__isunorderedl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__islessgreaterf", - "What": "Function", - "defdec": "Def", - "display": "__iar_FlagSType __islessgreaterf(float, float)", - "location": { - "column": "21", - "line": "1630", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__islessgreaterf", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__islessgreater", - "What": "Function", - "defdec": "Def", - "display": "__iar_FlagSType __islessgreater(double, double)", - "location": { - "column": "21", - "line": "1637", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__islessgreater", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__islessgreaterl", - "What": "Function", - "defdec": "Def", - "display": "__iar_FlagSType __islessgreaterl(long double, long double)", - "location": { - "column": "21", - "line": "1644", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "__islessgreaterl", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@57421@macro@isgreater", - "What": "MacroDef", - "defdec": "Def", - "display": "isgreater", - "location": { - "column": "13", - "line": "1651", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "isgreater", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@57469@macro@isgreaterequal", - "What": "MacroDef", - "defdec": "Def", - "display": "isgreaterequal", - "location": { - "column": "13", - "line": "1652", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "isgreaterequal", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@57517@macro@isless", - "What": "MacroDef", - "defdec": "Def", - "display": "isless", - "location": { - "column": "13", - "line": "1653", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "isless", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@57565@macro@islessequal", - "What": "MacroDef", - "defdec": "Def", - "display": "islessequal", - "location": { - "column": "13", - "line": "1654", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "islessequal", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@57613@macro@islessgreater", - "What": "MacroDef", - "defdec": "Def", - "display": "islessgreater", - "location": { - "column": "13", - "line": "1655", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "islessgreater", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:math.h@57822@macro@isunordered", - "What": "MacroDef", - "defdec": "Def", - "display": "isunordered", - "location": { - "column": "13", - "line": "1658", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\math.h" - }, - "name": "isunordered", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@E@_debugconsole_scanf_flag", - "What": "Enum", - "defdec": "Def", - "display": "_debugconsole_scanf_flag", - "fields": [ - { - "ID": "c:@E@_debugconsole_scanf_flag@kSCANF_Suppress", - "What": "Enumerator", - "defdec": "Def", - "display": "kSCANF_Suppress", - "location": { - "column": "5", - "line": "43", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "kSCANF_Suppress", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@_debugconsole_scanf_flag@kSCANF_DestMask", - "What": "Enumerator", - "defdec": "Def", - "display": "kSCANF_DestMask", - "location": { - "column": "5", - "line": "44", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "kSCANF_DestMask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@_debugconsole_scanf_flag@kSCANF_DestChar", - "What": "Enumerator", - "defdec": "Def", - "display": "kSCANF_DestChar", - "location": { - "column": "5", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "kSCANF_DestChar", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@_debugconsole_scanf_flag@kSCANF_DestString", - "What": "Enumerator", - "defdec": "Def", - "display": "kSCANF_DestString", - "location": { - "column": "5", - "line": "46", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "kSCANF_DestString", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@_debugconsole_scanf_flag@kSCANF_DestSet", - "What": "Enumerator", - "defdec": "Def", - "display": "kSCANF_DestSet", - "location": { - "column": "5", - "line": "47", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "kSCANF_DestSet", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@_debugconsole_scanf_flag@kSCANF_DestInt", - "What": "Enumerator", - "defdec": "Def", - "display": "kSCANF_DestInt", - "location": { - "column": "5", - "line": "48", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "kSCANF_DestInt", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@_debugconsole_scanf_flag@kSCANF_DestFloat", - "What": "Enumerator", - "defdec": "Def", - "display": "kSCANF_DestFloat", - "location": { - "column": "5", - "line": "49", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "kSCANF_DestFloat", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@_debugconsole_scanf_flag@kSCANF_LengthMask", - "What": "Enumerator", - "defdec": "Def", - "display": "kSCANF_LengthMask", - "location": { - "column": "5", - "line": "50", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "kSCANF_LengthMask", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@E@_debugconsole_scanf_flag@kSCANF_TypeSinged", - "What": "Enumerator", - "defdec": "Def", - "display": "kSCANF_TypeSinged", - "location": { - "column": "5", - "line": "60", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "kSCANF_TypeSinged", - "origin": "project_file", - "scope": null - } - ], - "location": { - "column": "6", - "line": "41", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "_debugconsole_scanf_flag", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@F@ScanIgnoreWhiteSpace", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t ScanIgnoreWhiteSpace(const char **)", - "location": { - "column": "17", - "line": "77", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "ScanIgnoreWhiteSpace", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@F@ConvertRadixNumToString", - "What": "Function", - "defdec": "Dec", - "display": "int32_t ConvertRadixNumToString(char *, void *, int32_t, int32_t, bool)", - "location": { - "column": "16", - "line": "90", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "ConvertRadixNumToString", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@modf", - "What": "Function", - "defdec": "Dec", - "display": "double modf(double, double *)", - "location": { - "column": "8", - "line": "109", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "modf", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@F@ScanIgnoreWhiteSpace", - "What": "Function", - "defdec": "Def", - "display": "uint32_t ScanIgnoreWhiteSpace(const char **)", - "location": { - "column": "17", - "line": "113", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "ScanIgnoreWhiteSpace", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@4333@F@ScanIgnoreWhiteSpace@count", - "What": "Variable", - "defdec": "Def", - "display": "count", - "location": { - "column": "13", - "line": "115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "count", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@4357@F@ScanIgnoreWhiteSpace@c", - "What": "Variable", - "defdec": "Def", - "display": "c", - "location": { - "column": "13", - "line": "116", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "c", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@F@ConvertRadixNumToString", - "What": "Function", - "defdec": "Def", - "display": "int32_t ConvertRadixNumToString(char *, void *, int32_t, int32_t, bool)", - "location": { - "column": "16", - "line": "128", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "ConvertRadixNumToString", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@4830@F@ConvertRadixNumToString@a", - "What": "Variable", - "defdec": "Def", - "display": "a", - "location": { - "column": "13", - "line": "139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "a", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@4846@F@ConvertRadixNumToString@b", - "What": "Variable", - "defdec": "Def", - "display": "b", - "location": { - "column": "13", - "line": "140", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "b", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@4862@F@ConvertRadixNumToString@c", - "What": "Variable", - "defdec": "Def", - "display": "c", - "location": { - "column": "13", - "line": "141", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "c", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@4880@F@ConvertRadixNumToString@ua", - "What": "Variable", - "defdec": "Def", - "display": "ua", - "location": { - "column": "14", - "line": "143", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "ua", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@4898@F@ConvertRadixNumToString@ub", - "What": "Variable", - "defdec": "Def", - "display": "ub", - "location": { - "column": "14", - "line": "144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "ub", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@4916@F@ConvertRadixNumToString@uc", - "What": "Variable", - "defdec": "Def", - "display": "uc", - "location": { - "column": "14", - "line": "145", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "uc", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@4973@F@ConvertRadixNumToString@nlen", - "What": "Variable", - "defdec": "Def", - "display": "nlen", - "location": { - "column": "13", - "line": "148", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "nlen", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@4992@F@ConvertRadixNumToString@nstrp", - "What": "Variable", - "defdec": "Def", - "display": "nstrp", - "location": { - "column": "11", - "line": "149", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "nstrp", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@StrFormatPrintf", - "What": "Function", - "defdec": "Def", - "display": "int StrFormatPrintf(const char *, va_list, char *, printfCb)", - "location": { - "column": "5", - "line": "347", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "StrFormatPrintf", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@9641@F@StrFormatPrintf@p", - "What": "Variable", - "defdec": "Def", - "display": "p", - "location": { - "column": "11", - "line": "350", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "p", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@9655@F@StrFormatPrintf@c", - "What": "Variable", - "defdec": "Def", - "display": "c", - "location": { - "column": "13", - "line": "351", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "c", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@9673@F@StrFormatPrintf@vstr", - "What": "Variable", - "defdec": "Def", - "display": "vstr", - "location": { - "column": "10", - "line": "353", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "vstr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@9693@F@StrFormatPrintf@vstrp", - "What": "Variable", - "defdec": "Def", - "display": "vstrp", - "location": { - "column": "11", - "line": "354", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "vstrp", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@9719@F@StrFormatPrintf@vlen", - "What": "Variable", - "defdec": "Def", - "display": "vlen", - "location": { - "column": "13", - "line": "355", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "vlen", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@9744@F@StrFormatPrintf@done", - "What": "Variable", - "defdec": "Def", - "display": "done", - "location": { - "column": "13", - "line": "357", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "done", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@9763@F@StrFormatPrintf@count", - "What": "Variable", - "defdec": "Def", - "display": "count", - "location": { - "column": "13", - "line": "358", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "count", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@9789@F@StrFormatPrintf@field_width", - "What": "Variable", - "defdec": "Def", - "display": "field_width", - "location": { - "column": "14", - "line": "360", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "field_width", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@9816@F@StrFormatPrintf@precision_width", - "What": "Variable", - "defdec": "Def", - "display": "precision_width", - "location": { - "column": "14", - "line": "361", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "precision_width", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@9847@F@StrFormatPrintf@sval", - "What": "Variable", - "defdec": "Def", - "display": "sval", - "location": { - "column": "11", - "line": "362", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "sval", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@9864@F@StrFormatPrintf@cval", - "What": "Variable", - "defdec": "Def", - "display": "cval", - "location": { - "column": "13", - "line": "363", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "cval", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@9883@F@StrFormatPrintf@use_caps", - "What": "Variable", - "defdec": "Def", - "display": "use_caps", - "location": { - "column": "10", - "line": "364", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "use_caps", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@9903@F@StrFormatPrintf@radix", - "What": "Variable", - "defdec": "Def", - "display": "radix", - "location": { - "column": "13", - "line": "365", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "radix", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@10094@F@StrFormatPrintf@ival", - "What": "Variable", - "defdec": "Def", - "display": "ival", - "location": { - "column": "13", - "line": "374", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "ival", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@10113@F@StrFormatPrintf@uval", - "What": "Variable", - "defdec": "Def", - "display": "uval", - "location": { - "column": "14", - "line": "375", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "uval", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@StrFormatScanf", - "What": "Function", - "defdec": "Def", - "display": "int StrFormatScanf(const char *, char *, va_list)", - "location": { - "column": "5", - "line": "873", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "StrFormatScanf", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@27109@F@StrFormatScanf@base", - "What": "Variable", - "defdec": "Def", - "display": "base", - "location": { - "column": "13", - "line": "875", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "base", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@27128@F@StrFormatScanf@neg", - "What": "Variable", - "defdec": "Def", - "display": "neg", - "location": { - "column": "12", - "line": "876", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "neg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@27190@F@StrFormatScanf@c", - "What": "Variable", - "defdec": "Def", - "display": "c", - "location": { - "column": "11", - "line": "878", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "c", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@27213@F@StrFormatScanf@temp", - "What": "Variable", - "defdec": "Def", - "display": "temp", - "location": { - "column": "10", - "line": "879", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "temp", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@27229@F@StrFormatScanf@buf", - "What": "Variable", - "defdec": "Def", - "display": "buf", - "location": { - "column": "11", - "line": "880", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "buf", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@27299@F@StrFormatScanf@flag", - "What": "Variable", - "defdec": "Def", - "display": "flag", - "location": { - "column": "14", - "line": "882", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "flag", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@27378@F@StrFormatScanf@field_width", - "What": "Variable", - "defdec": "Def", - "display": "field_width", - "location": { - "column": "14", - "line": "884", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "field_width", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@27469@F@StrFormatScanf@nassigned", - "What": "Variable", - "defdec": "Def", - "display": "nassigned", - "location": { - "column": "14", - "line": "886", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "nassigned", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@27562@F@StrFormatScanf@n_decode", - "What": "Variable", - "defdec": "Def", - "display": "n_decode", - "location": { - "column": "14", - "line": "888", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "n_decode", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@27592@F@StrFormatScanf@val", - "What": "Variable", - "defdec": "Def", - "display": "val", - "location": { - "column": "13", - "line": "890", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "val", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@27612@F@StrFormatScanf@s", - "What": "Variable", - "defdec": "Def", - "display": "s", - "location": { - "column": "17", - "line": "892", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "s", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_str.c@27676@F@StrFormatScanf@p", - "What": "Variable", - "defdec": "Def", - "display": "p", - "location": { - "column": "17", - "line": "894", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.c" - }, - "name": "p", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@158@macro@_FSL_DEBUG_CONSOLE_CONF_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_FSL_DEBUG_CONSOLE_CONF_H_", - "location": { - "column": "9", - "line": "9", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "_FSL_DEBUG_CONSOLE_CONF_H_", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@3067@macro@DEBUG_CONSOLE_TRANSFER_BLOCKING", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_TRANSFER_BLOCKING", - "location": { - "column": "9", - "line": "62", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "DEBUG_CONSOLE_TRANSFER_BLOCKING", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@3322@macro@DEBUG_CONSOLE_RX_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_RX_ENABLE", - "location": { - "column": "9", - "line": "69", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "DEBUG_CONSOLE_RX_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@3778@macro@DEBUG_CONSOLE_PRINTF_MAX_LOG_LEN", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_PRINTF_MAX_LOG_LEN", - "location": { - "column": "9", - "line": "78", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "DEBUG_CONSOLE_PRINTF_MAX_LOG_LEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@4137@macro@DEBUG_CONSOLE_SCANF_MAX_LOG_LEN", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_SCANF_MAX_LOG_LEN", - "location": { - "column": "9", - "line": "86", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "DEBUG_CONSOLE_SCANF_MAX_LOG_LEN", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@4666@macro@DEBUG_CONSOLE_SYNCHRONIZATION_BM", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_SYNCHRONIZATION_BM", - "location": { - "column": "9", - "line": "98", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "DEBUG_CONSOLE_SYNCHRONIZATION_BM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@4763@macro@DEBUG_CONSOLE_SYNCHRONIZATION_FREERTOS", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_SYNCHRONIZATION_FREERTOS", - "location": { - "column": "9", - "line": "100", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "DEBUG_CONSOLE_SYNCHRONIZATION_FREERTOS", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@5445@macro@DEBUG_CONSOLE_SYNCHRONIZATION_MODE", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_SYNCHRONIZATION_MODE", - "location": { - "column": "9", - "line": "115", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "DEBUG_CONSOLE_SYNCHRONIZATION_MODE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@5815@macro@DEBUG_CONSOLE_ENABLE_ECHO_FUNCTION", - "What": "MacroDef", - "defdec": "Def", - "display": "DEBUG_CONSOLE_ENABLE_ECHO_FUNCTION", - "location": { - "column": "9", - "line": "124", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "DEBUG_CONSOLE_ENABLE_ECHO_FUNCTION", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@6187@macro@PRINTF_FLOAT_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "PRINTF_FLOAT_ENABLE", - "location": { - "column": "9", - "line": "134", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "PRINTF_FLOAT_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@6336@macro@SCANF_FLOAT_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "SCANF_FLOAT_ENABLE", - "location": { - "column": "9", - "line": "139", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "SCANF_FLOAT_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@6509@macro@PRINTF_ADVANCED_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "PRINTF_ADVANCED_ENABLE", - "location": { - "column": "9", - "line": "144", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "PRINTF_ADVANCED_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@6688@macro@SCANF_ADVANCED_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "SCANF_ADVANCED_ENABLE", - "location": { - "column": "9", - "line": "149", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "SCANF_ADVANCED_ENABLE", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_debug_console_conf.h@6869@macro@BOARD_USE_VIRTUALCOM", - "What": "MacroDef", - "defdec": "Def", - "display": "BOARD_USE_VIRTUALCOM", - "location": { - "column": "9", - "line": "154", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_debug_console_conf.h" - }, - "name": "BOARD_USE_VIRTUALCOM", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@130@macro@_DLIB_FLOAT_SETUP", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_FLOAT_SETUP", - "location": { - "column": "9", - "line": "5", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "_DLIB_FLOAT_SETUP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@383@macro@_DLIB_trigonometric_IS_DEFAULT", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_trigonometric_IS_DEFAULT", - "location": { - "column": "12", - "line": "18", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "_DLIB_trigonometric_IS_DEFAULT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@618@macro@_DLIB_exp_pow_IS_DEFAULT", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_exp_pow_IS_DEFAULT", - "location": { - "column": "12", - "line": "27", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "_DLIB_exp_pow_IS_DEFAULT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@832@macro@_DLIB_log_IS_DEFAULT", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_log_IS_DEFAULT", - "location": { - "column": "12", - "line": "36", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "_DLIB_log_IS_DEFAULT", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@T@__iar_FlagUType", - "What": "Typedef", - "defdec": "Def", - "display": "unsigned int", - "location": { - "column": "27", - "line": "44", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_FlagUType", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@T@__iar_FlagSType", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "27", - "line": "45", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_FlagSType", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@T@__iar_ExpType", - "What": "Typedef", - "defdec": "Def", - "display": "int", - "location": { - "column": "27", - "line": "47", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_ExpType", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@1816@macro@_FLT_MAX_EXP", - "What": "MacroDef", - "defdec": "Def", - "display": "_FLT_MAX_EXP", - "location": { - "column": "9", - "line": "77", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "_FLT_MAX_EXP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@1843@macro@_FLT_BIAS", - "What": "MacroDef", - "defdec": "Def", - "display": "_FLT_BIAS", - "location": { - "column": "9", - "line": "78", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "_FLT_BIAS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@1870@macro@_FLT_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "_FLT_OFF", - "location": { - "column": "9", - "line": "79", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "_FLT_OFF", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@1897@macro@_DBL_MAX_EXP", - "What": "MacroDef", - "defdec": "Def", - "display": "_DBL_MAX_EXP", - "location": { - "column": "9", - "line": "81", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "_DBL_MAX_EXP", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@1925@macro@_DBL_BIAS", - "What": "MacroDef", - "defdec": "Def", - "display": "_DBL_BIAS", - "location": { - "column": "9", - "line": "82", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "_DBL_BIAS", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@1953@macro@_DBL_OFF", - "What": "MacroDef", - "defdec": "Def", - "display": "_DBL_OFF", - "location": { - "column": "9", - "line": "83", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "_DBL_OFF", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_isfinite32", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_isfinite32(float)", - "location": { - "column": "31", - "line": "91", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_isfinite32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@2190@F@__iar_isfinite32@ix", - "What": "Variable", - "defdec": "Def", - "display": "ix", - "location": { - "column": "20", - "line": "93", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "ix", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_isfinite64", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_isfinite64(double)", - "location": { - "column": "31", - "line": "99", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_isfinite64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@2394@F@__iar_isfinite64@ix", - "What": "Variable", - "defdec": "Def", - "display": "ix", - "location": { - "column": "20", - "line": "101", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "ix", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_isnan32", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_isnan32(float)", - "location": { - "column": "31", - "line": "109", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_isnan32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@2631@F@__iar_isnan32@ix", - "What": "Variable", - "defdec": "Def", - "display": "ix", - "location": { - "column": "20", - "line": "111", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "ix", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_isnan64", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_isnan64(double)", - "location": { - "column": "31", - "line": "117", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_isnan64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@2860@F@__iar_isnan64@ix", - "What": "Variable", - "defdec": "Def", - "display": "ix", - "location": { - "column": "20", - "line": "119", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "ix", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_iszero32", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_iszero32(float)", - "location": { - "column": "31", - "line": "129", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_iszero32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@3195@F@__iar_iszero32@ix", - "What": "Variable", - "defdec": "Def", - "display": "ix", - "location": { - "column": "21", - "line": "131", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "ix", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_iszero64", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_iszero64(double)", - "location": { - "column": "31", - "line": "137", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_iszero64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@3387@F@__iar_iszero64@ix", - "What": "Variable", - "defdec": "Def", - "display": "ix", - "location": { - "column": "21", - "line": "139", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "ix", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_isinf32", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_isinf32(float)", - "location": { - "column": "31", - "line": "150", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_isinf32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@3686@F@__iar_isinf32@ix", - "What": "Variable", - "defdec": "Def", - "display": "ix", - "location": { - "column": "20", - "line": "152", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "ix", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_isinf64", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_isinf64(double)", - "location": { - "column": "31", - "line": "158", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_isinf64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@3924@F@__iar_isinf64@ix", - "What": "Variable", - "defdec": "Def", - "display": "ix", - "location": { - "column": "20", - "line": "160", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "ix", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_issubnormal32", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_issubnormal32(float)", - "location": { - "column": "31", - "line": "171", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_issubnormal32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_issubnormal64", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_issubnormal64(double)", - "location": { - "column": "31", - "line": "183", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_issubnormal64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_isnormal32", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_isnormal32(float)", - "location": { - "column": "31", - "line": "199", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_isnormal32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@4960@F@__iar_isnormal32@exp", - "What": "Variable", - "defdec": "Def", - "display": "exp", - "location": { - "column": "20", - "line": "201", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "exp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_isnormal64", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_isnormal64(double)", - "location": { - "column": "31", - "line": "207", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_isnormal64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@5193@F@__iar_isnormal64@exp", - "What": "Variable", - "defdec": "Def", - "display": "exp", - "location": { - "column": "20", - "line": "209", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "exp", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_signbit32", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_signbit32(float)", - "location": { - "column": "31", - "line": "219", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_signbit32", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@5480@F@__iar_signbit32@ix", - "What": "Variable", - "defdec": "Def", - "display": "ix", - "location": { - "column": "21", - "line": "221", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "ix", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__iar_signbit64", - "What": "Function", - "defdec": "Def", - "display": "unsigned int __iar_signbit64(double)", - "location": { - "column": "31", - "line": "227", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "__iar_signbit64", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_float_setup.h@5661@F@__iar_signbit64@ix", - "What": "Variable", - "defdec": "Def", - "display": "ix", - "location": { - "column": "21", - "line": "229", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_float_setup.h" - }, - "name": "ix", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdarg.h@65@macro@_STDARG", - "What": "MacroDef", - "defdec": "Def", - "display": "_STDARG", - "location": { - "column": "9", - "line": "4", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdarg.h" - }, - "name": "_STDARG", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdarg.h@T@va_list", - "What": "Typedef", - "defdec": "Def", - "display": "__builtin_va_list", - "location": { - "column": "29", - "line": "10", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdarg.h" - }, - "name": "va_list", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdarg.h@181@macro@va_start", - "What": "MacroDef", - "defdec": "Def", - "display": "va_start", - "location": { - "column": "9", - "line": "11", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdarg.h" - }, - "name": "va_start", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdarg.h@240@macro@va_end", - "What": "MacroDef", - "defdec": "Def", - "display": "va_end", - "location": { - "column": "9", - "line": "12", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdarg.h" - }, - "name": "va_end", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdarg.h@290@macro@va_arg", - "What": "MacroDef", - "defdec": "Def", - "display": "va_arg", - "location": { - "column": "9", - "line": "13", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdarg.h" - }, - "name": "va_arg", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:stdarg.h@346@macro@va_copy", - "What": "MacroDef", - "defdec": "Def", - "display": "va_copy", - "location": { - "column": "9", - "line": "14", - "path": "C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\stdarg.h" - }, - "name": "va_copy", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:fsl_str.h@141@macro@_FSL_STR_H", - "What": "MacroDef", - "defdec": "Def", - "display": "_FSL_STR_H", - "location": { - "column": "9", - "line": "11", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.h" - }, - "name": "_FSL_STR_H", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:fsl_str.h@T@printfCb", - "What": "Typedef", - "defdec": "Def", - "display": "void (*)(char *, int32_t *, char, int)", - "location": { - "column": "16", - "line": "30", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.h" - }, - "name": "printfCb", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@StrFormatPrintf", - "What": "Function", - "defdec": "Dec", - "display": "int StrFormatPrintf(const char *, va_list, char *, printfCb)", - "location": { - "column": "5", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.h" - }, - "name": "StrFormatPrintf", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@StrFormatPrintf", - "What": "Function", - "defdec": "Dec", - "display": "int StrFormatPrintf(const char *, va_list, char *, printfCb)", - "location": { - "column": "5", - "line": "45", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.h" - }, - "name": "StrFormatPrintf", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@StrFormatScanf", - "What": "Function", - "defdec": "Dec", - "display": "int StrFormatScanf(const char *, char *, va_list)", - "location": { - "column": "5", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.h" - }, - "name": "StrFormatScanf", - "origin": "user_include", - "scope": null - }, - { - "ID": "c:@F@StrFormatScanf", - "What": "Function", - "defdec": "Dec", - "display": "int StrFormatScanf(const char *, char *, va_list)", - "location": { - "column": "5", - "line": "58", - "path": "C:\\Users\\yuhzheng\\Documents\\FreeRTOS\\FreeRTOS\\Demo\\CORTEX_M0+_LPC51U68_LPCXpresso\\utilities\\fsl_str.h" - }, - "name": "StrFormatScanf", - "origin": "user_include", - "scope": null - } -] \ No newline at end of file diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part0.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part0.pbi deleted file mode 100644 index 4d5b3ed60..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part0.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part1.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part1.pbi deleted file mode 100644 index 997cb07f3..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part1.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part2.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part2.pbi deleted file mode 100644 index d128cad51..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part2.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part3.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part3.pbi deleted file mode 100644 index c8bc3e270..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part3.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part4.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part4.pbi deleted file mode 100644 index 7173d2d6e..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part4.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part5.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part5.pbi deleted file mode 100644 index a2ffdc2c9..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part5.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part6.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part6.pbi deleted file mode 100644 index 15b6e9182..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/CORTEX_M0+_LPC51U68_IAR_part6.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueue.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueue.pbi deleted file mode 100644 index 9fe1b9201..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueue.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueue.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueue.pbi.dep deleted file mode 100644 index 34e55caf6..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueue.pbi.dep +++ /dev/null @@ -1,25 +0,0 @@ -IntQueue.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\Minimal\IntQueue.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\queue.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include\IntQueue.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\IntQueueTimer.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueue.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueue.xcl deleted file mode 100644 index feeb85337..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueue.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\Minimal\IntQueue.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\IntQueue.pbi.dep --o -IntQueue.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\Minimal --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueueTimer.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueueTimer.pbi deleted file mode 100644 index 043d1ad05..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueueTimer.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueueTimer.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueueTimer.pbi.dep deleted file mode 100644 index b53883802..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueueTimer.pbi.dep +++ /dev/null @@ -1,40 +0,0 @@ -IntQueueTimer.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app\IntQueueTimer.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app/IntQueueTimer.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include\IntQueue.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_ctimer.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueueTimer.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueueTimer.xcl deleted file mode 100644 index fc957b83a..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/IntQueueTimer.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app\IntQueueTimer.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\IntQueueTimer.pbi.dep --o -IntQueueTimer.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/blocktim.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/blocktim.pbi deleted file mode 100644 index 79cac33d5..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/blocktim.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/blocktim.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/blocktim.pbi.dep deleted file mode 100644 index ff8c243a9..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/blocktim.pbi.dep +++ /dev/null @@ -1,22 +0,0 @@ -blocktim.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\Minimal\blocktim.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\queue.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include\blocktim.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/blocktim.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/blocktim.xcl deleted file mode 100644 index 28713e26d..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/blocktim.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\Minimal\blocktim.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\blocktim.pbi.dep --o -blocktim.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\Minimal --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/board.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/board.pbi deleted file mode 100644 index 55b032786..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/board.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/board.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/board.pbi.dep deleted file mode 100644 index fd736b8f3..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/board.pbi.dep +++ /dev/null @@ -1,35 +0,0 @@ -board.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards\board.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards/clock_config.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards/board.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_gpio.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities\fsl_debug_console.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager\serial_manager.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager/serial_port_uart.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/board.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/board.xcl deleted file mode 100644 index ccf6b6bea..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/board.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards\board.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\board.pbi.dep --o -board.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/build.ninja b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/build.ninja deleted file mode 100644 index db238e00a..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/build.ninja +++ /dev/null @@ -1,71 +0,0 @@ -#Generating source browse information for project CORTEX_M0+_LPC51U68_IAR - - -#Abbreviations -cc = C$:\Program$ Files$ (x86)\IAR$ Systems\Embedded$ Workbench$ 8.3\common\bin\SourceIndexer.exe -ll = C$:\Program$ Files$ (x86)\IAR$ Systems\Embedded$ Workbench$ 8.3\common\bin\PbdLink.exe -bd = C$:\Program$ Files$ (x86)\IAR$ Systems\Embedded$ Workbench$ 8.3\common\bin\makeBrowseData.exe - - - -#Rules -rule index - depfile = $out.dep - command = $cc -out=$out -f $in -rule link - command = $ll -M $out $in -rule browsedata - command = $bd $in -output $out - - - -#Build steps -build IntQueueTimer.pbi : index IntQueueTimer.xcl -build main.pbi : index main.xcl -build main_blinky.pbi : index main_blinky.xcl -build main_full.pbi : index main_full.xcl -build board.pbi : index board.xcl -build clock_config.pbi : index clock_config.xcl -build peripherals.pbi : index peripherals.xcl -build pin_mux.pbi : index pin_mux.xcl -build generic_list.pbi : index generic_list.xcl -build serial_manager.pbi : index serial_manager.xcl -build serial_port_uart.pbi : index serial_port_uart.xcl -build usart_adapter.pbi : index usart_adapter.xcl -build system_LPC51U68.pbi : index system_LPC51U68.xcl -build fsl_clock.pbi : index fsl_clock.xcl -build fsl_common.pbi : index fsl_common.xcl -build fsl_ctimer.pbi : index fsl_ctimer.xcl -build fsl_flexcomm.pbi : index fsl_flexcomm.xcl -build fsl_gpio.pbi : index fsl_gpio.xcl -build fsl_pint.pbi : index fsl_pint.xcl -build fsl_power.pbi : index fsl_power.xcl -build fsl_reset.pbi : index fsl_reset.xcl -build fsl_usart.pbi : index fsl_usart.xcl -build port.pbi : index port.xcl -build heap_5.pbi : index heap_5.xcl -build croutine.pbi : index croutine.xcl -build event_groups.pbi : index event_groups.xcl -build list.pbi : index list.xcl -build queue.pbi : index queue.xcl -build stream_buffer.pbi : index stream_buffer.xcl -build tasks.pbi : index tasks.xcl -build timers.pbi : index timers.xcl -build blocktim.pbi : index blocktim.xcl -build countsem.pbi : index countsem.xcl -build IntQueue.pbi : index IntQueue.xcl -build recmutex.pbi : index recmutex.xcl -build fsl_assert.pbi : index fsl_assert.xcl -build fsl_debug_console.pbi : index fsl_debug_console.xcl -build fsl_str.pbi : index fsl_str.xcl -build CORTEX_M0+_LPC51U68_IAR_part0.pbi : link IntQueueTimer.pbi main.pbi main_blinky.pbi main_full.pbi board.pbi clock_config.pbi -build CORTEX_M0+_LPC51U68_IAR_part1.pbi : link peripherals.pbi pin_mux.pbi generic_list.pbi serial_manager.pbi serial_port_uart.pbi usart_adapter.pbi -build CORTEX_M0+_LPC51U68_IAR_part2.pbi : link system_LPC51U68.pbi fsl_clock.pbi fsl_common.pbi fsl_ctimer.pbi fsl_flexcomm.pbi fsl_gpio.pbi -build CORTEX_M0+_LPC51U68_IAR_part3.pbi : link fsl_pint.pbi fsl_power.pbi fsl_reset.pbi fsl_usart.pbi port.pbi heap_5.pbi -build CORTEX_M0+_LPC51U68_IAR_part4.pbi : link croutine.pbi event_groups.pbi list.pbi queue.pbi stream_buffer.pbi tasks.pbi -build CORTEX_M0+_LPC51U68_IAR_part5.pbi : link timers.pbi blocktim.pbi countsem.pbi IntQueue.pbi recmutex.pbi fsl_assert.pbi -build CORTEX_M0+_LPC51U68_IAR_part6.pbi : link fsl_debug_console.pbi fsl_str.pbi -build CORTEX_M0+_LPC51U68_IAR.pbd : link CORTEX_M0+_LPC51U68_IAR_part0.pbi CORTEX_M0+_LPC51U68_IAR_part1.pbi CORTEX_M0+_LPC51U68_IAR_part2.pbi CORTEX_M0+_LPC51U68_IAR_part3.pbi CORTEX_M0+_LPC51U68_IAR_part4.pbi CORTEX_M0+_LPC51U68_IAR_part5.pbi CORTEX_M0+_LPC51U68_IAR_part6.pbi -build CORTEX_M0+_LPC51U68_IAR.pbw : browsedata CORTEX_M0+_LPC51U68_IAR.pbd - - diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/clock_config.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/clock_config.pbi deleted file mode 100644 index ffbfd5ca8..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/clock_config.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/clock_config.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/clock_config.pbi.dep deleted file mode 100644 index e5fb590bb..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/clock_config.pbi.dep +++ /dev/null @@ -1,32 +0,0 @@ -clock_config.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards\clock_config.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_power.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards/clock_config.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_common.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/clock_config.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/clock_config.xcl deleted file mode 100644 index 83fd74735..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/clock_config.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards\clock_config.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\clock_config.pbi.dep --o -clock_config.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/countsem.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/countsem.pbi deleted file mode 100644 index 1e6703836..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/countsem.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/countsem.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/countsem.pbi.dep deleted file mode 100644 index 66d58f5f7..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/countsem.pbi.dep +++ /dev/null @@ -1,23 +0,0 @@ -countsem.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\Minimal\countsem.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\semphr.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/queue.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include\countsem.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/countsem.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/countsem.xcl deleted file mode 100644 index cb80e1886..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/countsem.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\Minimal\countsem.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\countsem.pbi.dep --o -countsem.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\Minimal --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/croutine.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/croutine.pbi deleted file mode 100644 index a1e2edafe..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/croutine.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/croutine.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/croutine.pbi.dep deleted file mode 100644 index 5f46e3371..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/croutine.pbi.dep +++ /dev/null @@ -1,20 +0,0 @@ -croutine.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\croutine.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\croutine.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/croutine.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/croutine.xcl deleted file mode 100644 index df83753a6..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/croutine.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\croutine.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\croutine.pbi.dep --o -croutine.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/event_groups.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/event_groups.pbi deleted file mode 100644 index e206f7264..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/event_groups.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/event_groups.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/event_groups.pbi.dep deleted file mode 100644 index 4fe8da2fd..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/event_groups.pbi.dep +++ /dev/null @@ -1,25 +0,0 @@ -event_groups.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\event_groups.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\timers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\event_groups.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/timers.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/event_groups.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/event_groups.xcl deleted file mode 100644 index 1134440d5..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/event_groups.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\event_groups.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\event_groups.pbi.dep --o -event_groups.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_assert.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_assert.pbi deleted file mode 100644 index 8ca5f3e60..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_assert.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_assert.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_assert.pbi.dep deleted file mode 100644 index cd53a00ec..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_assert.pbi.dep +++ /dev/null @@ -1,32 +0,0 @@ -fsl_assert.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities\fsl_assert.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities/fsl_debug_console.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager\serial_manager.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager/serial_port_uart.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_assert.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_assert.xcl deleted file mode 100644 index ff9821cab..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_assert.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities\fsl_assert.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\fsl_assert.pbi.dep --o -fsl_assert.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_clock.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_clock.pbi deleted file mode 100644 index ad7c53121..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_clock.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_clock.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_clock.pbi.dep deleted file mode 100644 index 2eb3f0b82..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_clock.pbi.dep +++ /dev/null @@ -1,29 +0,0 @@ -fsl_clock.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_clock.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_power.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_clock.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_clock.xcl deleted file mode 100644 index b37074cca..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_clock.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_clock.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\fsl_clock.pbi.dep --o -fsl_clock.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_common.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_common.pbi deleted file mode 100644 index 55beba77b..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_common.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_common.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_common.pbi.dep deleted file mode 100644 index 75ac0fee4..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_common.pbi.dep +++ /dev/null @@ -1,28 +0,0 @@ -fsl_common.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_common.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_common.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_common.xcl deleted file mode 100644 index e66d0f1c8..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_common.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_common.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\fsl_common.pbi.dep --o -fsl_common.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_ctimer.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_ctimer.pbi deleted file mode 100644 index 2658ce888..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_ctimer.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_ctimer.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_ctimer.pbi.dep deleted file mode 100644 index 87f8f9351..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_ctimer.pbi.dep +++ /dev/null @@ -1,29 +0,0 @@ -fsl_ctimer.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_ctimer.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_ctimer.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_ctimer.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_ctimer.xcl deleted file mode 100644 index 8e5b658ab..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_ctimer.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_ctimer.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\fsl_ctimer.pbi.dep --o -fsl_ctimer.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_debug_console.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_debug_console.pbi deleted file mode 100644 index ce7e40453..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_debug_console.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_debug_console.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_debug_console.pbi.dep deleted file mode 100644 index c0e5513cb..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_debug_console.pbi.dep +++ /dev/null @@ -1,35 +0,0 @@ -fsl_debug_console.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities\fsl_debug_console.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdarg.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities/fsl_debug_console_conf.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities/fsl_str.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager\serial_manager.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager/serial_port_uart.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities/fsl_debug_console.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_debug_console.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_debug_console.xcl deleted file mode 100644 index cb69f1378..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_debug_console.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities\fsl_debug_console.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\fsl_debug_console.pbi.dep --o -fsl_debug_console.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_flexcomm.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_flexcomm.pbi deleted file mode 100644 index bcab66e71..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_flexcomm.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_flexcomm.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_flexcomm.pbi.dep deleted file mode 100644 index 010cc2b88..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_flexcomm.pbi.dep +++ /dev/null @@ -1,29 +0,0 @@ -fsl_flexcomm.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_flexcomm.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_flexcomm.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_flexcomm.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_flexcomm.xcl deleted file mode 100644 index a2f2db238..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_flexcomm.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_flexcomm.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\fsl_flexcomm.pbi.dep --o -fsl_flexcomm.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_gpio.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_gpio.pbi deleted file mode 100644 index 73291ac62..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_gpio.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_gpio.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_gpio.pbi.dep deleted file mode 100644 index dff2fdf91..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_gpio.pbi.dep +++ /dev/null @@ -1,29 +0,0 @@ -fsl_gpio.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_gpio.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_gpio.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_gpio.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_gpio.xcl deleted file mode 100644 index 767eadfa9..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_gpio.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_gpio.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\fsl_gpio.pbi.dep --o -fsl_gpio.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_pint.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_pint.pbi deleted file mode 100644 index e5d09abab..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_pint.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_pint.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_pint.pbi.dep deleted file mode 100644 index 91361acda..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_pint.pbi.dep +++ /dev/null @@ -1,29 +0,0 @@ -fsl_pint.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_pint.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_pint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_pint.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_pint.xcl deleted file mode 100644 index 293050753..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_pint.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_pint.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\fsl_pint.pbi.dep --o -fsl_pint.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_power.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_power.pbi deleted file mode 100644 index d2b33b386..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_power.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_power.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_power.pbi.dep deleted file mode 100644 index 2214421cb..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_power.pbi.dep +++ /dev/null @@ -1,29 +0,0 @@ -fsl_power.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_power.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_power.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_power.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_power.xcl deleted file mode 100644 index ddcdad400..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_power.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_power.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\fsl_power.pbi.dep --o -fsl_power.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_reset.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_reset.pbi deleted file mode 100644 index 08e86e667..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_reset.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_reset.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_reset.pbi.dep deleted file mode 100644 index f5747d465..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_reset.pbi.dep +++ /dev/null @@ -1,28 +0,0 @@ -fsl_reset.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_reset.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_reset.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_reset.xcl deleted file mode 100644 index e58159bf0..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_reset.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_reset.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\fsl_reset.pbi.dep --o -fsl_reset.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_str.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_str.pbi deleted file mode 100644 index 0e8ff36be..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_str.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_str.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_str.pbi.dep deleted file mode 100644 index 778f84d41..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_str.pbi.dep +++ /dev/null @@ -1,34 +0,0 @@ -fsl_str.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities\fsl_str.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\math.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_float_setup.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdarg.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities/fsl_str.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities/fsl_debug_console_conf.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_str.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_str.xcl deleted file mode 100644 index 4f472c1bf..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_str.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities\fsl_str.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\fsl_str.pbi.dep --o -fsl_str.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_usart.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_usart.pbi deleted file mode 100644 index 120625f44..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_usart.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_usart.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_usart.pbi.dep deleted file mode 100644 index be8a4ee57..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_usart.pbi.dep +++ /dev/null @@ -1,30 +0,0 @@ -fsl_usart.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_usart.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_usart.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_flexcomm.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_usart.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_usart.xcl deleted file mode 100644 index c59e830c8..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/fsl_usart.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_usart.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\fsl_usart.pbi.dep --o -fsl_usart.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/generic_list.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/generic_list.pbi deleted file mode 100644 index 1651d2a5d..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/generic_list.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/generic_list.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/generic_list.pbi.dep deleted file mode 100644 index 89ca351f3..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/generic_list.pbi.dep +++ /dev/null @@ -1,30 +0,0 @@ -generic_list.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists\generic_list.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists/generic_list.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/generic_list.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/generic_list.xcl deleted file mode 100644 index b15f1fc2a..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/generic_list.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists\generic_list.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\generic_list.pbi.dep --o -generic_list.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/heap_5.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/heap_5.pbi deleted file mode 100644 index 862c0a6b8..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/heap_5.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/heap_5.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/heap_5.pbi.dep deleted file mode 100644 index e45737c91..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/heap_5.pbi.dep +++ /dev/null @@ -1,21 +0,0 @@ -heap_5.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\MemMang\heap_5.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/heap_5.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/heap_5.xcl deleted file mode 100644 index 6bb9c379a..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/heap_5.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\MemMang\heap_5.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\heap_5.pbi.dep --o -heap_5.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\MemMang --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/list.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/list.pbi deleted file mode 100644 index 167328819..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/list.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/list.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/list.pbi.dep deleted file mode 100644 index 522ee3eae..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/list.pbi.dep +++ /dev/null @@ -1,19 +0,0 @@ -list.pbi: C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\list.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\list.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/list.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/list.xcl deleted file mode 100644 index 2149dfd4a..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/list.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\list.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\list.pbi.dep --o -list.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main.pbi deleted file mode 100644 index 73f3a3151..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main.pbi.dep deleted file mode 100644 index 26f2a956f..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main.pbi.dep +++ /dev/null @@ -1,50 +0,0 @@ -main.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app\main.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdio.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards\board.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards/clock_config.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_gpio.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards\peripherals.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards\pin_mux.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards\clock_config.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities\fsl_debug_console.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager\serial_manager.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager/serial_port_uart.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific\compiler_attributes.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main.xcl deleted file mode 100644 index 073cba8b0..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app\main.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\main.pbi.dep --o -main.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_blinky.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_blinky.pbi deleted file mode 100644 index 7d1af8e97..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_blinky.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_blinky.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_blinky.pbi.dep deleted file mode 100644 index 569aa6cb6..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_blinky.pbi.dep +++ /dev/null @@ -1,21 +0,0 @@ -main_blinky.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app\main_blinky.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\queue.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/task.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_blinky.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_blinky.xcl deleted file mode 100644 index 7d03dee12..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_blinky.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app\main_blinky.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\main_blinky.pbi.dep --o -main_blinky.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_full.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_full.pbi deleted file mode 100644 index 24bcdc948..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_full.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_full.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_full.pbi.dep deleted file mode 100644 index 3a360f638..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_full.pbi.dep +++ /dev/null @@ -1,26 +0,0 @@ -main_full.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app\main_full.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\queue.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\timers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include\blocktim.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include\countsem.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include\recmutex.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include\IntQueue.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_full.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_full.xcl deleted file mode 100644 index efb8d3823..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/main_full.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app\main_full.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\main_full.pbi.dep --o -main_full.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/peripherals.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/peripherals.pbi deleted file mode 100644 index eca3b8e9b..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/peripherals.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/peripherals.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/peripherals.pbi.dep deleted file mode 100644 index ac39ca570..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/peripherals.pbi.dep +++ /dev/null @@ -1,3 +0,0 @@ -peripherals.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards\peripherals.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards/peripherals.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/peripherals.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/peripherals.xcl deleted file mode 100644 index af1b4cd76..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/peripherals.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards\peripherals.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\peripherals.pbi.dep --o -peripherals.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/pin_mux.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/pin_mux.pbi deleted file mode 100644 index 11e3943d0..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/pin_mux.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/pin_mux.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/pin_mux.pbi.dep deleted file mode 100644 index 71305887a..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/pin_mux.pbi.dep +++ /dev/null @@ -1,30 +0,0 @@ -pin_mux.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards\pin_mux.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards/pin_mux.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/pin_mux.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/pin_mux.xcl deleted file mode 100644 index 73a5a76c7..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/pin_mux.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards\pin_mux.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\pin_mux.pbi.dep --o -pin_mux.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/port.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/port.pbi deleted file mode 100644 index 2382a7b9a..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/port.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/port.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/port.pbi.dep deleted file mode 100644 index 6156758d0..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/port.pbi.dep +++ /dev/null @@ -1,22 +0,0 @@ -port.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0\port.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\intrinsics.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iar_intrinsics_common.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/port.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/port.xcl deleted file mode 100644 index 2dcddc3bb..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/port.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0\port.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\port.pbi.dep --o -port.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/queue.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/queue.pbi deleted file mode 100644 index 8669d99ac..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/queue.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/queue.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/queue.pbi.dep deleted file mode 100644 index 06e17af66..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/queue.pbi.dep +++ /dev/null @@ -1,24 +0,0 @@ -queue.pbi: C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\queue.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\queue.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/task.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/queue.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/queue.xcl deleted file mode 100644 index de61a2ec5..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/queue.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\queue.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\queue.pbi.dep --o -queue.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/recmutex.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/recmutex.pbi deleted file mode 100644 index 56ec77f63..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/recmutex.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/recmutex.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/recmutex.pbi.dep deleted file mode 100644 index ae38d3a0e..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/recmutex.pbi.dep +++ /dev/null @@ -1,23 +0,0 @@ -recmutex.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\Minimal\recmutex.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\semphr.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/queue.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include\recmutex.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/recmutex.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/recmutex.xcl deleted file mode 100644 index 84fb083d2..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/recmutex.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\Minimal\recmutex.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\recmutex.pbi.dep --o -recmutex.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\Minimal --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_manager.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_manager.pbi deleted file mode 100644 index f0f6ecb79..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_manager.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_manager.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_manager.pbi.dep deleted file mode 100644 index 58471ae71..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_manager.pbi.dep +++ /dev/null @@ -1,32 +0,0 @@ -serial_manager.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager\serial_manager.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager/serial_manager.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager/serial_port_uart.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager/serial_port_internal.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_manager.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_manager.xcl deleted file mode 100644 index a25523b84..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_manager.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager\serial_manager.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\serial_manager.pbi.dep --o -serial_manager.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_port_uart.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_port_uart.pbi deleted file mode 100644 index 8e4d498b5..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_port_uart.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_port_uart.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_port_uart.pbi.dep deleted file mode 100644 index 1abec7f9b..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_port_uart.pbi.dep +++ /dev/null @@ -1,33 +0,0 @@ -serial_port_uart.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager\serial_port_uart.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager/serial_manager.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager/serial_port_uart.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager/serial_port_internal.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart\uart.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_port_uart.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_port_uart.xcl deleted file mode 100644 index 4f800175c..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/serial_port_uart.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager\serial_port_uart.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\serial_port_uart.pbi.dep --o -serial_port_uart.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/stream_buffer.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/stream_buffer.pbi deleted file mode 100644 index 71ab9f8db..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/stream_buffer.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/stream_buffer.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/stream_buffer.pbi.dep deleted file mode 100644 index d390ae319..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/stream_buffer.pbi.dep +++ /dev/null @@ -1,22 +0,0 @@ -stream_buffer.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\stream_buffer.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\stream_buffer.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/stream_buffer.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/stream_buffer.xcl deleted file mode 100644 index 2fd44543c..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/stream_buffer.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\stream_buffer.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\stream_buffer.pbi.dep --o -stream_buffer.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/system_LPC51U68.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/system_LPC51U68.pbi deleted file mode 100644 index 49cf7707e..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/system_LPC51U68.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/system_LPC51U68.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/system_LPC51U68.pbi.dep deleted file mode 100644 index bdc92bfa5..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/system_LPC51U68.pbi.dep +++ /dev/null @@ -1,17 +0,0 @@ -system_LPC51U68.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device\system_LPC51U68.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device/fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/system_LPC51U68.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/system_LPC51U68.xcl deleted file mode 100644 index 1f18378df..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/system_LPC51U68.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device\system_LPC51U68.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\system_LPC51U68.pbi.dep --o -system_LPC51U68.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/tasks.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/tasks.pbi deleted file mode 100644 index 5c1702989..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/tasks.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/tasks.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/tasks.pbi.dep deleted file mode 100644 index 51a89f02e..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/tasks.pbi.dep +++ /dev/null @@ -1,25 +0,0 @@ -tasks.pbi: C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\tasks.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\timers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\stack_macros.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/tasks.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/tasks.xcl deleted file mode 100644 index 047cee632..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/tasks.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\tasks.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\tasks.pbi.dep --o -tasks.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/timers.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/timers.pbi deleted file mode 100644 index a528b3875..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/timers.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/timers.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/timers.pbi.dep deleted file mode 100644 index c4af2c844..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/timers.pbi.dep +++ /dev/null @@ -1,23 +0,0 @@ -timers.pbi: C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\timers.c \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\FreeRTOS.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app\FreeRTOSConfig.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/projdefs.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/portable.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/deprecated_definitions.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0\portmacro.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/mpu_wrappers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/list.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\queue.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include/task.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include\timers.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/timers.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/timers.xcl deleted file mode 100644 index 3c0171418..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/timers.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\timers.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\timers.pbi.dep --o -timers.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/usart_adapter.pbi b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/usart_adapter.pbi deleted file mode 100644 index 2eed572b5..000000000 Binary files a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/usart_adapter.pbi and /dev/null differ diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/usart_adapter.pbi.dep b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/usart_adapter.pbi.dep deleted file mode 100644 index 9c9177399..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/usart_adapter.pbi.dep +++ /dev/null @@ -1,32 +0,0 @@ -usart_adapter.pbi: \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart\usart_adapter.c \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_common.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\assert.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ycheck.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\yvals.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Defaults.h \ - C:\\Program\ Files\ (x86)\\IAR\ Systems\\Embedded\ Workbench\ 8.3\\arm\\inc\\c\\DLib_Config_Normal.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdbool.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdint.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\ysizet.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_string.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\DLib_Product_stdlib.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\stddef.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device\fsl_device_registers.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\core_cm0plus.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_version.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS/cmsis_compiler.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS\cmsis_iccarm.h \ - C:\Program\ Files\ (x86)\IAR\ Systems\Embedded\ Workbench\ 8.3\arm\inc\c\iccarm_builtin.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/system_LPC51U68.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device/LPC51U68_features.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_clock.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_common.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers/fsl_reset.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_usart.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers\fsl_flexcomm.h \ - C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart/uart.h diff --git a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/usart_adapter.xcl b/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/usart_adapter.xcl deleted file mode 100644 index c0913149a..000000000 --- a/FreeRTOS/Demo/CORTEX_M0+_LPC51U68_LPCXpresso/Debug_IAR/Obj/usart_adapter.xcl +++ /dev/null @@ -1,363 +0,0 @@ -"C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart\usart_adapter.c" --std=c11 --ferror-limit=0 --fbracket-depth=512 --MD --MF -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\Debug_IAR\Obj\usart_adapter.pbi.dep --o -usart_adapter.pbi --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\..\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\..\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc --I -C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.3\arm\inc\c --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Source\portable\IAR\ARM_CM0 --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\Common\include --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\app --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\board\boards --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\CMSIS --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\lists --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\serial_manager --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\component\uart --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\device --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\drivers --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\IAR_specific --I -C:\Users\yuhzheng\Documents\FreeRTOS\FreeRTOS\Demo\CORTEX_M0+_LPC51U68_LPCXpresso\utilities --D__CHAR_BITS__=8 --D__CHAR_MAX__=0xff --D__CHAR_MIN__=0 --D__CHAR_SIZE__=1 --D__UNSIGNED_CHAR_MAX__=0xff --D__SIGNED_CHAR_MAX__=127 --D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) --D__CHAR_ALIGN__=1 --D__SHORT_SIZE__=2 --D__UNSIGNED_SHORT_MAX__=0xffff --D__SIGNED_SHORT_MAX__=32767 --D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) --D__SHORT_ALIGN__=2 --D__INT_SIZE__=4 --D__UNSIGNED_INT_MAX__=0xffffffffU --D__SIGNED_INT_MAX__=2147483647 --D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) --D__INT_ALIGN__=4 --D__LONG_SIZE__=4 --D__UNSIGNED_LONG_MAX__=0xffffffffUL --D__SIGNED_LONG_MAX__=2147483647L --D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) --D__LONG_ALIGN__=4 --D__LONG_LONG_SIZE__=8 --D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL --D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL --D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) --D__LONG_LONG_ALIGN__=8 --D__INT8_T_TYPE__=signed char --D__INT8_T_MAX__=127 --D__INT8_T_MIN__=(-__INT8_T_MAX__-1) --D__UINT8_T_TYPE__=unsigned char --D__UINT8_T_MAX__=0xff --D__INT8_SIZE_PREFIX__="hh" --D__INT16_T_TYPE__=signed short int --D__INT16_T_MAX__=32767 --D__INT16_T_MIN__=(-__INT16_T_MAX__-1) --D__UINT16_T_TYPE__=unsigned short int --D__UINT16_T_MAX__=0xffff --D__INT16_SIZE_PREFIX__="h" --D__INT32_T_TYPE__=signed int --D__INT32_T_MAX__=2147483647 --D__INT32_T_MIN__=(-__INT32_T_MAX__-1) --D__UINT32_T_TYPE__=unsigned int --D__UINT32_T_MAX__=0xffffffffU --D__INT32_SIZE_PREFIX__="" --D__INT64_T_TYPE__=signed long long int --D__INT64_T_MAX__=9223372036854775807LL --D__INT64_T_MIN__=(-__INT64_T_MAX__-1) --D__UINT64_T_TYPE__=unsigned long long int --D__UINT64_T_MAX__=0xffffffffffffffffULL --D__INT64_SIZE_PREFIX__="ll" --D__INT_LEAST8_T_TYPE__=signed char --D__INT_LEAST8_T_MAX__=127 --D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) --D__UINT_LEAST8_T_TYPE__=unsigned char --D__UINT_LEAST8_T_MAX__=0xff --D__INT8_C_SUFFIX__= --D__UINT8_C_SUFFIX__= --D__INT_LEAST8_SIZE_PREFIX__="hh" --D__INT_LEAST16_T_TYPE__=signed short int --D__INT_LEAST16_T_MAX__=32767 --D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) --D__UINT_LEAST16_T_TYPE__=unsigned short int --D__UINT_LEAST16_T_MAX__=0xffff --D__INT16_C_SUFFIX__= --D__UINT16_C_SUFFIX__= --D__INT_LEAST16_SIZE_PREFIX__="h" --D__INT_LEAST32_T_TYPE__=signed int --D__INT_LEAST32_T_MAX__=2147483647 --D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) --D__UINT_LEAST32_T_TYPE__=unsigned int --D__UINT_LEAST32_T_MAX__=0xffffffffU --D__INT32_C_SUFFIX__= --D__UINT32_C_SUFFIX__=U --D__INT_LEAST32_SIZE_PREFIX__="" --D__INT_LEAST64_T_TYPE__=signed long long int --D__INT_LEAST64_T_MAX__=9223372036854775807LL --D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) --D__UINT_LEAST64_T_TYPE__=unsigned long long int --D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL --D__INT64_C_SUFFIX__=LL --D__UINT64_C_SUFFIX__=ULL --D__INT_LEAST64_SIZE_PREFIX__="ll" --D__INT_FAST8_T_TYPE__=signed int --D__INT_FAST8_T_MAX__=2147483647 --D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) --D__UINT_FAST8_T_TYPE__=unsigned int --D__UINT_FAST8_T_MAX__=0xffffffffU --D__INT_FAST8_SIZE_PREFIX__="" --D__INT_FAST16_T_TYPE__=signed int --D__INT_FAST16_T_MAX__=2147483647 --D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) --D__UINT_FAST16_T_TYPE__=unsigned int --D__UINT_FAST16_T_MAX__=0xffffffffU --D__INT_FAST16_SIZE_PREFIX__="" --D__INT_FAST32_T_TYPE__=signed int --D__INT_FAST32_T_MAX__=2147483647 --D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) --D__UINT_FAST32_T_TYPE__=unsigned int --D__UINT_FAST32_T_MAX__=0xffffffffU --D__INT_FAST32_SIZE_PREFIX__="" --D__INT_FAST64_T_TYPE__=signed long long int --D__INT_FAST64_T_MAX__=9223372036854775807LL --D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) --D__UINT_FAST64_T_TYPE__=unsigned long long int --D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL --D__INT_FAST64_SIZE_PREFIX__="ll" --D__INTMAX_T_TYPE__=signed long long int --D__INTMAX_T_MAX__=9223372036854775807LL --D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) --D__UINTMAX_T_TYPE__=unsigned long long int --D__UINTMAX_T_MAX__=0xffffffffffffffffULL --D__INTMAX_C_SUFFIX__=LL --D__UINTMAX_C_SUFFIX__=ULL --D__INTMAX_SIZE_PREFIX__="ll" --D__FLOAT_SIZE__=4 --D__FLOAT_ALIGN__=4 --D__DOUBLE_SIZE__=8 --D__DOUBLE_ALIGN__=8 --D__LONG_DOUBLE_SIZE__=8 --D__LONG_DOUBLE_ALIGN__=8 --D____FP16_SIZE__=2 --D____FP16_ALIGN__=2 --D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 --D__SUBNORMAL_FLOATING_POINTS__=0 --D__SIZE_T_TYPE__=unsigned int --D__SIZE_T_MAX__=0xffffffffU --D__PTRDIFF_T_TYPE__=signed int --D__PTRDIFF_T_MAX__=2147483647 --D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) --D__INTPTR_T_TYPE__=signed int --D__INTPTR_T_MAX__=2147483647 --D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) --D__UINTPTR_T_TYPE__=unsigned int --D__UINTPTR_T_MAX__=0xffffffffU --D__INTPTR_SIZE_PREFIX__="" --D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int --D__JMP_BUF_NUM_ELEMENTS__=8 --D__TID__=0xcf70 --D__VER__=8040002 --D__BUILD_NUMBER__=214 --D__IAR_SYSTEMS_ICC__=9 --D_MAX_ALIGNMENT=8 --D__LITTLE_ENDIAN__=1 --D__BOOL_TYPE__=unsigned char --D__BOOL_SIZE__=1 --D__WCHAR_T_TYPE__=unsigned int --D__WCHAR_T_SIZE__=4 --D__WCHAR_T_MAX__=0xffffffffU --D__DEF_PTR_MEM__=__data --D__DEF_PTR_SIZE__=4 --D__DATA_MEM0__=__data --D__DATA_MEM0_POINTER_OK__=1 --D__DATA_MEM0_UNIQUE_POINTER__=1 --D__DATA_MEM0_VAR_OK__=1 --D__DATA_MEM0_INTPTR_TYPE__=int --D__DATA_MEM0_UINTPTR_TYPE__=unsigned int --D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" --D__DATA_MEM0_MAX_SIZE__=0x7fffffffU --D_RSIZE_MAX=0x7fffffffU --D__DATA_MEM0_HEAP_SEGMENT__="HEAP" --D__DATA_MEM0_PAGE_SIZE__=0 --D__DATA_MEM0_HEAP__=0 --D__CODE_MEM0__=__code --D__CODE_MEM0_POINTER_OK__=1 --D__CODE_MEM0_UNIQUE_POINTER__=1 --D__HEAP_MEM0__=0 --D__HEAP_DEFAULT_MEM__=0 --D__HEAPND_MEMORY_LIST1__()= --D__MULTIPLE_HEAPS__=0 --D__DEF_HEAP_MEM__=__data --D__DEF_STACK_MEM_INDEX__=0 --D__PRAGMA_PACK_ON__=1 --D__MULTIPLE_INHERITANCE__=1 --D__AAPCS__=1 --D__ARM4TM__=4 --D__ARM5TM__=5 --D__ARM5T__=5 --D__ARM5__=5 --D__ARM6M__=11 --D__ARM6SM__=12 --D__ARM6__=6 --D__ARM_32BIT_STATE=1 --D__ARM_ACLE=201 --D__ARM_ALIGN_MAX_PWR=8 --D__ARM_ALIGN_MAX_STACK_PWR=3 --D__ARM_ARCH=6 --D__ARM_ARCH_ISA_THUMB=1 --D__ARM_ARCH_PROFILE='M' --D__ARM_FEATURE_COPROC=0 --D__ARM_FP16_ARGS=1 --D__ARM_FP16_FORMAT_IEEE=1 --D__ARM_PCS=1 --D__ARM_PROFILE_M__=1 --D__ARM_SIZE_MINIMAL_ENUM=1 --D__ARM_SIZE_WCHAR_T=4 --D__CODE_SIZE_LIMIT=0 --D__CORE__=__ARM6M__ --D__CPU_MODE__=1 --D__ICCARM_INTRINSICS_VERSION__=2 --D__ICCARM__=1 --D__INTERWORKING__=1 --D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 --D__HAS_WEAK__=1 --D__HAS_PACKED__=1 --D__HAS_JOINED_TYPES__=1 --D__HAS_LOCATED_DECLARATION__=1 --D__HAS_LOCATED_WITH_INIT__=1 --D__IAR_COMPILERBASE__=656646 --D__IAR_COMPILERBASE_STR__=10.5.6.1181 --D__UNICODE_SOURCE_SUPPORTED__=1 --D__VTABLE_MEM__= --D__PRAGMA_REDEFINE_EXTNAME=1 --D__STDC__=1 --D__STDC_VERSION__=201710L --D__STDC_NO_VLA__=1 --D__STDC_NO_ATOMICS__=1 --D__STDC_UTF_16__=1 --D__STDC_UTF_32__=1 --D__STDC_LIB_EXT1__=201112L --D__STDC_NO_THREADS__=1 --D__STDC_ISO_10646__=201103L --D__STDC_HOSTED__=1 --D__EDG_IA64_ABI=1 --D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 --D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 --D__cpp_hex_float=201603L --D__cpp_unicode_literals=200710L --D__cpp_static_assert=200410L --D__EDG__=1 --D__EDG_VERSION__=500 --D__EDG_SIZE_TYPE__=unsigned int --D__EDG_PTRDIFF_TYPE__=int --D__EDG_DELTA_TYPE=int --D__EDG_IA64_VTABLE_ENTRY_TYPE=int --D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short --D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 --D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 --D__EDG_ABI_COMPATIBILITY_VERSION=9999 --D__EDG_ABI_CHANGES_FOR_RTTI=1 --D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 --D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 --D__EDG_BSD=0 --D__EDG_SYSV=0 --D__EDG_ANSIC=1 --D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 --D__EDG_FLOAT80_ENABLING_POSSIBLE=0 --D__EDG_FLOAT128_ENABLING_POSSIBLE=0 --D__EDG_INT128_EXTENSIONS_ALLOWED=0 --DDEBUG=1 --DCPU_LPC51U68JBD64=1 --D_DLIB_CONFIG_FILE_HEADER_NAME="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D_DLIB_CONFIG_FILE_STRING="C:\\Program Files (x86)\\IAR Systems\\Embedded Workbench 8.3\\arm\\inc\\c\\DLib_Config_Normal.h" --D__VERSION__="IAR ANSI C/C++ Compiler V8.40.2.214/W32 for ARM" --D_VA_DEFINED= --D_VA_LIST=struct __va_list --D__ICCARM_OLD_DEFINED_VAARGS__=1 --D__VA_STACK_ALIGN__=8 --D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) --D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) --D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) --D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) --D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) --D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) --D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) --D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) --D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) --D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) --D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) --D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) --D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) --D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) --D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) --D__TOPM_DATA_MEMORY_LIST1__()= --D__TOPM_DATA_MEMORY_LIST2__(_P1)= --D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= --D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) --D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) --D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) --D__DATA_MEM0_SIZE_TYPE__=unsigned int --D__DATA_MEM0_INDEX_TYPE__=signed int --D__iar_fp2bits32(x)=0 --D__iar_fp2bits64(x)=0 --D__iar_fpgethi64(x)=0 --D__iar_atomic_add_fetch(x,y,z)=0 --D__iar_atomic_sub_fetch(x,y,z)=0 --D__iar_atomic_load(x,y)=0ULL --D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0